×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles

    ISO images and Linux: Difference between revisions

    Content added Content deleted
    imported>Hundfred
    No edit summary
     
    imported>Hundfred
    No edit summary
    Line 1: Line 1:
    '''Making an ISO Image of a directory:'''
    '''Making an ISO Image of a directory:'''



    mkisofs -o tmp.iso tmp/
    mkisofs -o tmp.iso tmp/
    Line 8: Line 6:


    '''Making an ISO Image of a CD/DVD:'''
    '''Making an ISO Image of a CD/DVD:'''

    1. First, ensure that you know that your CD or DVD device actually works and that you know the device location..
    2. Fire up your prefered terminal emulator (Konsole, xterm, gnome-terminal...), insert the disk into the drive you want to use, and issue the following command:


    dd if=/dev/cdrom of=/home/dave/MyCD.iso
    dd if=/dev/cdrom of=/home/dave/MyCD.iso



    /dev/cdrom is the device location of your drive (/dev/cdrom is usually ok), and where /home/dave/MyCD.iso is the path where you want the ISO image to be created.



    '''Mounting an ISO image:'''
    '''Mounting an ISO image:'''

    1. This is getting boring, open up your prefered terminal emulator...
    2. Issue the following command:


    mount -o loop /home/dave/MyCD.iso /mnt/iso
    mount -o loop /home/dave/MyCD.iso /mnt/iso



    /home/dave/MyCD.iso is the path to the ISO you want to mount, and /mnt/iso is the mountpoint, and to unmount, simply issue the following:

    umount /mnt/iso

    Revision as of 22:38, 5 April 2006

    Making an ISO Image of a directory:

    mkisofs -o tmp.iso tmp/

    tmp.iso is where you want the ISO image to wind up, and where tmp/ is the drectory you want to be the base of the ISO

    Making an ISO Image of a CD/DVD:

    dd if=/dev/cdrom of=/home/dave/MyCD.iso

    Mounting an ISO image:

    mount -o loop /home/dave/MyCD.iso /mnt/iso

    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.