To mount a Samba (
Windows) file share to a folder in
Ubuntu Linux, you need to have
Samba Filesystem Support installed. The easiest way to do this is through
apt-get on the command line:
sudo apt-get install smbfs
After the installation has finished, create a directory that the Samba share will be mounted to (
e.g. ‘windows_share‘ in the ‘/media‘ directory):
sudo mkdir /media/windows_share
Finally, use the
mount command to mount the remote shared folder to your newly created directory (
change the IP address, paths, username and password in the example below as needed):
sudo mount -t smbfs //10.0.0.100/shared_folder/ /media/windows_share
-o username=Guest,password=
sudo mount -t smbfs //111.2.1.148/home/ /media/111_2_1_148/
-o username=luke,password=
To unmount the Samba share, use the
umount command (
change the path in the example below as needed):
sudo umount /media/windows_share
To automatically mount the Samba share when you boot up your computer, you’ll need to edit your
/etc/fstab file as detailed on
this page on the Ubuntu Forums.
For more detailed usage information on the
mount and
umount commands as well as
fstab, see their
man pages:
0 意見:
張貼留言