
Originally Posted by
Fatal Error
root@boxone:/home/bob# mount -t auto /dev/cdrom /mnt/floppy
mount: mount point /mnt/floppy is a symbolic link to nowhere
Sounds like, for some reason, your /mnt/floppy is a symlink somewhere, but the other end of that symlink doesn't exist. Why? I have no idea.
Try, as root:
Code:
mkdir /mnt/cdrom
mount /dev/cdrom /mnt/cdrom
assuming that /dev/cdrom is a link which points to the correct device. (/dev/hda being the primary master on the IDE chain, hdb == primary slave, hdc == secondary master, hdd == secondary slave)
Bookmarks