工作中需要经常从一个file server 上copy 文件。于是配置了一下 samba, 使本地的一个文件夹挂载 file server 上的某个文件夹。
首先在本地建一个文件夹:
/home/12/345
sudo 编辑 /etc/fstab, 加上下面的语句:
//shwde7xxx.ccr.corp.xxxxx.com/SE_DailyBuild /home/12/345 cifs auto, username=gli16,password=xxxxx 0 0
然后保存,退出,运行命令:
sudo mount -a
那么 /home/12/234 这个文件夹下就会有 file server 上的 SE_DailyBuild 的映射。
如果mount 出错,可能还需要装一些 package, 比如:
sudo apt-get install cifs-utils
CIFS: common internet file system.