| 141 | * (2021-07-18) 常常 dvdbackup 跑很久,用 dd 會快一點。 |
| 142 | * [How to make a backup copy (ISO image) of a CD or DVD using the MacOS dd command](https://alvinalexander.com/macos/how-make-backup-iso-cd-dvd-using-dd-command/) |
| 143 | {{{ |
| 144 | $ mount |
| 145 | $ diskutil list |
| 146 | $ sudo umount /deve/disk3 |
| 147 | jazzwang:/Volumes/JazzMacBookAir/Video$ sudo time dd if=/dev/disk3 of=filename.iso bs=4m |
| 148 | 13488+0 records in |
| 149 | 13488+0 records out |
| 150 | 55246848 bytes transferred in 21.555367 secs (2563021 bytes/sec) |
| 151 | }}} |
| 152 | * [How to Mount an ISO Image in Mac OS X](https://www.howtogeek.com/tips/how-to-mount-an-iso-image-in-mac-os-x/) |
| 153 | {{{ |
| 154 | hdiutil mount filename.iso |
| 155 | }}} |
| 156 | |
| 157 | |