溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Linux服務(wù)器---安裝samba

發(fā)布時(shí)間:2020-08-05 09:56:04 來(lái)源:ITPUB博客 閱讀:172 作者:一生有你llx 欄目:建站服務(wù)器

安裝samba  

1 、檢測(cè)samba是否安裝,如果沒有,那么可以使用yum來(lái)安裝。至少需要安裝3個(gè)軟件:samba, samba-client、samba-common

[root@localhost   pub]# rpm -qa | grep samba

samba-winbind-clients-3.6.9-164.el6.i686

samba-client-3.6.9-164.el6.i686

samba-common-3.6.9-164.el6.i686

samba4-libs-4.0.0-58.el6.rc4.i686

samba-winbind-3.6.9-164.el6.i686

[root@localhost   pub]# yum install y samba samba-client samba-common      // 如果沒有,那么可以用此命令安裝

 

2 、創(chuàng)建共享目錄

[root@localhost   /]# mkdir /wj        // 創(chuàng)建目錄

[root@localhost   /]# chmod 777 /wj   // 設(shè)置權(quán)限

 

3 、修改配置文件“/etc/samba/smb.cnf”

[root@localhost   /]# gedit /etc/samba/smb.conf

#   ----------------------- Standalone Server Options ------------------------

# Scurity can be   set to user, share(deprecated) or server(deprecated)

# Backend to   store user information in. New installations should

# use either   tdbsam or ldapsam. smbpasswd is available for backwards

# compatibility.   tdbsam requires no further configuration

    security   = share           // 這里默認(rèn)是 user ,改為 share ,這樣不用輸入密碼就可訪問(wèn)

    passdb backend = tdbsam

 

    [wj]                // 創(chuàng)建共享目錄配置

    comment=wj       // 名字

    path=/wj         // 路徑

    read only=no    // 是否只讀,這里為 no ,這樣用戶就可以創(chuàng)建文件夾

    guest ok=yes    // 是否允許 guest 用戶登錄

    browseable=yes // 是否可以瀏覽目錄

 

4 、修改防火墻,打開tcp的端口137、138、139、445

[root@localhost wj]# gedit /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m tcp -p tcp --dport 137 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 138 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT

 

 [root@localhost wj]# service iptables restart

iptables :將鏈設(shè)置為政策   ACCEPT filter nat                [ 確定 ]

iptables :清除防火墻規(guī)則:                                  [ 確定 ]

iptables :正在卸載模塊:                                    [ 確定 ]

iptables :應(yīng)用防火墻規(guī)則:                                  [ 確定 ]

iptables :載入額外模塊: nf_conntrack_ftp                   [ 確定 ]

 

5 、啟動(dòng)smb服務(wù)

[root@localhost   wj]# service smb start

啟動(dòng) SMB 服務(wù):                                             [ 確定 ]

 

6 、測(cè)試,在終端輸入命令“testparm”,可以看到共享目錄的信息

[root@localhost   wj]# testparm

Load smb config   files from /etc/samba/smb.conf

rlimit_max:   increasing rlimit_max (1024) to minimum Windows limit (16384)

Processing   section "[homes]"

Processing   section "[printers]"

Processing   section "[wj]"

WARNING: The security=share   option is deprecated

Loaded services   file OK.

Server role:   ROLE_STANDALONE

Press enter to   see a dump of your service definitions

[global]

    workgroup = MYGROUP

    server string = Samba Server Version %v

    security = SHARE

    log file = /var/log/samba/log.%m

    max log size = 50

    idmap config * : backend = tdb

    cups options = raw

 

[homes]

    comment = Home Directories

    read only = No

    browseable = No

 

[printers]

    comment = All Printers

    path = /var/spool/samba

    printable = Yes

    print ok = Yes

    browseable = No

 

[wj]

    comment = wj            // 名字

    path = /wj              // 路徑

    read only = No         // 是否只讀

    guest ok = Yes         // 是否允許 guest 訪問(wèn)

 

7 、從windows測(cè)試,按下快捷鍵“window+r”,在彈出的窗口輸入命令“smb:\\192.168.0.113”,可以看到本機(jī)的共享目錄

Linux服務(wù)器---安裝samba

Linux服務(wù)器---安裝samba




做了一個(gè)Linux學(xué)習(xí)的平臺(tái),目前出來(lái)一個(gè)雛形,各位可以參考使用
鏈接: https://pan.baidu.com/s/1GOLVU2CbpBNGtunztVpaCQ   密碼:n7bk

Linux服務(wù)器---安裝samba


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI