The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 08-31-2007
cassj's Avatar
cassj cassj is offline
Supporter
 

Join Date: Jul 2003
Location: Interweb
Posts: 107
For mounting a Windows network share, this works like a charm for me:

Code:
sudo mount -t cifs //path/to/your/server /mnt/windows -o username=yourUserName,password=yourPassword,iocharset=utf8,file_mode=0777,dir_mode=0777
NOTE: the directory "/mnt/windows", your local mount point, must already exist. I name mine based on whatever network share I'm mounting.
Reply With Quote