AIX 上的 Samba全攻略(3)

# testparm /usr/lib/smb.conf

Load smb config files from /usr/lib/smb.conf

Processing section "[tmp]"

Processing section "[public]"

Loaded services file OK.

Server role: ROLE_STANDALONE

Press enter to see a dump of your service definitions

[global]

workgroup = USERS

[samba]

path = /samba

测试连接

在 AIX 计算机上,可以使用 smbclient 实用程序列出到共享的连接:

# smbclient -L //beas.in.ibm.com/samba

Password:

Anonymous login successful

Domain=[USERS] OS=[UNIX] Server=[Samba 3.0.25b]

Sharename       Type      Comment

---------       ----      -------

tmp             Disk

public          Disk

IPC$            IPC       IPC Service (Samba 3.0.25b)

Anonymous login successful

Domain=[USERS] OS=[UNIX] Server=[Samba 3.0.24]

Server               Comment

---------            -------

BEAS                 Samba 3.0.24

Workgroup            Master

---------            -------

USERS

还可以使用 smbclient 实用程序连接共享:

# smbclient //beas.in.ibm.com/samba -U root

Password: Domain=[BEAS] OS=[UNIX] Server=[Samba 3.0.24]

smb: \>

可以用以下命令检查当前目录:

smb: \> pwd

Current directory is \\beas.in.ibm.com\samba

关闭服务器

可以用以下命令关闭 Samba 服务器:

smbcontrol smbd shutdown

smbcontrol nmbd shutdown

中断共享的连接

可以用以下命令中断共享的连接:

smbcontrol <process id of smbd> close-share <sharename>

例如:

# smbcontrol 352494 close-share homes

# smbcontrol 352494 close-share  guest

注意,如果在客户机中打开了任何文件,这些命令就不生效。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyxwpy.html