zoukankan      html  css  js  c++  java
  • ubunt 下 配置samba 服务器

    一. samba的安装:

    sudo apt-get insall samba
    sudo apt-get install smbfs


     

    二。修改/etc/samba/smb.conf

    sudo gedit /etc/samba/smb.conf

    在smb.conf最后添加

    [myShare]
    comment = Shared Folder with username and password
    path = /home/wangy
    writeable = yes
    browseable = yes
    guest ok = yes

    create mask = 0777
    directory mask = 0777
    available = yes

    public=no     //no表示除了user1这个用户,其它用户在进入samba服务器后看不见wangy这个目录,如果为yes,虽然能看见wangy这个目录,但除了user1这个用户能进入这个目录,其它人进不了。

    为了使gesst用户可以访问,还要将security 设定为share


    ####### Authentication #######

    # "security = user" is always a good idea. This will require a Unix account
    # in this server for every user accessing the server. See
    # /usr/share/doc/samba-doc/htmldocs/Samba3-HOWTO/ServerType.html
    # in the samba-doc package for details.
    #   security = user
    security = share

    三  修改共享目录/home/wangy权限

    cd /home/wangy

    sudo chmod -R 777 /home/wangy

    四.重新启动服务

    sudo service samba restart

    其他命令

    sudo service samba start

    sudo service samba stop

    #/etc/init.d/samba restart
    #/etc/init.d/samba start

    #/etc/init.d/samba stop

  • 相关阅读:
    关于iframe页面里的重定向问题
    iframe跨域解决方案
    sql 查询优化小计
    年轻不能遇见太惊艳的人
    图片上传预览
    脚本
    前端常见跨域解决方案
    react
    react高阶组件
    React + MobX 状态管理入门及实例
  • 原文地址:https://www.cnblogs.com/zhoug2020/p/2430082.html
Copyright © 2011-2022 走看看