×
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

    Revision as of 22:37, 5 April 2006 by imported>Hundfred
    (diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

    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:

      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


    /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:

      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


    /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

    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.