Ubuntu 12.04 无法识别 CD

Ubuntu 12.04 无法识别 CD
~$ wodim --devices
wodim: Overview of accessible drives (1 found) :
-------------------------------------------------------------------------
 0  dev='/dev/sg1'  rwrw-- : 'MATSHITA' 'DVD-RAM UJ8B1AS'
-------------------------------------------------------------------------

但是我找不到 CD 的访问权限。

请告诉我如何翻录 CD。

当我尝试安装时,出现错误。

~$ mount /dev/sg1
can't find /dev/sg1 in /etc/fstab or /etc/mtab

答案1

如果 CD 没有显示在图形用户界面中,请尝试通过终端安装它

sudo mount /dev/sg1

如果这不起作用,那么我的建议是更新您的 fstab 文件。这相对复杂,因此如果手动安装 CD 不起作用,请告诉我,我会发布有关编辑 fstab 文件的教程。

但是如果 CD 确实出现了,而您想翻录 CD,则需要软件来执行此操作。我建议您在 Ubuntu 软件中心搜索“CD 翻录或 CD 翻录”。

干杯!

答案2

尝试使用以下命令:

ls -alhrt /dev/* | tail -n 30 

从日期来看,您可以得到 USB 设备名称的结果。对我来说,产生了以下输出:

lrwxrwxrwx  1 root root    7 Apr 29 03:26 1:2 -> ../ram2
lrwxrwxrwx  1 root root    8 Apr 29 03:26 1:14 -> ../ram14
lrwxrwxrwx  1 root root    8 Apr 29 03:26 7:0 -> ../loop0
lrwxrwxrwx  1 root root    7 Apr 29 03:26 1:3 -> ../ram3
lrwxrwxrwx  1 root root    8 Apr 29 03:26 1:15 -> ../ram15
lrwxrwxrwx  1 root root    8 Apr 29 03:26 7:2 -> ../loop2
lrwxrwxrwx  1 root root    8 Apr 29 03:26 1:11 -> ../ram11
lrwxrwxrwx  1 root root    8 Apr 29 03:26 1:10 -> ../ram10
lrwxrwxrwx  1 root root    8 Apr 29 03:26 7:5 -> ../loop5
lrwxrwxrwx  1 root root    7 Apr 29 03:26 1:8 -> ../ram8
lrwxrwxrwx  1 root root    7 Apr 29 03:26 1:9 -> ../ram9
lrwxrwxrwx  1 root root    7 Apr 29 03:26 1:7 -> ../ram7
lrwxrwxrwx  1 root root    7 Apr 29 03:26 1:5 -> ../ram5
lrwxrwxrwx  1 root root    8 Apr 29 03:26 7:4 -> ../loop4
lrwxrwxrwx  1 root root    7 Apr 29 03:26 1:4 -> ../ram4
lrwxrwxrwx  1 root root    7 Apr 29 03:26 1:6 -> ../ram6
lrwxrwxrwx  1 root root    8 Apr 29 03:26 7:7 -> ../loop7
lrwxrwxrwx  1 root root    8 Apr 29 03:26 7:6 -> ../loop6
lrwxrwxrwx  1 root root    6 Apr 29 03:26 8:0 -> ../sda
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:9 -> ../sda9
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:2 -> ../sda2
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:4 -> ../sda4
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:6 -> ../sda6
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:3 -> ../sda3
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:7 -> ../sda7
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:8 -> ../sda8
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:5 -> ../sda5
lrwxrwxrwx  1 root root    7 Apr 29 03:26 8:1 -> ../sda1
drwxr-xr-x 16 root root 4.2K Apr 29 03:26 ..
drwxr-xr-x  2 root root  720 Apr 29  2012 .

从那里,获取 usb 设备的名称,为了方便起见,我们将其称为“usbdev”。然后输入以下命令来挂载它。

mount -t ext3 /dev/usbdev /media/USB_Bkup

答案3

在 shell 中(按 Crtl-Alt-T 打开一个)输入:

sudo lshw -C disk

这应该会显示所有磁盘设备,包括 DVD/CDROM 驱动器。它们将标明逻辑名称。应该安装 lshw,但sudo apt-get install lshw如果没有安装,则会安装它。

相关内容