Editing ISO Images

I was wondering if it was possible to edit an iso image I have. The image mounts in disk mounter and I can see the directories and files, but it is mounted as read only. Is there any way I can write to an iso image?

While I am unfamiliar with and do not use ISO images, I do know some information is
available through a search; of the results, a few examples should be forthcoming; per:
' Mac OS X edit ISO images ' - google results page URL:
http://www.google.com/#hl=en&source=hp&q=MacOS+X+edit+ISO+image&btnG=Google+Search&aq=f&aqi=&oq=Mac+OS+X+edit+ISOimage&fp=d9ca629f83f82f8a
Appears ISO images are also common with PCs or perhaps Intel-based Macs,
with BootCamp; if related to newer hardware & OS X... This obviously would
exceed an older PPC computer's capacity unless it was running some Windows
emulation software, or related image files. Where did you get this image file?
There is a possible match in the first pages of the search result link, above.
In some case, you can't edit these; according to several items I've read the
process may be conditional depending on the file's purpose & the OS.
What is the ISO image related to? If it was created by a specific
software or OS, then editing these may require suitable tools.
Good luck & happy computing!

Similar Messages

  • Mac software for editing .iso images?

    All --
    Call me blind, but I have been searching Google for a fair amount of time and cannot come up with a single software title for the Mac that allows .iso image editing. (Editing = the ability to open and add/remove files from the iso, and then re-burn it.) Windows users have programs like MagicISO (http://www.magiciso.com/) but there doesn't seem to be a Mac equivalent.
    Can anyone offer a suggestion?
    Now, in many forums contributors have suggested using 'hdiutil' from the terminal, like 'hdiutil mount -readwrite image.iso' but it doesn't work. To quote the man page: "+-readwrite :: *attempt to override* the DiskImages framework's decision to attach a particular image read-only.+ "
    Note the bold text. It is only an attempt, not a guarantee.
    Anyway, I can't be the first person to try this. Any thoughts?
    Bones

    I guess you saw this:
    http://macosx.com/forums/howto-faqs/287382-editing-bootable-pc-iso-image-using-o sx.html

  • How to edit registry in windows 7 SP1 ISO image

    How to edit registry keys in windows 7 SP1 ISO image?

    Hi,
    You might need to refer to these two articles
    Edit the registry on a mounted WIM (this link is for WIM, just want to share it with you, hope it can help you)
    http://blogs.technet.com/b/migreene/archive/2006/12/07/edit-the-registry-on-a-mounted-wim.aspx
    Modifying the Regstry of system image
    http://blog.kace.com/2012/05/23/k2000-modifying-the-registry-of-a-system-image/
    NOTE
    This
    response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you.
    Microsoft
    does not control these sites and has not tested any software or information found on these sites.
    Regards
    Yolanda
    TechNet Community Support

  • [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)

  • Unable to read DVDs (to ISO images) in k3b

    k3b is working flawlessly except when I want to read existing DVDs into ISO images.
    I use the "Copy DVD" option with "Only create image" checked.
    The read never even starts.
    Here is the output from k3b's log:
    System
    K3b Version: 1.0.1
    KDE Version: 3.5.6
    QT Version: 3.3.8
    Kernel: 2.6.20-ARCH
    Devices
    PLEXTOR DVD-ROM PX-116A2 1.00 (/dev/sr0, ) [CD-ROM, DVD-ROM] [DVD-ROM, CD-ROM] [None]
    PLEXTOR DVDR PX-708A 1.12 (/dev/sr1, ) [CD-R, CD-RW, CD-ROM, DVD-ROM, DVD-R, DVD-RW, DVD+R, DVD+RW] [DVD-ROM, DVD-R Sequential, DVD-RW Restricted Overwrite, DVD-RW Sequential, DVD+RW, DVD+R, CD-ROM, CD-R, CD-RW] [SAO, TAO, RAW, SAO/R96P, SAO/R96R, RAW/R16, RAW/R96P, RAW/R96R, Restricted Overwrite]
    _NEC DVD_RW ND-3540A 1.W4 (/dev/sr2, ) [CD-R, CD-RW, CD-ROM, DVD-ROM, DVD-R, DVD-RW, DVD-R DL, DVD+R, DVD+RW, DVD+R DL] [DVD-ROM, DVD-R Sequential, DVD-R Dual Layer Sequential, DVD-RW Restricted Overwrite, DVD-RW Sequential, DVD+RW, DVD+R, DVD+R Dual Layer, CD-ROM, CD-R, CD-RW] [SAO, TAO, RAW, SAO/R96R, RAW/R96R, Restricted Overwrite]
    K3bDataTrackReader
    reading sectors 0 to 2155647 with sector size 2048. Length: 2155648 sectors, 4414767104 bytes.
    using buffer size of 64 blocks.
    Error while writing to fd 16. Current sector is 0.
    Read a total of 64 sectors (131072 bytes)
    Last edited by wantilles (2007-05-02 14:18:04)

    Recently I bought a DVD burner and popped it in my 10.3.9 machine, and (after installing Patchburn) it read DVDs just fine. Whatever's going on, it's not an OS issue. If it was, can you imagine the how much noise there would be about it? Again, there have been a few posts on the forums about it, but that tells us all something -- this is an isolated issue and not a general OS issue.
    Best,
    ~FifthWheel

  • Can't burn .ISO image with k3b/brasero on DVD-RW disc.

    I don't understand what's going wrong here, so I hope someone can help me.
    I have created an .ISO image (of a video) using DVDstyler.
    (1) DVDstyler will burn it to a DVD-RW without any problems.
    (2) I can burn it from the command line (growisofs etc.)
    (3) I can burn it to a DVD-R from any application (DVDstyler, K3b, Brasero)
    K3B and Brasero will write data to a DVD-RW any without problems
    But, when I try to burn the dvd.iso to a DVD-RW disc with either k3b or Brasero, they fail with various  error messages.
    For example, K3B's debugging output is as follows
    Devices
    TSSTcorp DVD-ROM TS-H352C DE06 (/dev/sr1, CD-ROM, DVD-ROM) [DVD-ROM, CD-ROM] [None] [%7]
    _NEC DVD_RW ND-4550A 1.09 (/dev/sr0, CD-R, CD-RW, CD-ROM, DVD-ROM, DVD-R, DVD-RW, DVD-R DL, DVD+R, DVD+RW, DVD+R DL) [DVD-ROM, DVD-R Sequential, DVD-R Dual Layer Sequential, DVD-RAM, DVD-RW Restricted Overwrite, DVD-RW Sequential, DVD+RW, DVD+R, DVD+R Dual Layer, CD-ROM, CD-R, CD-RW] [SAO, TAO, RAW, SAO/R96P, SAO/R96R, RAW/R16, RAW/R96P, RAW/R96R, Restricted Overwrite] [%7]
    System
    K3b Version: 2.0.2
    KDE Version: 4.7.3 (4.7.3)
    QT Version: 4.7.4
    Kernel: 3.1.2-1-ARCH
    Used versions
    cdrecord: 3.1a06
    cdrecord
    scsidev: '/dev/sr0'
    devname: '/dev/sr0'
    scsibus: -2 target: -2 lun: -2
    Warning: Open by 'devname' is unintentional and not supported.
    Linux sg driver version: 3.5.27
    SCSI buffer size: 64512
    cdrecord: Warning: Cannot read drive buffer.
    cdrecord: Warning: The DMA speed test has been skipped.
    Cdrecord-ProDVD-ProBD-Clone 3.01a06 (i686-pc-linux-gnu) Copyright (C) 1995-2011 Joerg Schilling
    TOC Type: 1 = CD-ROM
    Using libscg version 'schily-0.9'.
    atapi: 1
    Device type : Removable CD-ROM
    Version : 5
    Response Format: 2
    Capabilities :
    Vendor_info : '_NEC '
    Identifikation : 'DVD_RW ND-4550A '
    Revision : '1.09'
    Device seems to be: Generic mmc2 DVD-R/DVD-RW/DVD-RAM.
    Current: DVD-RW restricted overwrite
    Profile: DVD+R/DL
    Profile: DVD+R
    Profile: DVD+RW
    Profile: DVD-R/DL sequential recording
    Profile: DVD-RW sequential recording (current)
    Profile: DVD-RW restricted overwrite (current)
    Profile: DVD-RAM
    Profile: DVD-R sequential recording
    Profile: DVD-ROM
    Profile: CD-RW
    Profile: CD-R
    Profile: CD-ROM
    Profile: Removable Disk
    Using generic SCSI-3/mmc-2 DVD-R/DVD-RW/DVD-RAM driver (mmc_dvd).
    Driver flags : NO-CD DVD MMC-3 SWABAUDIO BURNFREE
    Supported modes: PACKET SAO
    Drive buf size : 1769472 = 1728 KB
    FIFO size : 4194304 = 4096 KB
    cdrecord: Drive needs to reload the media to return to proper status.
    cdrecord: Data does not fit on current disk.
    Track 01: data 1854 MB
    Total size: 1854 MB = 949353 sectors
    Current Secsize: 2048
    Trying to clear drive status.
    WARNING: Phys disk size 65264 differs from rzone size 0! Prerecorded disk?
    WARNING: Phys start: 196608 Phys end 261871
    WARNING: Drive returns zero media size. Using media size from ADIP.
    Blocks total: 65264 Blocks current: 65264 Blocks remaining: -884089
    cdrecord command:
    /usr/bin/cdrecord -v gracetime=2 dev=/dev/sr0 speed=2 -sao -data -tsize=949353s -
    I hope this is enough to give some clues.  BTW, I have tried  forcing a re-format on the disc first from within the application, which reports success. It all used to work some months ago, but since I do not do this regularly, I can't identify exactly when the problem started.
    I would really appreciate some guidance.
    Many thanks in advance

    He already stated thet he is re-formated teh disk
    @myrlin
    as far as i can see, problem is with
    cdrecord: Data does not fit on current disk.
    try to reduce data for burning.
    Aslo check that your user belongs to optical group aka "id USER"
    Last edited by cybertorture (2011-11-30 18:13:28)

  • IPod hard drive and ISO image files

    Every time I try to copy an ISO image file to the hard drive partition of my iPod, Windows tells me that the destination is full. This is not true, since my iPod has 23.5 GB of space left. Does anyone know why this might be, or have any way around it?
    EDIT: This has not been a problem with ISO images smaller than 1GB, just in case this is a factor in the solving of this problem.
    Custom Built (by me) Windows XP AMD Athlon 64 3200+, ASUS 128MB AGP Graphics Card

    Yes, it will. But if DU says the disk is unformatted then it is also not accessible. If you have files you don't wish to lose then you will need to try recovery software:
    Basics of File Recovery
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as Data Rescue II, File Salvage or TechTool Pro. Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.

  • Editing RAW Images (NEF file)

    Hi
    I'm having trouble with editing RAW images from my Nikon D3000. This is my first time shooting in RAW so I have no idea what to do.
    I've downloaded the DNG Converter from Adobe and converted all my files to DNG. However, when I opened them on Photoshop Elements 4.0, they turned out VERY grainy! (Even though all the shots are clear when viewed on my camera)
    Also, I could not save my files as JPG (After converting them to DNG). The only options were TIFF, PNG, JPF (?).
    Please help as the photos are quite important.
    Thank you.

    What version of the dng converter did you download?
    What operating system are you using?
    It's hard to judge how much noise are in the photos from the camera LCD screen.
    Also, if you took the photos at high ISO settings or had the auto setting on, the camera may have used a high iso which can produce more noise.
    Do you have a copy of Nikon View NX2 so you can get an idea of what the raw photos should look like?
    (free from nikon: https://support.nikonusa.com/app/answers/detail/a_id/61/session/L3RpbWUvMTM3NDgyODQzMi9zaW QvOHQyQlU5d2w%3D)

  • If I make an ISO image on a PC, will it work on my MBP?

    Hello,
    I'm trying to install Windows 8 on my new MBP Retina. I bought a copy of Windows 8, which I could only get as a DVD (I spent some time on the phone talking to agents of the Microsoft Store and this was the only option: Windows 8 can only be downloaded if one is updating Windows 7, otherwise a DVD is what you get). Since the MBP does not have a DVD player, it seems that my best option is to make an ISO image of the DVD and then install it with a USB drive through Bootcamp as explained here: http://www.intowindows.com/install-windows-8-on-mac/
    My question is: can I make this ISO image on a PC using any appropriate software (like Burnaware's free edition)? Or does the ISO image need to be made on another Mac?
    Thank you in advance for any help!

    Thank you mende1 and Allan Eckert for your help.
    For those of you that might have the same question that I had, the answer is yes, the ISO image of your Windows 8 disc can be produced in a PC--you don't need another Mac to do this. And, the ISO file does not have to be bootable--I made a simple/standard one with Burnaware's free version but there are a number of other sofware out there that could be used for this purpose. Once you make the ISO image, move it to your MBP's desktop and follow the instructions for creating a bootable USB drive through Bootcamp--instructions can be found in Apple's website. You might find a couple of bumps here and there but overall, it's a very easy process and it works well. In my opinion, no disc drive is necessary. Good luck!

  • ISO image for Sun Fire v60x diagnostics CD

    The only thread I can find on this diagnostic CD is from 2006:
    Re: ISO image for Sun Fire v65x diagnostics CD...
    The link posted in the forum:
    "Sun Fire(tm) V60x, V65x Diagnostic CD 4.0
    This distribution offers the Diagnostic CD image (Sun Fire(tm) V60x, V65x Diagnostic CD Release 4.0) supporting Sun Fire V60z and V65z products.
    http://www.sun.com/download/products.xml?id=441f6709" (The download link on the page does not work).
    Does not work due to the shift from Sun to Oracle.
    Can anyone point me in the right direction for the file? I've been searching for months.
    Thank you.
    Edited by: user13455836 on Mar 21, 2011 12:46 PM

    Hello,
    it should be possible to locate these files via the migrated (Sun) System Handbook.
    This is a blog entry about the new location of the System Handbook (review the 3rd comment)
    http://blogs.sun.com/patch/entry/goodbye_sunsolve_helloooo_mos
    Maybe the user Nik (http://forums.oracle.com/forums/profile.jspa?userID=826741) can help to locate the download. He is very active on these forums and an Oracle employee.
    I don't have a MOS account, otherwise I would have been able to confirm if this download is still available. I guess due to the fact that Oracle contracts are more "fine grained", it's possible that downloads only for the systems covered by your service contract are visible.
    Michael

  • Image to have mounted .ISO image?

    I'd like to use a mounted ISO image (a live image on DVD). I was able to create the VBox image, of course, and if I created a disk it was okay to import, but after import the ISO is no longer mounted. Where does the template live? Is it something I can edit the file on to re-add the ISO before cloning?

    This use case has not been covered with VDI 3. We expect more or less to import a ready to go image, that can be directly used as desktop or replicated as template. The mounting of the DVD will disappear after import. Something to work on for a later release.
    -Dirk

  • 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?

  • Upgrade system from iso image

    Hi there, due the bandwith's situation in my country, download base image (+60) each month is almost imposible. There is any way to upgrade from a cd image? Arch's .iso are copied from other persons via pendrives. Could I roll the base system to "pristine", I mean, make a .tar.xz from the syystem and use that packgages for upgrade my system then?
    Last edited by Uranio-235 (2014-08-27 15:43:44)

    Uranio-235 wrote:Where is the money's plant three??? And again, CAN NOT DOWNLOAD THE REPO, I have only the iso image
    If you're going to argue with every suggestion made, why bother posting in the first place? English doesn't appear to be your native language, so there seems to be a communication gap here. We're trying to help, but you refuse to listen, keep repeating yourself (without clarifying anything) and expect to be spoon-fed the information you seek.
    Uranio-235 wrote:Wrong distro for this country
    That's fine, no one is making you use Arch. You have the freedom to choose whatever distribution suits you best. As you seem to have worked out, Arch doesn't seem to be suitable for your situation. This doesn't mean Arch has a problem or is broken, it just means it's not suitable for you. I'm sorry if you feel slighted by this.
    Uranio-235 wrote:Please, close this thread
    As requested.

  • Why does Boot Camp not recognize Windows ISO image(s) ?

    Dear friends,
    My intention is to install Windows 7 on my Mac
    (I've several Windows OS .iso images)
    in the "BOOTCAMP" called partition, created by Boot Camp 3.0 application, on my internal drive.
    This is a 32 GB partition, being FAT32 formatted,
    but any version of Windows 7 (when installing)
    will surely want to be on an NTFS volume and reformat it.
    I've already burned 3 ISOs, with Toast Titanium 10.0.7 (speed : 2x, less not possible), on 3 DVDs :
    — 1 DVD -RW with W7 Enterprise x64 (with folders and strict ISO 9660 names) ;
    — 1 DVD -RW with W7 Enterprise x86 (32-bit) with one unique ISO, alone ;
    — 1 DVD -R with W7 Ultimate x86 (32-bit) with one unique ISO, alone.
    *Boot Camp doesn't recognize these discs as Windows installation DVDs*,
    and so does nothing but wait.
    I'm sure that something is missing on the disks to be recognized
    as bootable Windows installation discs,
    but I absolutely don't know what (setup.exe, for example, or another .exe file ?).
    Do I have to do something with the burning options
    (strict ISO 9660 naming, Mac names authorized, Hybrid Mac and PC,
    Joliet names or not, folders or not, etc.)
    Do I have to do something with the ISO image (any ISO I have), and how, and what ?
    I've also activators and many other things (.exe files),
    but I think they have to be used AFTER installation.
    Thank you very much in advance for your help !
    With my kind regards,
    Olivier Herrbach
    Message was edited by: Olivier Herrbach

    Dear baltwo,
    Thank you very much for your feedback.
    I'll go there immediately. It's obvious for me that only one .iso file, alone on a DVD, can't be sufficient, comparing with +(but I don't know what)+ is on a Microsoft Windows Install DVD.
    With my kind regards
    Olivier Herrbach
    PS : I didn't have any time to reply to anyone, when I asked "How can I move something (copying it) without leaving original in it's place ?". Someone had the answer : "Drag and hold down cmd while releasing mouse". OK, it works, but you have to have good nerves, because folders open when doing that (I changed delay in Finder Preferences to the slowest), and there's also another inconvenient : I don't trust in copy (I want a one by one byte result), so I have to write what Get Info says BEFORE, and compare it after that with what Get Info says. In this case, I prefer to return to my old habits.
    PPS : I observed, and I will tell it somewhere when possible, that *Get Info gives false informations*.
    For example, I copied a folder with 58 items inside. Get Info didn't give me the same number of bytes for the copy as for the original. So, I did Get Info for *EACH of the 58 items*, wrote the results (in bytes) on a paper, and after adding *all the bytes of the copy*, found THE SAME NUMBER *as the total size of the original.* That's how I waste my time !
    Good evening, hoping to read you somewhere soon.

  • Lightroom 5.4 jumps to second monitor when attempting to edit an image in Photoshop CS 6.

    Hello,
    I have a brand-new HP z620 with an Nvidia Quadro K 4000 display adapter and apparently a software and/or hardware conflict.
    I am experiencing an issue with Lightroom 5.4 window not working correctly with my second, not primary, monitor. When Lightroom is working on the second monitor and I need to edit an image in Photoshop cs6, I want Lightroom stay where it is and Photoshop to open on my primary monitor. And this has worked well for me on my previous system which was also a Windows 7 64-bit machine with an Nvidia GeForce GTX 570.
    When I click the Lightroom option to "edit in Photoshop CS 6” The Lightroom window will move itself to the primary monitor for no apparent reason. This is the problem I am seeking to remedy.
    No other external editing programs opened through LR behaves this way, such as NIK or OnOne Perfect Photo Suite, and I really need LR to stay on the second monitor on the extended desktop.
    I’ve tried every monitor cabling setup I could think of to try and even unplugging the primary to make windows identify it as the 2 monitor in the screen resolution settings, but that does nothing for me. My new workstation is running the same OS version and a K4000. Monitors are currently connected to the display ports via dp to dvi adapters. I’ve already tried moving the connections around and plugging one into dvi, there doesn’t seem to be a setting I can change within windows or adobe to change this behavior.”
    On a related note, I have similar instability in software made by X-rite that supports the use of a colorimeter allowing me to build profiles for monitors and evaluate colors precisely. During the profiling process I place the colorimeter in the designated place on the secondary monitor and direct the application to begin showing the colorimeter different colors on that monitor. At this point the colors jump to the primary monitor while the rest of the interface along with the colorimeter is a secondary monitor. I have a workaround that I'm using for this particular problem but I am fairly sure that the issue that causes the problem with Lightroom is also the source of my trouble here and I need to eliminate it.
    thanks for your time,
    Larry Garvey

    Change the sort order. View->Sort

Maybe you are looking for

  • File sharing issues between iMac G5 20"/Mac OS 10.5.8 and iBook G3 600mhz/Mac OS 10.4.9.

    Both Macs can copy files from each other using the AFP connection.  However, I cannot copy files to another Mac.  So when I try and copy a file from the iMac to the iBook, I get these series of messages: 1) You May Need to enter the name and password

  • HP C5280 all-in-one printer will not print yellow

    I tried cartridge replacement.  Update driver, and clean head. Nothing works. I had this printer in a box for three years without using. Now It will not print yellow or green.

  • Song freezes & skips/keeps repeating

    I have a IPhone 3G with the 3.0 OS update. Were experiencing songs freezing then skip and keep playing, or complete songs on the playlist skipping all together. Got a friend who's got the 3GS and her phone keeps playing the same song over and over an

  • APPLE - PLEASE MAKE IT WORK

    Why have there been no updates for Qmaster to actually make it work 100% of the time? Very frustrating....

  • I have windows 7, will this cause a problem?

    firefox home page comes up, but when I go to yahoo the program dosn't look right. it comes up with large print and the page is longer then it would be on another browser. the display is all over the place.fire fox