Skip to content

Instantly share code, notes, and snippets.

@palerdot
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save palerdot/ca05266d718a707775c9 to your computer and use it in GitHub Desktop.
Save palerdot/ca05266d718a707775c9 to your computer and use it in GitHub Desktop.
Create iso image of dvd in linux from command line

If the dvd is mounted it is available via /dev/dvd

Run the following in terminal

sudo dd if=/dev/dvd of=/your/path/file_name.iso

Here, if denotes input file, of is output file. dd stands for device dump.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment