也许现在使用 USB CD 驱动器听起来很奇怪。但是,我需要从 CD 获取旧数据,而唯一可用的 CD 驱动器是我的旧 Apple SuperDrive。因此,我执行了以下步骤:
首先连接SuperDrive。
然后,安装sg3-utils
:
$ sudo apt-get install sg3-utils
Run Code Online (Sandbox Code Playgroud)
然后,要确定 SuperDrive 的位置,请使用:
$ ls -lt | less | grep sr
brw-rw----+ 1 root cdrom 11, 1 jun 26 09:55 sr1
lrwxrwxrwx 1 root root 3 jun 26 09:32 cdrw -> sr0
lrwxrwxrwx 1 root root 3 jun 26 09:32 dvdrw -> sr0
lrwxrwxrwx 1 root root 3 jun 26 09:32 cdrom -> sr0
lrwxrwxrwx 1 root root 3 jun 26 …
Run Code Online (Sandbox Code Playgroud)