加载光驱,注意笔者的是CD-ROM
如果单纯如下操作
root@ubuntu-sv:/# mount /dev/scd0 /media/cdrom
mount: block device /dev/sr0 is write-protected, mounting read-only
mount: you must specify the filesystem type
肯定会报错,所以必须指定读写方式和文件格式
root@ubuntu-sv:/# mount -o ro -t iso9660 /dev/scd0 /media/cdrom