-
Website
http://www.tech-recipes.com/ -
Original page
http://www.tech-recipes.com/rx/2769/ubuntu_how_to_create_iso_image_from_cd_dvd/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
davak
83 comments · 1 points
-
Web Design
3 comments · 1 points
-
danishbacker
9 comments · 1 points
-
flexinfo
11 comments · 1 points
-
Tonychelle
4 comments · 1 points
-
-
Popular Threads
-
Facebook: How To Get Only Status Updates on Your FB Home Page
1 week ago · 4 comments
-
Firefox: Enable Case Sensitive Searches When Using Find (Ctrl+F)
4 days ago · 1 comment
-
Windows 7: How To Disable Live Preview for Taskbar Thumbnails
1 week ago · 2 comments
-
Gmail: How to block a sender from your inbox
2 weeks ago · 3 comments
-
Our first iPhone game GreenThumb available in the App Store
3 weeks ago · 2 comments
-
Facebook: How To Get Only Status Updates on Your FB Home Page
when i set the path to the file i want i get a permission denied
now i know how to use the nautilus thing because i didnt have permission to access my font and icon files but i have no idea how to do this in terminal because this isnt a file i need access to it is an action i need to do and it isnt letting me
please help!
eg: $ sudo cat /dev/scd0 > *.iso
Thanks again !
First, you're using the wrong tool for the job. This would be the equivalent of using a wrench to hammer a nail in the wall. They both get the job done, but gah!
Second, this command doesn't have any checking. What happens if you have some wild hard drive activity, and you don't get all the bits copied? You have a bad ISO, and you won't know it.
Instead, you should be using the right tool for the right job. In this case, you need to check out the 'readom' command (read optical media). It does exactly what you're looking for, and has built in error checking.
readom dev=/dev/scd0 f=/home/shamanstears/test.iso
If you want to record the ISO, then you should be using 'wodim', not 'dd', or any other horrible "solution".
wodim -v -eject /home/shamanstears/test.iso
This will burn your 'test.iso' to your blank CD, assuming it's already inserted, and eject when it's finished. It'll even be verbose about it's output along the way. These sort of shoddy tips and tricks are what get a lot of users in trouble. Remember- use the right tools for the right job, and everyone will be happy.
So the method of Aaron Toponse is the good one if you want to do it in command line.
Briga