Installing iso images from CD

Very green user to Solaris, I use Linux. I've heard so much about Solaris that I wanted to try it. I burned the iso images to CD. Must I boot from CD to install or do something else?
This is Solaris 10 on the x86 platform.
Please reply to [email protected]
Thanks very much,

I upgraded my CD buring software today. Now I am allowed to burn ISO images. I did not get the option to burn ISO images before I upgraded the software.
I just burned one, will try the rest in the AM.
Thanks for the response,

Similar Messages

  • ArchDL -- Download Latest Arch Linux ISO Image from Mirror

    Hey guys, here is my ArchISO script. To download latest version of iso image from a mirror. I will add more countries/mirros ones I have time. Right now there is only "United States" mirrors. Enjoy.
    EDIT: Alright scrip now know as "ArchDL", and you can find it at
    https://github.com/GoTux/Bash/blob/master/archdl.sh
    Last edited by TuxLyn (2012-11-08 19:42:32)

    TuxLyn wrote:@Pranavg1890, I'll see what I can do. Also, I've created wiki pages at github for all the scripts I released.
    Really? This script is to download the iso, right? so, maybe I'm wrong, but I think downloading the iso and install it to an usb has nothing to do.
    Or are you going to create another script to do that?
    Anyway, about the downloading script.
    What if it parsed the download page, to get all links listed there? With something like:
    curl -s 'https://www.archlinux.org/download/' |sed -n '/id="download-mirrors"/,/\/div/ {/href/ s/.*href="\([^"]*\).*/\1/p; /h5/ s/.*<h5.*> \([^<]*\).*/\1/p}'
    You could get the list of links.
    Also, check this: http://grulos.blogspot.mx/2007/10/find- … irror.html
    Is an script to find the fastest mirror from a list of urls.
    To be really useful the script, it would be better if it autoselected the fastest mirror for you, instead of waiting for you to tell it which mirror to use.
    So, what you think?

  • My mac book air can't start installation, because i use windows installation in DOS to make partion, now no mac os on it. How to get back the mac os? i have a window based iso image from a friend, because in my country there is no Apple service.

    my mac book air can't start installation, because i use windows installation in DOS to make partion, now no mac os on it. How to get back the mac os? i have a window based iso image from a friend, because in my country there is no Apple service.

    It sounds like you destroyed your boot partition and the recovery partition.  Depending on it's age, your MacBook Air might be able to do a net boot.  Plug and ethernet connection into it and attempt to boot.  If it has the right firmware, it will find a net boot configuration on the net and boot that.  Then it will give you a Recovery Partition like display and allow you to reinstall the OS X version that came with it.... assuming that it was Lion or ML.  If your computer came with Snow Leopard, then even the net boot won't work. 
    At that point you need a bootable USB Key, or an external DVD drive AND a Snow Leopard installation DVD. 
    An Apple Store, if there is one nearby, MAY be able to get you going again.  However, whatever is on the SSD now will be toast too.

  • Burn .iso image from CD or DVD

    Hi,
    How do I create an .iso file from a CD or DVD in Mac OS X?
    Thanks for your help.

    http://www.slashdotdash.net/articles/2006/08/14/create-iso-cd-dvd-image-with-mac -os-x-tiger-10-4
    Or use Toast from Roxio.

  • How to install dmd image from external hard drive to imac with no os installed

    I have a G5 iMac that the hard drive crashed.  I have replaced the hard drive and now trying to install the 10.5.8 dmd image back from a external hard drive since I don't have a disk.  I have not been able to figure how to boot up and install this way.

    Neither do I.
    Restore Tiger 10.4 & Leopard 10.5  DVDs are available from Apple by calling 800-767-2775 as of January 20, 2013.
    https://discussions.apple.com/thread/4720126?tstart=0

  • [Solved] how do i build my ISO image with archiso?

    hi all
    i've been following this wiki and it's been going really well (it hasn't gone wrong...). but the wiki page just sort of stops halfway through the configuration bit
    a google search brought me to this page which suggests using the "build.sh" script located in my chroot environment's /tmp/releng/ directory.
    running this script returns the error "build.sh: line 207: syntax error near unexpected token '('
    line 207 of the file reads:
    paste -d"\n" <(sed "s|%ARCH%|i686|g" ${script_path}/aitab.${_iso_type}) \
    i don't really know much about scripts so i can't see what's wrong
    any advice?
    sorry if i've missed a wiki or something n00bish like that. also i'm aware that someone who doesn't know what they're doing shouldn't be attempting archiso but i thought it would be a fun learning experience
    here's the full build.sh in case it is helpful:
    #!/bin/bash
    set -e -u
    iso_name=archlinux
    iso_label="ARCH_$(date +%Y%m)"
    iso_version=$(date +%Y.%m.%d)
    install_dir=arch
    arch=$(uname -m)
    work_dir=work
    out_dir=out
    verbose=""
    script_path=$(readlink -f ${0%/*})
    # Base installation (root-image)
    make_basefs() {
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -p "base" create
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -p "memtest86+ syslinux mkinitcpio-nfs-utils nbd curl" create
    # Additional packages (root-image)
    make_packages() {
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -p "$(grep -v ^# ${script_path}/packages.${arch})" create
    # Copy mkinitcpio archiso hooks (root-image)
    make_setup_mkinitcpio() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    local _hook
    for _hook in archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_loop_mnt; do
    cp /lib/initcpio/hooks/${_hook} ${work_dir}/root-image/lib/initcpio/hooks
    cp /lib/initcpio/install/${_hook} ${work_dir}/root-image/lib/initcpio/install
    done
    cp /lib/initcpio/install/archiso_kms ${work_dir}/root-image/lib/initcpio/install
    cp /lib/initcpio/archiso_shutdown ${work_dir}/root-image/lib/initcpio
    cp /lib/initcpio/archiso_pxe_nbd ${work_dir}/root-image/lib/initcpio
    cp ${script_path}/mkinitcpio.conf ${work_dir}/root-image/etc/mkinitcpio-archiso.conf
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Prepare ${install_dir}/boot/
    make_boot() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    local _src=${work_dir}/root-image
    local _dst_boot=${work_dir}/iso/${install_dir}/boot
    mkdir -p ${_dst_boot}/${arch}
    mkarchroot -n -r "mkinitcpio -c /etc/mkinitcpio-archiso.conf -k /boot/vmlinuz-linux -g /boot/archiso.img" ${_src}
    mv ${_src}/boot/archiso.img ${_dst_boot}/${arch}/archiso.img
    mv ${_src}/boot/vmlinuz-linux ${_dst_boot}/${arch}/vmlinuz
    cp ${_src}/boot/memtest86+/memtest.bin ${_dst_boot}/memtest
    cp ${_src}/usr/share/licenses/common/GPL2/license.txt ${_dst_boot}/memtest.COPYING
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Prepare /${install_dir}/boot/syslinux
    make_syslinux() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    local _src_syslinux=${work_dir}/root-image/usr/lib/syslinux
    local _dst_syslinux=${work_dir}/iso/${install_dir}/boot/syslinux
    mkdir -p ${_dst_syslinux}
    for _cfg in ${script_path}/syslinux/*.cfg; do
    sed "s|%ARCHISO_LABEL%|${iso_label}|g;
    s|%INSTALL_DIR%|${install_dir}|g;
    s|%ARCH%|${arch}|g" ${_cfg} > ${_dst_syslinux}/${_cfg##*/}
    done
    cp ${script_path}/syslinux/splash.png ${_dst_syslinux}
    cp ${_src_syslinux}/*.c32 ${_dst_syslinux}
    cp ${_src_syslinux}/*.com ${_dst_syslinux}
    cp ${_src_syslinux}/*.0 ${_dst_syslinux}
    cp ${_src_syslinux}/memdisk ${_dst_syslinux}
    mkdir -p ${_dst_syslinux}/hdt
    wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9 > ${_dst_syslinux}/hdt/pciids.gz
    cat ${work_dir}/root-image/lib/modules/*-ARCH/modules.alias | gzip -9 > ${_dst_syslinux}/hdt/modalias.gz
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Prepare /isolinux
    make_isolinux() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    mkdir -p ${work_dir}/iso/isolinux
    sed "s|%INSTALL_DIR%|${install_dir}|g" ${script_path}/isolinux/isolinux.cfg > ${work_dir}/iso/isolinux/isolinux.cfg
    cp ${work_dir}/root-image/usr/lib/syslinux/isolinux.bin ${work_dir}/iso/isolinux/
    cp ${work_dir}/root-image/usr/lib/syslinux/isohdpfx.bin ${work_dir}/iso/isolinux/
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Customize installation (root-image)
    # NOTE: mkarchroot should not be executed after this function is executed, otherwise will overwrites some custom files.
    make_customize_root_image() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    cp -af ${script_path}/root-image ${work_dir}
    chmod 750 ${work_dir}/root-image/etc/sudoers.d
    chmod 440 ${work_dir}/root-image/etc/sudoers.d/g_wheel
    mkdir -p ${work_dir}/root-image/etc/pacman.d
    wget -O ${work_dir}/root-image/etc/pacman.d/mirrorlist http://www.archlinux.org/mirrorlist/all/
    sed -i "s/#Server/Server/g" ${work_dir}/root-image/etc/pacman.d/mirrorlist
    chroot ${work_dir}/root-image /usr/sbin/locale-gen
    chroot ${work_dir}/root-image /usr/sbin/useradd -m -p "" -g users -G "audio,disk,optical,wheel" arch
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Split out /lib/modules from root-image (makes more "dual-iso" friendly)
    make_lib_modules() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    mv ${work_dir}/root-image/lib/modules ${work_dir}/lib-modules
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Split out /usr/share from root-image (makes more "dual-iso" friendly)
    make_usr_share() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    mv ${work_dir}/root-image/usr/share ${work_dir}/usr-share
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Make [core] repository, keep "any" pkgs in a separate fs (makes more "dual-iso" friendly)
    make_core_repo() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
    local _url _urls _pkg_name _cached_pkg _dst _pkgs
    mkdir -p ${work_dir}/repo-core-any
    mkdir -p ${work_dir}/repo-core-${arch}
    pacman -Sy
    _pkgs=$(comm -2 -3 <(pacman -Sql core | sort | sed 's@^@core/@') \
    <(grep -v ^# ${script_path}/core.exclude.${arch} | sort | sed 's@^@core/@'))
    _urls=$(pacman -Sddp ${_pkgs})
    pacman -Swdd --noprogressbar --noconfirm ${_pkgs}
    for _url in ${_urls}; do
    _pkg_name=${_url##*/}
    _cached_pkg=/var/cache/pacman/pkg/${_pkg_name}
    _dst=${work_dir}/repo-core-${arch}/${_pkg_name}
    cp ${_cached_pkg} ${_dst}
    repo-add -q ${work_dir}/repo-core-${arch}/core.db.tar.gz ${_dst}
    if [[ ${_pkg_name} == *any.pkg.tar* ]]; then
    mv ${_dst} ${work_dir}/repo-core-any/${_pkg_name}
    ln -sf ../any/${_pkg_name} ${_dst}
    fi
    done
    : > ${work_dir}/build.${FUNCNAME}
    fi
    # Process aitab
    # args: $1 (core | netinstall)
    make_aitab() {
    local _iso_type=${1}
    if [[ ! -e ${work_dir}/build.${FUNCNAME}_${_iso_type} ]]; then
    sed "s|%ARCH%|${arch}|g" ${script_path}/aitab.${_iso_type} > ${work_dir}/iso/${install_dir}/aitab
    : > ${work_dir}/build.${FUNCNAME}_${_iso_type}
    fi
    # Build all filesystem images specified in aitab (.fs .fs.sfs .sfs)
    make_prepare() {
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" prepare
    # Build ISO
    # args: $1 (core | netinstall)
    make_iso() {
    local _iso_type=${1}
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" checksum
    mkarchiso ${verbose} -w "${work_dir}" -D "${install_dir}" -L "${iso_label}" -o "${out_dir}" iso "${iso_name}-${iso_version}-${_iso_type}-${arch}.iso"
    # Build dual-iso images from ${work_dir}/i686/iso and ${work_dir}/x86_64/iso
    # args: $1 (core | netinstall)
    make_dual() {
    local _iso_type=${1}
    if [[ ! -e ${work_dir}/dual/build.${FUNCNAME}_${_iso_type} ]]; then
    if [[ ! -d ${work_dir}/i686/iso || ! -d ${work_dir}/x86_64/iso ]]; then
    echo "ERROR: i686 or x86_64 builds does not exist."
    _usage 1
    fi
    local _src_one _src_two _cfg
    if [[ ${arch} == "i686" ]]; then
    _src_one=${work_dir}/i686/iso
    _src_two=${work_dir}/x86_64/iso
    else
    _src_one=${work_dir}/x86_64/iso
    _src_two=${work_dir}/i686/iso
    fi
    mkdir -p ${work_dir}/dual/iso
    cp -a -l -f ${_src_one} ${work_dir}/dual
    cp -a -l -n ${_src_two} ${work_dir}/dual
    rm -f ${work_dir}/dual/iso/${install_dir}/aitab
    rm -f ${work_dir}/dual/iso/${install_dir}/boot/syslinux/*.cfg
    if [[ ${_iso_type} == "core" ]]; then
    if [[ ! -e ${work_dir}/dual/iso/${install_dir}/any/repo-core-any.sfs ||
    ! -e ${work_dir}/dual/iso/${install_dir}/i686/repo-core-i686.sfs ||
    ! -e ${work_dir}/dual/iso/${install_dir}/x86_64/repo-core-x86_64.sfs ]]; then
    echo "ERROR: core_iso_single build is not found."
    _usage 1
    fi
    else
    rm -f ${work_dir}/dual/iso/${install_dir}/any/repo-core-any.sfs
    rm -f ${work_dir}/dual/iso/${install_dir}/i686/repo-core-i686.sfs
    rm -f ${work_dir}/dual/iso/${install_dir}/x86_64/repo-core-x86_64.sfs
    fi
    paste -d"\n" <(sed "s|%ARCH%|i686|g" ${script_path}/aitab.${_iso_type}) \
    <(sed "s|%ARCH%|x86_64|g" ${script_path}/aitab.${_iso_type}) | uniq > ${work_dir}/dual/iso/${install_dir}/aitab
    for _cfg in ${script_path}/syslinux.dual/*.cfg; do
    sed "s|%ARCHISO_LABEL%|${iso_label}|g;
    s|%INSTALL_DIR%|${install_dir}|g" ${_cfg} > ${work_dir}/dual/iso/${install_dir}/boot/syslinux/${_cfg##*/}
    done
    mkarchiso ${verbose} -w "${work_dir}/dual" -D "${install_dir}" checksum
    mkarchiso ${verbose} -w "${work_dir}/dual" -D "${install_dir}" -L "${iso_label}" -o "${out_dir}" iso "${iso_name}-${iso_version}-${_iso_type}-dual.iso"
    : > ${work_dir}/dual/build.${FUNCNAME}_${_iso_type}
    fi
    purge_single ()
    if [[ -d ${work_dir} ]]; then
    find ${work_dir} -mindepth 1 -maxdepth 1 \
    ! -path ${work_dir}/iso -prune \
    | xargs rm -rf
    fi
    purge_dual ()
    if [[ -d ${work_dir}/dual ]]; then
    find ${work_dir}/dual -mindepth 1 -maxdepth 1 \
    ! -path ${work_dir}/dual/iso -prune \
    | xargs rm -rf
    fi
    clean_single ()
    rm -rf ${work_dir}
    rm -f ${out_dir}/${iso_name}-${iso_version}-*-${arch}.iso
    clean_dual ()
    rm -rf ${work_dir}/dual
    rm -f ${out_dir}/${iso_name}-${iso_version}-*-dual.iso
    make_common_single() {
    make_basefs
    make_packages
    make_setup_mkinitcpio
    make_boot
    make_syslinux
    make_isolinux
    make_customize_root_image
    make_lib_modules
    make_usr_share
    make_aitab $1
    make_prepare $1
    make_iso $1
    _usage ()
    echo "usage ${0} [options] command <command options>"
    echo
    echo " General options:"
    echo " -N <iso_name> Set an iso filename (prefix)"
    echo " Default: ${iso_name}"
    echo " -V <iso_version> Set an iso version (in filename)"
    echo " Default: ${iso_version}"
    echo " -L <iso_label> Set an iso label (disk label)"
    echo " Default: ${iso_label}"
    echo " -D <install_dir> Set an install_dir (directory inside iso)"
    echo " Default: ${install_dir}"
    echo " -w <work_dir> Set the working directory"
    echo " Default: ${work_dir}"
    echo " -o <out_dir> Set the output directory"
    echo " Default: ${out_dir}"
    echo " -v Enable verbose output"
    echo " -h This help message"
    echo
    echo " Commands:"
    echo " build <mode> <type>"
    echo " Build selected .iso by <mode> and <type>"
    echo " purge <mode>"
    echo " Clean working directory except iso/ directory of build <mode>"
    echo " clean <mode>"
    echo " Clean working directory and .iso file in output directory of build <mode>"
    echo
    echo " Command options:"
    echo " <mode> Valid values 'single' or 'dual'"
    echo " <type> Valid values 'netinstall', 'core' or 'all'"
    exit ${1}
    if [[ ${EUID} -ne 0 ]]; then
    echo "This script must be run as root."
    _usage 1
    fi
    while getopts 'N:V:L:D:w:o:vh' arg; do
    case "${arg}" in
    N) iso_name="${OPTARG}" ;;
    V) iso_version="${OPTARG}" ;;
    L) iso_label="${OPTARG}" ;;
    D) install_dir="${OPTARG}" ;;
    w) work_dir="${OPTARG}" ;;
    o) out_dir="${OPTARG}" ;;
    v) verbose="-v" ;;
    h|?) _usage 0 ;;
    _msg_error "Invalid argument '${arg}'" 0
    _usage 1
    esac
    done
    shift $((OPTIND - 1))
    if [[ $# -lt 1 ]]; then
    echo "No command specified"
    _usage 1
    fi
    command_name="${1}"
    if [[ $# -lt 2 ]]; then
    echo "No command mode specified"
    _usage 1
    fi
    command_mode="${2}"
    if [[ ${command_name} == "build" ]]; then
    if [[ $# -lt 3 ]]; then
    echo "No build type specified"
    _usage 1
    fi
    command_type="${3}"
    fi
    if [[ ${command_mode} == "single" ]]; then
    work_dir=${work_dir}/${arch}
    fi
    case "${command_name}" in
    build)
    case "${command_mode}" in
    single)
    case "${command_type}" in
    netinstall)
    make_common_single netinstall
    core)
    make_core_repo
    make_common_single core
    all)
    make_common_single netinstall
    make_core_repo
    make_common_single core
    echo "Invalid build type '${command_type}'"
    _usage 1
    esac
    dual)
    case "${command_type}" in
    netinstall)
    make_dual netinstall
    core)
    make_dual core
    all)
    make_dual netinstall
    make_dual core
    echo "Invalid build type '${command_type}'"
    _usage 1
    esac
    echo "Invalid build mode '${command_mode}'"
    _usage 1
    esac
    purge)
    case "${command_mode}" in
    single)
    purge_single
    dual)
    purge_dual
    echo "Invalid purge mode '${command_mode}'"
    _usage 1
    esac
    clean)
    case "${command_mode}" in
    single)
    clean_single
    dual)
    clean_dual
    echo "Invalid clean mode '${command_mode}'"
    _usage 1
    esac
    echo "Invalid command name '${command_name}'"
    _usage 1
    esac
    Last edited by gav989 (2012-02-12 10:59:11)

    thanks for that, according to this it should be run like
    /path/to/build.sh build single netinstall
    from inside the chroot
    posting this for my own reference and in case it helps others, will mark as solved
    thanks again for your help
    Last edited by gav989 (2012-02-12 10:58:04)

  • How do I burn CDs of the Solaris 9 ISO Images

    Hello All!
    I have downloaded the Solaris 9 (SPARC) ISO Images, from sun.com. Now the issue is how do I use them, i.e. burn them on a CDR. First I have unzipped the images using WinZIP, and then used the ISO Buster to unpack the image files. But when I do that, I get only a few hundred kilobytes, whereas the ISO image itself are of 637 MBs.

    I don't know if it is help You, because i am in a the same phase as You, but i have had similar problem, whan i used the Windows download software for TAR-s, You must use Sun Download Manager or the other certified SW or download (if it is possible) from machine, where is Solasis installed. SDM is able unzip the image into .iso file. I am afraid, that in .zip files are some sequences of data (bytes or bits) unsupported on Windows, who confuses the programs.

  • How to burn to ISO image in Premiere Elements 12.1 under Windows 8.1 64bit?

    I really struggle - is there no way to burn from PE12.1 to ISO image (under Win 8.1)?

    Motajko
    There is no way to take your Timeline content to an ISO Image in Premiere Elements 12/12.1 on Windows 8.1 64 bit with just Premiere Elements 12/12.1 by itself.
    Premiere Elements 13 is the first to offer a Burn To: option of ISO Image for DVD, AVCHD, and Blu-ray. Which one of those choices are you seeking (or all of them)?
    If you cannot make due with the Burn To: Folder for DVD and AVCHD, then you can get your ISO Image from 12/12.1 in the following round about way....
    Let us do AVCHD ISO Image as the example...
    1. Burn your Premiere Elements 12/12.1 Timeline using Publish+Share/Disc/AVCHD, Burn To: = Folder (4.7 GB).
    2. Take the BDMV Folder from the saved folder into the free ImgBurn program and export is as a ISO file.using the category named
    Create Image File from Files/Folder.
    3. When you need the disc product, you can take that ISO file to disc in ImgBurn using the category named Write Image File To Disc.
    For more information on ISO Image and Premiere Elements, please review the following link's content
    ATR Premiere Elements Troubleshooting: PE12: Disc Image/Phantom Burner & PE
    After you review and consider the above, we can discuss the matter further if needed.
    Thank you.
    ATR
    Downloading and installing the free ImgBurn needs caution since it is known to travel with unwanted carry alongs.

  • Can't burn iso image

    I used to be able to burn an iso image from the context menu by clicking on 'Burn "*" to Disc...', inserting a disc and let it burn. Now when I try to burn an iso image by using the context menu a box pops up saying 'Are you sure you want to burn the contents of "Untitled Disc" to a disc'. If I click yes, it burns the iso image as a file onto the disc.
    Anyone know why?

    When I use disk utility everything works fine. But when I control + click on an iso, cdr, or dmg it puts the iso on the disc as a file. It just started doing this a couple days ago. Its a huge hassle to have to go to disk utility everytime I want to burn a disc

  • Removing a DVD Image from a drive?

    Hello everyone!
    Recently I wanted to wipe my MacBook Pro, and do a clean install of Snow Leopard. However doing so proved difficult, because my DVD drive recently gave out and stopped ejecting disks (Had to open her up and take out the drive completely). Anyways, in order to do a clean install, I had to create an image of my Install DVD On an external hard drive, and wipe the computer in target disk mode from another mac.
    The clean install worked perfectly, although now my external Hard Drive is stuck with the DVD Image of the snow leopard install disk on it. I would just wipe the drive, however it has about 450 GB worth of data on it (When I put the Install DVD image on the drive I chose not to erase the current data) and I would just get another hard drive to back up my data and reformat the drive, but currently I do not have another drive to transfer the files to.
    I would just delete the Snow Leopard install disk files, but everytime I plug in the hard drive, it pops up like an install disk and its quite annoying. In the mean time the hard drive still works perfectly, its just annoying always having to close the "Install OS X Snow Leopard" window each time I plug in the drive. (Note: If I remove the install disk files from the drive, the Hard drive still pops up like an install disk when its plugged in)
    So my question is this, (I know I'm finally getting to my point haha) is there any way I can remove the "Install Disk" image from my hard drive without having to wipe the entire drive? Or am I just going to have to get another hard drive to back up all my data and reformat it? Thanks for your help guys, looking forward to your replies.
    Regards,
    -LS
    Other System Info:
    ~Computer
    Model: MacBook Pro 3,1
    Make: 15" Discrete Model
    Processor: Intel Core 2 Duo (2.2 GHz)
    RAM: 4 GB
    ~External Hard Drive
    Model: Western-Digital My Book
    Size: 500 GB (Capacity); 33 GB (Free)

    Thanks for your reply Neville.
    I am currently able to read and write the files on the drive, and I am able to delete the Mac OS X install files. However even after I do so, whenever I plug in my external hard drive, it always pops up like a mounted .DMG file, instead of popping up like a hard drive.
    Also by default I use the "List" view in the finder. But whenever I access the drive, it shows the files in "Icon" view since I added the Mac OS X install disk image to the drive =(.

  • IMac (27-inch, Mid 2011) 2.7 GHz Intel Core i5 4 GB 1333 MHz DDR3 running10.10.2 (14C1514). Trying to install Windows 7 64 bit from an install disc. When attempting to create an ISO image I can save the file in disk utility but can convert cdr to iso

    iMac (27-inch, Mid 2011) 2.7 GHz Intel Core i5 4 GB 1333 MHz DDR3 running10.10.2 (14C1514). Trying to install Windows 7 64 bit from an install disc. When attempting to create an ISO image I can save the file in disk utility but can convert cdr to iso. I select the file and the hit return as in step 8 of the Creating an
    iSO image document but the box that should open to select use iso does not open. How should I proceed?

    The Mac SuperDrive built into your Mac is the Optical drive.
    1. Insert your Windows DVD in Optical drive. Disconnect any external storage.
    2. Insert a USB2 Flash drive. This will be used to hold the BC drivers.
    3. Start BCA. Check the options to download software and Install Windows. You do not need to download Windows. The BCA will download the BC drivers to the USB.
    4. Partition your drive.
    5. You can see the Windows installer screens at https://help.apple.com/bootcamp/mac/5.0/help/#/bcmp173b3bf2.

  • How do you install Windows 7 on Macbook Air with a Windows 7 ISO image?

    Macbook Airs have no optical drives, and I can't buy one. I do, however, have the Windows 7 ISO image. And I also have access to a Windows 7 PC. I found an article on CNET on installing from a Flash Drive, but that requires the CD. I also have a hard drive (120GB) and Flash USB (4GB), if they could help. Please help me as many programs I am familiar with are only windows-based. I am tried using open-source software like Wineskin Winery and WineBottler, but to no avail, I always end up confused with them.Please help me.

    Acius wrote:
    Crjohnson, I think you can really help me!
    Okay, how do you use Wine? I don't want to install lots of software like MacPorts, just want the minimal software. So there are many things like Wine, WineBottler, and Wineskin Winery. What do I use for what? For example, I want to turn a windows game (Age of Empires 2 for example) into a full Mac App. How would I go about this?
    I tried researching but it is so in-depth with terminal commands and all(i dont want to risk ruining my computer)
    What is crossover? Is it another wine app?
    Oh, and I tried Winery Wineskin...why doesn't it work? It keeps installing random things like Gecko, or Mono, but in the end, it doesn't work. Do I need the windows app's executable, or the window's apps's installation executable??
    What are engines, and how many do I need to create? I think the best thing for me is to learn wine, because installing windows with bootcamp isn't worth the effort, I think, with me having only a few apps i need to run.
    As for learning mac apps only, well, Windows apps dominate the market with most of applications being made for windows, especially games, with 90% market. So for some apps, there just isn't a mac version available, or if there is, it's costly. (Which you already know I can't buy things)
    You probably cannot afford to buy Crossover either.  It is designed for user friendliness though, but of course Wine cannot run everything.
    Yes you have to learn some things to use Wineskin.  Normally on Gecko and Mono prompt, just cancel them.  Gecko is needed if you have a program using mshtml (its basically a replacement for Internet Explorer for programs that use parts of it).  Mono is a replacement for .NET if your program requires that.  You do not want to install them if you don't need them as they will just waste space.  You can always refresh the wrapper later on and get the same prompts if you find out you need them later.
    You can copy the full installed version of a game inside the Wineskin wrapper and try to set it up that way, but its usually easier to just run the installer and install it inside the wrapper just like you'd install it in Windows.
    An Engine is something you download... its basically a specific Wine build made for a Wineskin wrapper.
    If you do not want to learn Wineskin enough to get in and port your programs yourself, you can often find other people who have done so (at least with games).
    Check out sites like PaulTheTall.com who has tons of Wineskin wrappers already made and ready to go for many games... you just download the wrapper, install the game you want in it using the normal Installer, then its ready to go.  Many you'll need to manually update yourself to Wineskin 2.5.8 though since all the older versions broke ok the OS X 10.8.2 and 10.7.5 update, and Paul hasn't gotten to all of them yet since he has hundreds (including AoE 2 i think).
    There is also Portingteam.com which has tons of pre-made wrappers for games (Including Cider hacks from official games).
    If your talking about non-Game apps though, you can normally find an alternative... many of which are free.

  • Can you install Windows 7 from an *.iso file on the Bootcamp partition?

    G'Day Everyone,
    I have an ISO disk image on my Mac hard drive. (en_windows_7_professional_with_sp1_x86_dvd_631025.iso)
    Has anyone had a successful experience installing Windows 7 from an ISO disk image rather than from an installer disk?
    If so, what's the process?
    Thanks and Cheers,
    Rich

    I'm running Boot Camp 3.0.4 on Mac OS 10.6.8
    Here's what I see:
    Screen One
    Screen Two:
    Screen Three:
    I don't see the screen you shared!! :-(
    What version of Boot Camp Assistant are you running? What Mac O?
    Thanks & Cheers,
    Rich

  • Problem in unattended installation of Windows 10 OS image from its ISO

    Hi There,
    I am trying to install unattended Windows 10 OS image from its ISO by unattended.xml. While doing it windows boot screen get stuck at windows setup screen where it ask input for Language, TIme format and Keyboard input method. For same
    process if I use windows 8.1 ISO for installation it works fine. From technet I come to know that Windows 10 has NT DISM version as 6.4 and 8.1 has 6.3.  But I am not getting how I can make these change in my automation..
    We are creating a FLP file which includes (unattended.xml and few other files)and then specify that file to Vmware workstation Windows 10 image floppy drive and Windows 10 iso to DVD drive and then booting the VM.
    Same process works for Windows 8.1 OS unattended installation but it is getting failed for Windows 10.
    Please help.
    Regards,
    Nortonboy

    Hi Alex,
    I am using ISO :- 9841.0.140912-1613.FBL_RELEASE_CLIENTPRO-CORE_OEMRET_X64FRE_EN-US.ISO
    Answer file :- autounattend.xml.
    Yeah same answer file works for Win 8.1 but when I am useing above ISO which is same what you mentioned  but still it stuck.
    I am using below content in autounattend.xml
    ##################################3
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
      <settings pass="windowsPE">
        <component name="Microsoft-Windows-International-Core-WinPE" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <SetupUILanguage>
            <UILanguage>en-us</UILanguage>
          </SetupUILanguage>
          <InputLocale>en-us</InputLocale>
          <SystemLocale>en-us</SystemLocale>
          <UILanguage>en-us</UILanguage>
          <UserLocale>en-us</UserLocale>
        </component>
    <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipAutoActivation>true</SkipAutoActivation> 
        </component
        <component name="Microsoft-Windows-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <UserData>
            <AcceptEula>true</AcceptEula>
            <ProductKey>
              <WillShowUI>OnError</WillShowUI>
              <Key></Key>
            </ProductKey>
          </UserData>
          <Display>
            <ColorDepth>32</ColorDepth>
            <HorizontalResolution>1024</HorizontalResolution>
            <VerticalResolution>768</VerticalResolution>
          </Display>
          <ComplianceCheck>
            <DisplayReport>OnError</DisplayReport>
          </ComplianceCheck>
          <DiskConfiguration>
            <WillShowUI>OnError</WillShowUI>
            <DisableEncryptedDiskProvisioning>true</DisableEncryptedDiskProvisioning>
            <Disk>
              <DiskID>0</DiskID>
              <WillWipeDisk>true</WillWipeDisk>
              <CreatePartitions>
                <CreatePartition>
                  <Extend>true</Extend>
                  <Order>1</Order>
                  <Type>Primary</Type>
                </CreatePartition>
              </CreatePartitions>
              <ModifyPartitions>
                <ModifyPartition>
                  <Active>true</Active>
                  <Format>NTFS</Format>
                  <Label>Windows</Label>
                  <Order>1</Order>
                  <PartitionID>1</PartitionID>
                </ModifyPartition>
              </ModifyPartitions>
            </Disk>
          </DiskConfiguration>
          <ImageInstall>
            <OSImage>
              <InstallTo>
                <DiskID>0</DiskID>
                <PartitionID>1</PartitionID>
              </InstallTo>
              <WillShowUI>OnError</WillShowUI>
              <InstallToAvailablePartition>false</InstallToAvailablePartition>
            </OSImage>
          </ImageInstall>
        </component>
      </settings>
      <settings pass="specialize">
        <component name="Microsoft-Windows-Security-SPP-UX" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <SkipAutoActivation>true</SkipAutoActivation>
        </component>
        <component name="Microsoft-Windows-LUA-Settings" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <EnableLUA>false</EnableLUA>
        </component>
        <component name="Security-Malware-Windows-Defender" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <DisableAntiSpyware>true</DisableAntiSpyware>
        </component>
        <component name="Microsoft-Windows-SystemRestore-Main" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <DisableSR>1</DisableSR>
        </component>
        <component name="Microsoft-Windows-SQMAPI" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <CEIPEnabled>0</CEIPEnabled>
        </component>
        <component name="Networking-MPSSVC-Svc" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall>
          <PrivateProfile_EnableFirewall>false</PrivateProfile_EnableFirewall>
          <PublicProfile_EnableFirewall>false</PublicProfile_EnableFirewall>
          <DomainProfile_DisableNotifications>true</DomainProfile_DisableNotifications>
          <PrivateProfile_DisableNotifications>true</PrivateProfile_DisableNotifications>
          <PublicProfile_DisableNotifications>true</PublicProfile_DisableNotifications>
        </component>
        <component name="Microsoft-Windows-Shell-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <UserAccounts>
            <AdministratorPassword>
              <Value>password</Value>
              <PlainText>true</PlainText>
            </AdministratorPassword>
            <LocalAccounts>
              <LocalAccount wcm:action="add">
                <Password>
                  <Value>symantec</Value>
                  <PlainText>true</PlainText>
                </Password>
                <Description>Automation Account</Description>
                <DisplayName>Automation Account</DisplayName>
                <Group>Administrators;Power Users</Group>
                <Name>Automation</Name>
              </LocalAccount>
            </LocalAccounts>
          </UserAccounts>
          <OOBE>
            <HideEULAPage>true</HideEULAPage>
            <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
            <ProtectYourPC>3</ProtectYourPC>
            <NetworkLocation>Other</NetworkLocation>
          </OOBE>
          <Display>
            <ColorDepth>32</ColorDepth>
            <HorizontalResolution>1024</HorizontalResolution>
            <VerticalResolution>768</VerticalResolution>
          </Display>
          <TimeZone>Pacific Standard Time</TimeZone>
        </component>
        <component name="Microsoft-Windows-International-Core" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
          <InputLocale>en-US</InputLocale>
          <SystemLocale>en-US</SystemLocale>
          <UILanguage>en-US</UILanguage>
          <UserLocale>en-US</UserLocale>
        </component>
      </settings>
    </unattend>
    Do you guys have any inputs on this issue
    Nortonboy

  • How to install from a Solaris 8 install .iso?

    I want to try to install Solaris 8 in an LDOM. I know that it is "not supported" - but it may be possible, according to some discussions I have had, so I want to try.
    Unfortunately, when I try the naive approach and add the iso image of the CD as a virtual disk to the domain and try to boot from it, it tells me the file isn't executable. The explanation, it seems, is that the CD actually contains several slices, and only the first one is visible when you look at it as an iso file. So, I guess my question is: Is it actually possible to get to a point where I can try to install from this CD image into an LDOM?

    Well, if it was supported you would be able to ;)
    The thing with the SPARC installation CD's is that they are indeed sliced, i think the reason for it to be sliced is that different slices supports different CPU architectures, so that slice 2 (or slice :b when you boot it from an OK prompt) was originally, long time ago, used for the sun4c CPU's, slice 3 (or :c) was used for sun4m and slice 4 (:d) was used for sun4d.
    Then came sun4u which used slice 5/:e
    Then slice 0 would contain a HSFS filesystem which actually contained the packages and the installation program.
    You can get the vtoc with dd, and then extract the slices you want with dd and access them using LOFS. But yet again this is probably futile. I don't think there is a single chip in the T4 hardware which is supported with Solaris 8.
    Given how powerful the T4 seems, and how ineffective Solaris 8 could sometimes be at utilizing resources, it would also seem like a waste..
    Have you had a look at native zones? that way you can run Solaris 8 / 9 in zones under Solaris 10..
    .7/M.

Maybe you are looking for

  • SQLException Error in Log file

    Does anyone know of the following error, and how to fix this? I keep getting it in my engine log file like every 30 mn. Thank you, -Lilach --------------------------------------------- Error -----------------------------------------------------------

  • Please help!!!!!!!!! My Mac won't let me sign in!!!!

    Someone please help!!!!!  Last night after having some issues with my mac I decided that it would be the best solution to restore my mac to a previous version saved on an external harddrive using the time machine!!!  That entire process went great an

  • E66- always says " memory full"

    Hi guys, do somebody has the same problem- and solution. I installed  latest 300.21.012 on my E66, but often / 2-3 times per day/ the phone just stops to answer to me and when i push some of the short buttons , the device says : "memory full, please

  • Changing the run-time menu programatically

    Hi All I am developing an application which will be a bilingual. when i click french button on GUI, all display messages changes to french. When i click on English, all captions and messages come in Engilsh. I am using property node to change the cap

  • Changeing the Transport request Attributes?

    Hi Guys,              Can anybody tell me how to Change the Transport request Text , means while creating a Request u will enter the Description for Each request.Can anybody tell me how to change that description?                Very Urgent. Thanks,