2008-06-10, 01:22 PM
This is wrong:
It should be:
Notice the omitted backslashes.
Blue Racer Wrote:mkdir /mnt/\\D\:\\
mount -t cifs //192.168.0.4/dvd /mnt/\\D\:\\ -o username=guest,ro
It should be:
Code:
mkdir /mnt/D:\\
mount -t cifs //mydvd_IP/dvds /mnt/D:\\ -o username=guest,ro
Notice the omitted backslashes.