Results 1 to 7 of 7

Thread: HOWTO: ISO creation from terminal

  1. #1
    Join Date
    Feb 2007
    Location
    Nowhere important
    Beans
    1,198
    Distro
    Ubuntu 12.04 Precise Pangolin

    HOWTO: ISO creation from terminal

    Hi,
    I was looking for this (for a BASH script I wanted to write), and I found out how to do it. Now I want to share it

    1. Create ISO-file from folder
    Code:
    mkisofs -r -o /isofile.iso /folder
    where /isofile.iso is the relative or absolute path to the iso-file you want to create and /folder the absolute or relative path to the folder you want to backup.

    2. Create ISO-file from file(s)
    Code:
    mkisofs -r -o /isofile.iso /mybigfile
    or if you want to backup multipi files (like you .mp3 collection):
    Code:
    mkisofs -r -o /isofile.iso *.mp3
    3. Create ISO-file from a cd/dvd-drive
    Code:
    dd if=/dev/cdrom0 of=isofile.iso
    where /dev/cdrom0 is your cd/dvd-drive and isofile.iso your iso-file you want to create.

    Note: An absolute path is like '/home/yn/myfile.iso', a relative path is like 'myfile.iso'
    ➙ Synchronize all your files across Windows, Linux and Mac OS with Dropbox (2GB free storage!). By signing up via this link I'll get some extra space also, thanks!

    Multiseat on Ubuntu 10.04

  2. #2
    Join Date
    Dec 2008
    Beans
    39

    Re: HOWTO: ISO creation from terminal

    Thanks very much for this.
    If I could- I would press the thank you button, but I'm not seeing one.

    Thanks to you!

  3. #3
    Join Date
    Feb 2007
    Location
    Nowhere important
    Beans
    1,198
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO: ISO creation from terminal

    February 17th, 2008, the button wasn't there yet
    ➙ Synchronize all your files across Windows, Linux and Mac OS with Dropbox (2GB free storage!). By signing up via this link I'll get some extra space also, thanks!

    Multiseat on Ubuntu 10.04

  4. #4
    Join Date
    Feb 2009
    Beans
    11

    Re: HOWTO: ISO creation from terminal

    Still no button so thank you

  5. #5
    Join Date
    Sep 2006
    Beans
    3,165
    Distro
    Ubuntu Karmic Koala (testing)

    Re: HOWTO: ISO creation from terminal

    Thanks, simple but useful one.

  6. #6
    Join Date
    Aug 2009
    Beans
    1

    Re: HOWTO: ISO creation from terminal

    thank you lot ...

  7. #7
    Join Date
    Jan 2010
    Beans
    93
    Distro
    Ubuntu

    Re: HOWTO: ISO creation from terminal

    nice tutorial

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •