Results 1 to 2 of 2

Thread: create image iso from DVD through command line

  1. #1
    Join Date
    Apr 2016
    Beans
    356

    create image iso from DVD through command line

    Hello folks,

    I was googled and I found this tip:

    To create iso image from DVD use this command line:
    Code:
    sudo cat /dev/sr0 name_drive_DVD > /path/to/directory/image.iso
    It is the best way to create a iso from dvd? I intend create a iso from dvd software to windows. But I need this on my environment Linux!

    Thanks

  2. #2
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: create image iso from DVD through command line

    First, if it is a video DVD, chances are that copy-protection will make this difficult. In that instance I'd use Handbrake.

    For a pure data DVD, you can use "dd" like this:
    Code:
    dd if=/dev/sr0 of=/path/to/file.iso
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

Tags for this Thread

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
  •