Friday, January 11, 2008

Mount network share from linux

Was able to mount a NAS drive share very easily.

1. Open the Adept Manager
2. Install smbfs (which installed samba-common)
3. At the command line use 'mount -t smbfs //[Share IP]/[path] /mnt/nas
4. Add alias in .bashrc file for quickly mounting share
alias mountnas='mount -t smbfs //[Share IP]/[path] /mnt/nas'

I'll add more on samba as I do more with it...

1 comment:

Anonymous said...

Good for people to know.