Just learned how to mount samba for my backup. Before any backup operation, i need to mount my samba network drive from my Mac book. Here’s the command line version of how to mount samba in Mac OS.
To mount samba in Mac OS X, you can use the command below:-
Advertisements
$ mount -t smbfs //user@your.samba.server/sharedirectory /Volumes/local_mount_dir
* You can replace /Volumes/local_mount_dir to your choice. (ex: /Volumes/sambashare)
Once you mount the samba network drive, you can start accessing your samba drive files thru /Volumes/local_mount_dir.
In case you want to unmount the samba network drive, you can use the command below:-
$ umount /Volumes/local_mount_dir
Happy mounting.
Related posts:
Debian: "There is no public key available for the following key IDs"
How to delete all .svn folder in Linux / Mac?
How to install flash player in Ubuntu
Secure file transfer thru scp in Mac and Linux
How to crop image in Mac OS X
How to create password protected zip file in Mac OS X
How to switch from 3D Dock to 2D in Mac OS X
How to install SVN 1.6 on CentOS 5
Share this with your friends:-