Tuesday, August 31, 2010

Mounting Samba drive in Linux

Samba allows file and print sharing between computers running Windows and computers running Unix.
Samba sets up network shares for chosen Unix directories (including all contained subdirectories). These appear to Microsoft Windows users as normal Windows folders accessible via the network. Unix users can either mount the shares directly as part of their file structure using the smbmount command OR can use a command line utility, smbclient (libsmb) installed with Samba to read the shares.


Fedora/RH linux
  uses Common Internet File System (CIFS)
yum search cifs
yum install cifs-utils.i686 samba4.i686
sudo mount.cifs //172.1.1.1/dir /mnt/win-dir -o username=myuser


Ubuntu
  uses smbfs
sudo apt-get install smbfs
sudo mount -t smbfs //172.1.1.1/dir /mnt/win-dir -o username=myuser


  Another utility is smbmount
sudo smbmount //172.1.1.1/dir /mnt/win-dir -o username=myuser

No comments:

Post a Comment