Solaris5.8 无法挂载光盘?
本来根据网上查到的资料,Solaris5.8下应该是把光盘放入光驱就会自动挂载的,但是放入光盘后没反应,输入命令:ps -fe | grep 'vold',得到:
root 237 1 0 16:48:15 ? 0:00 /usr/sbin/vold
说明vold是启动的
此时手动去挂载光盘:
mount -F hsfs -o ro /dev/dsk/c0t6d0s0 /tmp/cdrom
(其中c0t6d0s0 由命令 iostat -En 得来)
得到:
mount: /dev/dsk/c0t6d0s0 is already mounted, /tmp/cdrom is busy,
or allowable number of mount points exceeded
如果输入命令:
/etc/init.d/volmgt stop
再做mount,则得到:
mount: /dev/dsk/c0t6d0s0 no such device
很是头痛,大家帮忙分析一下问题可能出在哪里?
光盘在其他机器上是可以读的。
[解决办法]
mount: /dev/dsk/c0t6d0s0 is already mounted, /tmp/cdrom is busy,
or allowable number of mount points exceeded
说明光盘已经mount过了呀, cd /tmp/cdrom 下面有没有东西呢?
[解决办法]
你试下能不能umount的?
[解决办法]
用fuser看看/tmp/cdrom有没有被使用,再执行挂载