debian8.8建立samba服务器与win7共享文件

来源:互联网 发布:淘宝穿过的鞋子退货 编辑:程序博客网 时间:2024/06/04 20:03

在Debian安装好以下软件:

安装samba:    sudo apt-get install samba

安装smbclient:sudo apt-get install smbclient


2、修改配置文件

nano /etc/samba/smb.conf 编辑smb.conf 文件

  1.  增加

         [debian]

    path = /opt/share

    valid users = infly

    public = no

    writable = yes

    read only = no    

       重启samba            /etc/init.d/samba restart

      

      写配置文件时候可以用testparm命令检查配置文件语法是否正确

      注:infly已经是我debian系统中的一个用户名。若smbpasswd -a test,增加samba用户不是系统中的用户名,会出现提示Failed to add entry for user

[root@debian~]# smbpasswd -a test
New SMB password:
Retype new SMB password:
Failed to add entry for user test.


解决办法:
这是因为没有加相应的系统账号,所以会提示Failed to add entry for user的错误,只需增加相应的系统账号test就可以了:
[root@debian~]# groupadd test -g 6000
[root@debian~]# useradd test -u 6000 -g 6000 -s /sbin/nologin -d /dev/null


这时就可以用smbpasswd -a test增加test这个samba账号了!为了增加系统的安全性,所以加的系统账号不要给shell它,也不给它指定目录,到时在/home目录给test账号建个文件夹,该文件夹只有test有读写权限即可!
如:
[root@debian~]# mkdir /home/test
[root@debian~]# chown -R test:test /home/test


若不想让另人访问,只让test用户可以访问,只需执行命令:
[root@debian~]# chmod u+rwx,g+rwx,o-rwx /home/test


这时可以用smbpasswd命令增加samba账号test了
[root@debian~]# smbpasswd -a test
New SMB password:
Retype new SMB password:
Added user test.




阅读全文
0 0
原创粉丝点击