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

  • 相关阅读:
    vsphere中虚机的cpu热插拔和内存热添加
    vsphere storage appliance工作原理和实施
    vmware产品框架-计算中心,5.1更新等
    vcenter建立cluster
    vcenter 5.1安装亲历
    openfiler在esxi下的安装配置
    升级华为s2016
    ubuntu下配置华为交换机s2016
    Fibre Channel address weaknesses
    vsphere HA内幕变化
  • 原文地址:https://www.cnblogs.com/zhoug2020/p/2430082.html
Copyright © 2011-2022 走看看