当前位置:   article > 正文

Debian(Linux)系统Samba安装和配置_failed to start smb.service: unit smb.service not

failed to start smb.service: unit smb.service not found.

samba安装

  1. root用户下直接使用以下命令

     apt-get install samba
    
    • 1
  2. 若是普通用户下使用以下命令

     sudo apt-get install samba
    
    • 1

samba配置

samba的配置文件在/etc/samba/路径下,文件名为smb.conf,注意需要root用户权限才能编辑该文件,我是用root用户下使用vim进行编辑修改的。
在文件末尾添加以下内容

[test]
	comment = samba test
	path = /home/d/share //共享文件路径
	browseable = yes
	read only = no
	guest ok = yes
	writable = yes
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

添加samba用户

smbpasswd -a 用户名
接着需要两次输入密码
此处设置的用户和密码,是用来登录用的
  • 1
  • 2
  • 3
可能出现的错误
  1. 执行smbpasswd有可能会出现以下错误:

     bash: smbpasswd: command not found
    
    • 1

    解决办法:出现该错误表示samba-client没有安装

     执行命令apt-get install samba-client
    
    • 1
  2. 执行samba-client命令可能会出现以下错误:

     smbclient: Depends: libwbclient0 (= 2:4.5.16+dfsg-1+deb9u1) but 2:4.5.16+dfsg-1+deb9u2 is to be installed
    
    • 1

    解决办法:

     执行命令 apt-get autoremove libwbclient0 //卸载之前安装的版本
     执行命令 apt-get install libwbclient0=2:4.5.16+dfsg-1+deb9u1 //安装所需要的版本
    
    • 1
    • 2

    通过以上命令即可解决问题,此时可以执行apt-get install samba-client,将成功安装samba-client

起动samba服务

使用命令 systemctl start smb
执行以上命令会报错:Failed to start smb.service: Unit smb.service not found
到目录/etc/init.d目录下可以发现没有smb文件,但可以发现smnd和nmbd文件,使用这两个执行文件来起动samba服务,执行以下命令:

systemctl restart smbd.service nmbd.service
  • 1

若执行上述命令时,出现以下错误:

Failed to restart smbd.service: Unit smbd.sercvice not found
Failed to restart nmbd.service: Unit nmbd.service not found
  • 1
  • 2

出现上述错误的原因是因为samba没有安装成功,因此需要执行apt-get install samba,重新安装samba,安装完成以后,再执行以上命令,即可成功起动samba服务

若要查看samba服务是否起动成功,只需要执行命令systemctl status smbd.service,执行该命令后,可以在终端上看到active(running),表明samba服务已经起动成功。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/182434
推荐阅读
相关标签
  

闽ICP备14008679号