CD 未安装

CD 未安装

我从供应商那里收到一张 CD,上面有婴儿图片。当我将其插入驱动器时,它无法安装。我知道我的 CD-ROM 可以正常工作。如何在终端内安装 CD?这是我尝试安装时看到的内容:

*sudo mount /dev/cdrom /mnt/cdrom/
mount: /dev/sr0 is write-protected, mounting read-only
Can only open '/dev/sr0' as read-only
NTFS signature is missing.
Failed to mount '/dev/sr0': Invalid argument
The device '/dev/sr0' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?*

这是 dmesg:

*[ 4726.219094] sr 4:0:0:0: [sr0] tag#14 Sense Key : Hardware Error [current] 
[ 4726.219096] sr 4:0:0:0: [sr0] tag#14 Add. Sense: Timeout on logical unit
[ 4726.219098] sr 4:0:0:0: [sr0] tag#14 CDB: Read(10) 28 00 00 00 2c aa 00 00 02 00
[ 4726.219099] blk_update_request: I/O error, dev sr0, sector 45736
[ 4732.776812] sr 4:0:0:0: [sr0] tag#18 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 4732.776815] sr 4:0:0:0: [sr0] tag#18 Sense Key : Hardware Error [current] 
[ 4732.776817] sr 4:0:0:0: [sr0] tag#18 Add. Sense: Timeout on logical unit
[ 4732.776819] sr 4:0:0:0: [sr0] tag#18 CDB: Read(10) 28 00 00 00 2c ab 00 00 01 00
[ 4732.776821] blk_update_request: I/O error, dev sr0, sector 45740
[ 4732.776823] Buffer I/O error on dev sr0, logical block 11435, async page read*

答案1

抱歉。我终于自己找到了答案。这是我使用的:

sudo mount -t iso9660 /dev/cdrom /mnt/cdrom/

相关内容