ISO erstellen und mounten


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // ISO erstellen
  2. dd if=/dev/cdrom of=cd.iso
  3.  
  4. // ISO mounten
  5. mount -t iso9660 -o loop image.iso /mnt/isoimage

Report this snippet


Comments


You need to login to view comments.