Toast Free CD Copy

當你買了Macintosh後, 也許你也像我一樣會煩惱.要怎麼做 CD Copy??
大多數的人都只認定 Mac 沒有這項功能. 都依賴 Toast 等的工具.
那些工具的確是很好用.但是最少要花上2500銀兩.
如果你不想盜版.又想使用免費的 CD Copy那你可以參考一下這個做法.

使用 Mac OS X 的 終端機
拷貝光碟片設備的原始資料到檔案

你可以使用 dd 的命令拷貝ISO檔案. 不過你需要先知道你的光碟片設備的裝置名稱.

1. 插入光碟片
2. 執行 df 指令.偵測光碟的設備名稱
3. 卸載你的光碟片.讓他不要在使用的模式. 例如 sudo umount /Volumes/CDROM
4. 使用 dd 指令拷貝光碟設備到檔案. 例如 sudo dd if=/dev/disk1s0 of=testimage.img bs=2048
5. 使用 磁碟公用程式 燒錄剛剛你產生的檔案.

OS X command line
copy raw data from the CD device to a file

You can use the command dd to do this. You’ll need to figure out what
the device name of your CD drive is.

1. stick the CD in
2. run df and figure out the CD’s device name
3. unmount the CD so it won’t be “in use”, e.g. sudo umount /Volumes/CDROM
4. use dd to copy from the CD device to a file, e.g. sudo dd if=/dev/disk1s0 of=testimage.img bs=2048
5. use Disk Utility as above to burn a CD from the file you just created.

Leave a Reply

Your email address will not be published. Required fields are marked *

 

This site uses Akismet to reduce spam. Learn how your comment data is processed.