Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. apt-get install genisoimage
  2.  
  3. $ isoinfo dev=/dev/sr0 -d
  4. CD-ROM is in ISO 9660 format
  5. System id: C@-RTKS C@-BRIDCE
  6. Volume id: antartica
  7. Volume set id:
  8. Publisher id:
  9. Data preparer id:
  10. Application id: CAUAF File System - Adaptec
  11. Copyright File id:
  12. Abstract File id:
  13. Bibliographic File id:
  14. Volume set size is: 1
  15. Volume set sequence number is: 1
  16. Logical block size is: 2048
  17. Volume size is: 297247
  18. NO Joliet present
  19. NO Rock Ridge present
  20.  
  21. $ a=2048 # Block size read above.
  22. $ b=297247 # Volume size. Near 300.000 for a 600Mega disk
  23. $ dd if=/dev/sr0 bs="$a" count="$b" | md5sum
  24.  
  25. $ dd if=/dev/sr0 bs="$a" count="$b" | sha512sum
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement