yum install samba samba-client samba-swat
/etc/init.d/smb start/stop/restart
service smb status
chkconfig --level 35 smb on
sudo smbpasswd -a linghegu
1)關閉防火牆: #sevice iptables stop
2)修改 /etc/samba/smb.conf,具體配置網上有,我的如下:
security = share ---- 這個要用上,share表示安全最低級別,其次是user,最高是server
[共享目錄名]
path = /home/使用者名稱/共享目錄名
;read only = no -----這個需要在前面用分號注釋掉
writeable = yes
browseable = yes
public = yes
guest ok = yes
3)selinux作怪
修改/etc/sysconfig/selinux 把enforcing改成disabled;然後命令列setenforce 0;
或者用rainsome兄說的 使用selinux強制策略:chcon -r -t samba_share_t /home/suyang/"fedora samba"
4)修改目錄許可權 #chmod 777 /home/wind ; #chmod 777 /home/wind/smbshare; 特別是前面乙個做為上層目錄許可權也需要修改!!!!
5)重啟samba服務 #service smb restart 或者 /etc/rc.d/init.d/smb restart
搭建samba服務
samba 簡介 yum y install samba mkdir p samba test globol map to guest bad user 設定 test comment test 共享目錄的注釋 path samba test 共享目錄的路徑 browseable yes 共享目錄可...
搭建samba服務
你知道什麼是天才的訣竅嗎?那就是永遠只做一件事。linux中samba伺服器的搭建 使用的vmware12虛擬機器安裝的centos6.8和物理機上的windows10,實現在windows10 上訪問centos上的samba服務。一 先檢視系統中是否安裝有samba服務相關的軟體包。samba ...
samba服務搭建
檔案傳輸 smb主配置檔案 etc samba smb.conf?yum install samba samba client 要啟動smb和nmb服務 修改安全級別 security share hosts allow 允許訪問的網段 192.168.1.comment?是共享目錄的描述 path...