QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 3150|回复: 40

这是我的 smb.conf,有什么错误吗?

[复制链接]
发表于 2004-12-10 16:23:49 | 显示全部楼层 |阅读模式
原贴标题:help my smb.conf ,any wrong? -- dannycat

[global]

   workgroup = MYGROUP

   server string = Samba Server

   hosts allow = 192.168.0.  127.

   printcap name = /etc/printcap
   load printers = yes

;   printing = cups

cups options = raw

;  guest account = pcguest

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

   max log size = 50

   security = user

;   password server = <NT-Server-Name>

;  password level = 8
;  uname level = 8


;  encrypt passwords = yes
  smb passwd file = /etc/samba/smbpasswd


;  unix password sync = Yes
;  passwd program = /usr/bin/passwd %u
;  passwd chat = *New*UNIX*password* %n\n *ReType*new*UNIX*password* %n\n *passwd:*all*authentication*tokens*updated*successfully*

;  uname map = /etc/samba/smbusers

;   include = /etc/samba/smb.conf.%m

   socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192

;   interfaces = 192.168.0.1/24  

;   remote browse sync = 192.168.3.25 192.168.5.255

;   remote announce = 192.168.1.255 192.168.2.44

   local master = yes

;   os level = 33

   domain master = yes

  preferred master = yes

   domain logons = yes

;   logon script = %m.bat

;   logon script = %U.bat

;   logon path = \\%L\Profiles\%U

; name resolve order = wins lmhosts bcast


  wins support = yes

;   wins server = w.x.y.z

;   wins proxy = yes

   dns proxy = no

;  preserve case = no
;  short preserve case = no

;  default case = lower

;  case sensitive = no

   idmap uid = 16777216-33554431
   idmap gid = 16777216-33554431
   template shell = /bin/false
   winbind use default domain = no
[homes]
   comment = Home Directories
   browseable = no
   writable = yes

; [netlogon]
;   comment = Network Logon Service
;   path = /home/netlogon
;   guest ok = yes
;   writable = no
;   share modes = no


;[Profiles]
;    path = /home/profiles
;    browseable = no
;    guest ok = yes

[printers]
   comment = All Printers
   path = /var/spool/samba
   browseable = no

   guest ok = no
   writable = no
   printable = yes


;[tmp]
;   comment = Temporary file space
;   path = /tmp
;   read only = no
;   public = yes

;[public]
;   comment = Public Stuff
;   path = /home/samba
;   public = yes
;   read only = yes
;   write list = @staff
发表于 2004-12-10 16:46:35 | 显示全部楼层
你先用:
#smbpasswd -a user
将一个系统用户加成smb用户在说。
你现在做的是PDC,首先要保证你的局域网里没有别的PDC!
回复

使用道具 举报

 楼主| 发表于 2004-12-11 08:23:16 | 显示全部楼层
我加了,但不好用.
SMB的服务名是什么?我用NTSYSV没有发现.
怎么检查SMB服务已安装,怎么检查SMB服务是否启动?
怎样重启?
回复

使用道具 举报

发表于 2004-12-13 10:53:13 | 显示全部楼层
查SMB服务:
#ps aux | grep smb
可以看到SMB的PID
重启SMB:
#smbd restart
#nmbd restart
nmbd是samba的名字服务。

做PDC应该是这样的:
[global]
...
local master = yes

os level = 66

domain master = yes

preferred master = yes

domain logons = yes
回复

使用道具 举报

 楼主| 发表于 2004-12-13 13:19:36 | 显示全部楼层
[root@localhost ~]# ps aux | grep smb
root      2951  0.0  0.5  5500  660 pts/1    S+   13:05   0:00 grep smb
[root@localhost ~]# smbd restart
bash: smbd: command not found
what's wrong?
回复

使用道具 举报

 楼主| 发表于 2004-12-13 13:20:46 | 显示全部楼层
what's it means?
回复

使用道具 举报

发表于 2004-12-13 14:16:49 | 显示全部楼层
samba没有运行!
试试#smbd start
回复

使用道具 举报

 楼主| 发表于 2004-12-14 15:09:22 | 显示全部楼层
[root@localhost ~]# smbd start
bash: smbd: command not found
是不是SAMBA 服务没有安装啊?怎样检测呢?

[root@localhost ~]# ps aux | grep smb
root 2951 0.0 0.5 5500 660 pts/1 S+ 13:05 0:00 grep smb
代表SAMBA服务已安装吗?
回复

使用道具 举报

发表于 2004-12-14 15:51:15 | 显示全部楼层
samba服务器没有安装。
#rpm -qa samba
查查。
回复

使用道具 举报

 楼主| 发表于 2004-12-15 13:18:13 | 显示全部楼层
1.不安装SAMBA 也会有SAMBA的目录吗?包括CONFIG文件?
2.我下载了SAMBA3.0 ,也./CONFIG MAKE MAKE INSTALL,也没有出现任何错误提示,我不知道问题出在哪?
3.不安装SAMBA 也能访问WINDOWS的机器吗?我现在使用网络邻居都没问题!
感谢BWB!望继续赐教!!
回复

使用道具 举报

发表于 2004-12-15 18:17:16 | 显示全部楼层
1  不安装不会有samba的目录,但是如果是用tarball装的,则rpm -qa | grep -i "smb"没有输出

2  不管问题出在哪里,请先看日志,如果没有定义日志,请在配置文件里写上:)

3  好象不装不行
回复

使用道具 举报

 楼主| 发表于 2004-12-16 08:19:45 | 显示全部楼层
那我就晕了!
1.我的网络邻居是好的;
2.我也有SAMBA目录;
3.我却无法启动SMB;
非要从添加/删除程序安置才好?
是不是编译的参数有问题?我没加任何参数!
请赐教!
回复

使用道具 举报

发表于 2004-12-16 09:26:05 | 显示全部楼层
不装肯定没有,我觉得是装了但没有起来。
回复

使用道具 举报

发表于 2004-12-16 13:12:17 | 显示全部楼层
service smb restart
回复

使用道具 举报

 楼主| 发表于 2004-12-16 15:30:38 | 显示全部楼层
[root@localhost ~]# rpm -qa | grep -i "smb"
gnome-vfs2-smb-2.8.2-8
pam_smb-1.1.7-5

what's it means?
my os is fc3
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-6 17:24 , Processed in 0.083516 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表