Ubuntu开机自动挂载SMB共享
转自:https://gythialy.github.io/How-to-Mount-a-SMB-Share-in-Ubuntu/
安装 CIFS Utils pkg
1
sudo apt-get install cifs-utils
创建一个挂载点
1
sudo mkdir /mnt/local_share
创建文件保存
~/.smbcredentials
来保存 SMB username和passwd1
2username=smb_share
password=share_password在
/etc/fstab
最后添加配置实现自动挂载1
2# /etc/fstab
//$smb_server/share /mnt/local_share cifs credentials=/home/$user/.smbcredentials,uid=1000,gid=1000,iocharset=utf8 0 0注:
$smb_server
为 SMB 服务器地址,$user
为当前用户名,uid/gid
为当前用户的uid
和gid
,可以通过id $(whoami)
查看
发表评论