Guest User

Untitled

a guest
Oct 19th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. cat /dev/sr0 > image.iso
  2.  
  3. dd if=/dev/cdrom bs=blocksize count=count of=/path/to/isoimage.iso
  4.  
  5. Taking an image of a disk, skipping errors:
  6. pv -EE /dev/sda > disk-image.img
  7.  
  8. Writing an image back to a disk:
  9. pv disk-image.img > /dev/sda
  10.  
  11. Zeroing a disk:
  12. pv < /dev/zero > /dev/sda
  13.  
  14. cat /dev/sr0 >image.iso
  15. cat </dev/sr0 >image.iso
  16. tee </dev/sr0 >image.iso
  17. dd </dev/sr0 >image.iso
  18. dd if=/dev/cdrom of=image.iso
  19. pv </dev/sr0 >image.iso
  20. cp /dev/sr0 image.iso
  21. tail -c +1 /dev/sr0 >image.iso
Add Comment
Please, Sign In to add comment