Samba伺服器搭建與配置例項

2021-09-25 13:41:35 字數 3580 閱讀 4191

1.掛載光碟

2.檢視是否安裝samba:rpm -qa|grep samba

3.安裝smb伺服器的軟體依賴:rpm -ivh /media/server/perl-convert-asn1-0.20-1.1.noarch.rpm

4.安裝smb:rpm -ivh /media/server/media/server/samba/-3.0.33-3.14.e15.i386.rpm

5.如果要安裝web配置工具samba-swat-3.0.33-3.14.el5.i386.rpm需要先安裝依賴:xinetd-2.3.14-10.el.i386.rpm

smb服務配置檔案:/etc/samba/smb.conf

忽略注釋行 顯示配置引數:grep -v 「#」 /etc/samba/smb.conf |grep -v 「;」

啟動smb

檢查配置是否正確:testparm

啟動:service smb start

重啟:service smb restart

自啟:ntsysv

修改主機名:/etc/sysconfig/network

設定「hostname」

pdbedit  

-l 檢視samba使用者

-a 建立使用者

-x 刪除使用者

smbpasswd -a -x同理

1、關閉selinux

2、cp smb.conf smb.conf.bak

3、修改主配置檔案:vim smb.conf

4、重啟服務:service smb restart

[global]

workgroup=workgroup

security=share

[tmp]

path=/tmp

writable=yes

guest ok=yes

[global]

workgroup=workgroup

security=user

[homes]

comment=home directory

browseable=no

writable=yes

[global]

workgroup=workgroup

[homes]

comment=home directory

browseable=no

writable=yes

[tmp]

path=/tmp

writable=yes

[helen-jerry]

path=/var/samba/hel-jerry

valid user=helen jerry

workgroup =改為和windows乙個組

server string =伺服器描述

security =share

[share]

comment =描述

path =共享路徑

public =yes 是否允許匿名訪問

修改主配置檔案vim smb.conf

security = user

啟用日誌功能:去掉log file =/var/log/samba/%m.log的注釋

max log size =50

[user]

comment =描述

path =共享路徑

valid user = jerry 允許訪問的使用者

write list = jerry 有寫許可權的使用者

注意:共享目錄的所屬者改為允許訪問的使用者

chown jerry /home/user

smbpasswd -a jerry 新增samba使用者

useradd tom

smbpasswd -a tom

vim smb.conf

security =user

[homes]

comment = home directories

browseable = no其它使用者不可見

writable =yes

valid users = %s 可用的使用者

groupadd teachers

groupadd students

tom jack為學生

usermod -g students tom

usermod -g students jack

useradd -g teachers zhang

useradd -g teachers wang

smbpasswd -a zhang

smbpasswd -a wang

mkdir /home/student

chgrp students /home/student/

chmod 757 /home/student/

chmod g+s /home/student/

security =user

[student]

comment =student

path = /home/student

valid users = @students @teachers

write list = @teachers

groupadd sales

groupadd market

批量為sales組裡新增使用者:tom jack

samba伺服器配置

批量為market組裡新增使用者zhang wang

samba伺服器配置

建立總經理

useradd ceo

smbpasswd -a ceo

mkdir /home/sales

mkdir /home/markets

chgrp sales /home/sales

chgrp markets /home/markets

chmod g+s /home/sales/

chmod g+s /home/markets/

chown ceo /home/sales/

chown ceo /home/markets/

chmod 770 /home/sales/

chmod 770 /home/markets/

security =user

注釋掉[home]和列印[print]

samba 伺服器搭建配置 Ubuntu

attention samba是linux系統上的一種檔案共享協議,可以實現windows系統訪問linux系統上的共享資源,現在介紹一下如何在ubuntu 14.04上安裝和配置samba 2.1 更新資源列表 開啟終端,輸入sudo apt get update,執行 按下回車 2.2 安裝sa...

Samba伺服器搭建

samba伺服器是檔案伺服器的一種,這是一種搭建在linux系統上的。下面我們以centos7.0為例 下面詳細的說明一下搭建過程 a 以設定 學術資料 分享為例,需要設定乙個可讀寫管理員給學術負責人,乙個唯讀來賓給tgb學生。b 設定管理使用者為xueshu 密碼為123 c 設定tgb學術使用者...

搭建samba伺服器

檢視samba版本 1.使用yum安裝samba服務 yum install samba 3.6.9 164.el6.x86 64 2.配置samba 共享乙個目錄,使用使用者名稱和密碼登入後才可以訪問,要求可以讀寫 開啟samba的配置檔案vi etc samba smb.conf global ...