前言:
当前我们对“ubuntumountcifs”都比较注意,咱们都想要分析一些“ubuntumountcifs”的相关知识。那么小编也在网摘上网罗了一些有关“ubuntumountcifs””的相关文章,希望姐妹们能喜欢,咱们一起来了解一下吧!一、centos挂载windows文件夹
格式:
mount -t cifs //IP/share-folder /mnt-point -o username=your-username,passwd=your-password
或者
mount //192.168.1.100/www /usr/local/nginx/html/ -o username="你的window管理员账号",password="你的window管理员密码",vers=2.0
把windows(192.168.230.1)下F分区(或者是一个文件夹)共享给用户user(密码为password),确保在cmd中输入\\192.168.230.1可以看到该共享文件夹
[root@client mnt]# mount -t cifs //192.168.230.1/f /mnt/share/ -o username=user,passwd=password
[root@client mnt]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 18G 2.5G 15G 15% /
tmpfs 137M 0 137M 0% /dev/shm
/dev/sda1 291M 32M 244M 12% /boot
.host:/ 40G 28G 13G 70% /mnt/hgfs
//192.168.230.1/f 3.9G 48M 3.8G 2% /mnt/share
重启机器,发现居然没用。需要在 rc.local 增加一句
chmod +x /etc/rc.d/rc.local
继续 重启centos7
发现挂载成功。
二、Ubuntu挂载windows10文件夹
方式一
格式:
sudo mount.cifs //192.168.1.112/Workspace mnt/ -o user=lcg,pass=123456,file_mode=0777,dir_mode=0777
比如:
mount -t cifs -o username=administrator,passwd=,uid="1000",gid="1000" //192.168.0.102/workspace /home/develop
在window10下建好共享文件夹,开始是windows下有防火墙设置,从linux运行挂载共享文件夹报错连不上或拒绝可以看出。那还说什么,干脆直接关掉防火墙。
方式二
1.挂载win硬盘
sudo mount -t cifs -o username=afree,password=123456 //192.168.67.105/oooo/ /www/wwwroot/share/mywindows/
2.设置win10共享文件夹
选中win10文件夹 右键选择共享 创建用户账号密码 分配用户权限
3.ubuntu安装 Samba
安装samba
sudo apt-get install samba
//打开配置文件
sudo vim /etc/samba/smb.conf
[share]
path = /www/wwwroot/shareavailable = yesbrowseable = yespublic = yeswritable = yesvalid users = afree
//创建文件夹
mkdir sharechmod -R 777 ./*sudo touch /etc/samba/smbpasswd
//添加用户设置密码
sudo smbpasswd -a afree
//重启
sudo /etc/init.d/samba restart
标签: #ubuntumountcifs