dd
-
Raspberry Pi Image copy in LinuxComputer/linux 2017. 3. 10. 05:43
As described in https://www.raspberrypi.org/documentation/installation/installing-images/linux.md, dd can be used for "image copying on a MicroSD". However, in the case where dd version is old, it would be good to use "pv" to check its status as follows: pv -tpre 2017-03-02-raspbian-jessie.img | dd bs=4M of=/dev/sdb
-
How to create a iso file from cd or dvd in linuxComputer/linux 2007. 8. 3. 22:49
Create iso file from CD / DVD sudo umount /dev/cdromdd if=/dev/cdrom of=whateverfilename.isoCreate iso file from a local directory mkisofs -r -o whateverfilename.iso /local_directory mount and umount iso file with sudo or su mkdir /media/imgaemodprobe loopmount whateverfilename.iso /media/image -t iso9660 -o loopumount /media/image reference http://ubuntuguide.org/wiki/Ubuntu:Feisty/CDDVDBurning