Latest web development tutorials

Linux testparm命令

Linux 命令大全 Linux命令大全

Linux testparm命令用於測試Samba的設置是否正確無誤。

執行testparm(test parameter)指令可以簡單測試Samba的配置文件,假如測試結果無誤,Samba常駐服務就能正確載入該設置值,但並不保證其後的操作如預期般一切正常。

語法

testparm [-s][配置文件][<主机名称><IP地址>]

參數說明 :

  • -s 不顯示提示符號等待用戶按下Enter鍵,就直接列出Samba服務定義信息。

實例

查看Ssmba配置

# testparm     
Load smb config files from /etc/samba/smb.conf
Processing section '[homes]'
Processing section '[printers]'
Processing section '[uptech]'
Processing section '[home]'
Loaded services file OK.
Server role: ROLE_STANDALONE
Press enter to see a dump of your service definitions
      ///按下回车继续
# Global parameters
[global]
workgroup = MYGROUP
server string = Samba Server
security = SHARE
encrypt passwords = No
password server = None
log file = /var/log/samba/%m.log
max log size = 50
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
printcap name = /etc/printcap
dns proxy = No
idmap uid = 16777216-33554431
idmap gid = 16777216-33554431
cups options = raw

[homes]
comment = Home Directories
read only = No
browseable = No

[printers]
comment = All Printers
path = /var/spool/samba
printable = Yes
browseable = No

[uptech]
comment = *
path = /home/uptech
read only = No
guest ok = Yes

[home]
comment = *
path = /home
read only = No
guest ok = Yes

Linux 命令大全 Linux命令大全