在kernel2.4下,用
ln -s /dev/scd0 /dev/cdrom,然後mount /dev/scd0 /mnt便可讀取cdrom
在2.6.0下仍可用mount /dev/scd0的方法.
可是在2.6.2下,在mount /dev/scd0 /mnt 出現mount: you must specify the filesystem type
然後再試mount -t iso9660 /dev/scd0 /mnt出現mount: /dev/scd0 is not a valid block device
在dmesg看到我的cdrom的位置為hdc,
再嘗試用ln -s /dev/hcd0 /dev/cdrom,然後mount /dev/hcd0 /mnt都仍出現相同的錯誤(當然/etc/fstab亦作相應的更改)
會不會與2.6後不再需要ide-scsi模擬有關,但奇怪在2.6.0下仍可用mount /dev/scd0的方法.
請問怎樣尋回適當的位置?