如何解决 Ubuntu 20.04 中插入外部 DVD 驱动器失败?

如何解决 Ubuntu 20.04 中插入外部 DVD 驱动器失败?

我买了一个外置 DVD 驱动器但是,插入(或在已插入设备的情况下启动)后,我看到该设备列在计算机的资源中,但无法访问它:

在此输入图像描述

如果我尝试通过 VLC 访问驱动程序,则会收到错误消息VLC is unable to open the MRL 'cdda:///dev/sr0'

fstab的内容是:

$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/nvme0n1p2 during installation
UUID=341faa1b-4e49-49d7-85a4-e33acecb2212 /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/nvme0n1p1 during installation
UUID=24D6-7429  /boot/efi       vfat    umask=0077      0       1
/swapfile                                 none            swap    sw              0       0

在 Ubuntu 20.04 中插入 DVD 的正确方法是什么?是驱动程序的问题吗(我需要购买另一个更适合Linux的品牌)?或者我需要用一些sudo命令更改驱动程序的权限?

插入 DVD 驱动器后,我得到:

$ ls -lt | less | grep sr0
lrwxrwxrwx  1 root   root           3 May 27 21:15 cdrom -> sr0
lrwxrwxrwx  1 root   root           3 May 27 21:15 cdrw -> sr0
lrwxrwxrwx  1 root   root           3 May 27 21:15 dvd -> sr0
lrwxrwxrwx  1 root   root           3 May 27 21:15 dvdrw -> sr0
brw-rw----+ 1 root   cdrom    11,   0 May 27 21:15 sr0

谢谢

答案1

您的驱动器似乎尚未安装。请按照以下步骤操作:

  1. 启动终端并输入mkdir /media/cdrom
  2. 然后,输入sudo mount -t auto /dev/cdrom /media/cdrom.
  3. 看看是否有效;如果没有,请重新启动并检查是否可以访问它。

应该工作。如果没有,请发表评论。

编辑:请尝试以下步骤。

  1. 打开终端并写入cd /dev/.
  2. 然后,ls -lt | less看看是否找到dvd -> sr0cdrom -> sr0

相关内容