配置samba伺服器,建立共享目錄/sharesmb,屬於組groupsmb的具有讀寫的許可權,其他成員只有讀的許可權。
1.環境設定
hostnamectl set-hostname fengxiaoli41.com
systemctl stop firewalld.service
systemctl disable firewalld.service
setenforce 0
yum install -y samba samba-client
3.建立目錄和組
mkdir -p /sharesmb
groupadd -r groupsmb
chown .groupsmb /sharesmb/
chmod 2775 /sharesmb/
semanage fcontext -a -t samba_share_t '/sharesmb(/.*)?'
restorecon -rv /sharesmb/
4.修改主配置檔案
vim /etc/samba/smb.conf(修改
) workgroup = mygroup
security = user
passdb backend = tdbsam
[sharesmb]
path = /sharesmb
write list = @groupsmb
5.新建使用者fengxiaoli並且加入groupsmb組
useradd -s /sbin/nologin -g groupsmb fen
gxiaoli
smbpasswd -a fengxiaoli
新建使用者cx不加入組
useradd -s /sbin/nologin cx
smbpasswd -a cx
6.重啟服務
firewall-cmd --permanent --add-service=samba
systemctl restart smb nmb
7.windows上登入測試
在windows上用\\192.168.1.10登入
net use * /d (清楚使用者登入資訊)
redhat 上samba的安裝
1 檢視redhat上的安裝包 rpm qa grep samba 可以在該 搜尋 具體軟體包如下 samba 3.0.33 3.7.el5.i386.rpm samba client 3.0.33 3.7.el5.i386.rpm samba common 3.0.33 3.7.el5.i386....
Redhat 6 7上Samba伺服器的安裝及配置
在主機 redhat 6.7,ip 192.168.148.128上安裝samba伺服器 1 安裝 2 建立共享目錄 mkdir tmp samba share chmod 777 tmp samba share echo hello world tmp samba share smb.txt 3 ...
redhat9 samba安裝過程
b 協議 server message block 服務資訊塊 它是乙個高層協議,提供網路上不同計算機之間共享檔案 印表機和不同通訊資料的手段。b的原理是讓 netbios 協議和 b 協議執行在 tcp ip 上,並且使用 netbios 的名字解析器讓 linux 機器可以在 windows 網...