Mount a windows share on Linux
January 15th, 2009
Login on the linux system with sufficient rights:
Create a share in the mount directory (/mnt):
root# mkdir /mnt/SHARE
Make a connection to the server:
root# mount -t smbfs -o username=arjen \\SERVER\SHARE /mnt/SHARE
View your files:
root# ls /mnt/share
Release the share:
root# umount /mnt/share
Thats all folks!