当前位置:  技术问答>linux和unix

samba设置后98下不能访问共享目录

    来源: 互联网  发布时间:2015-03-06

    本文导语:  samba设置后,在98下不能访问共享目录,提示找不到网络路径,找了很久也没有查明原因,只好贴出smb.conf内容请高手指教。 [global] # workgroup = NT-Domain-Name or Workgroup-Name    workgroup = workgroup     netbios name = lin...

samba设置后,在98下不能访问共享目录,提示找不到网络路径,找了很久也没有查明原因,只好贴出smb.conf内容请高手指教。

[global]

# workgroup = NT-Domain-Name or Workgroup-Name
   workgroup = workgroup 
   netbios name = linux
# server string is the equivalent of the NT Description field
   server string = Samba Server

   hosts allow = 192.168.1. 192.168.2. 127.

   printcap name = /etc/printcap
   load printers = yes

   printing = lprng

;  guest account = pcguest

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

   max log size = 0

# Security mode. Most people will want user level security. See
# security_level.txt for details.
   security = share

#   password server = *
;   password server = 

# Password Level allows matching of _n_ characters of the password for
# all combinations of upper and lower case.
;  password level = 8
;  username level = 8

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

# The following is needed to keep smbclient from spouting spurious errors
# when Samba is built with support for SSL.
;   ssl CA certFile = /usr/share/ssl/certs/ca-bundle.crt

;  unix password sync = Yes
;  passwd program = /usr/bin/passwd %u
;  passwd chat = *New*password* %nn *Retype*new*password* %nn *passwd:*all*authentication*tokens*updated*successfully*

# Unix users can map to different SMB User names
;  username map = /etc/samba/smbusers

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


;  obey pam restrictions = yes

# Most people will find that this option gives better performance.
# See speed.txt and the manual pages for details
   socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192

# Configure Samba to use multiple interfaces
# If you have multiple network interfaces then you must list them
# here. See the man page for details.
;   interfaces = 192.168.0.2/24 192.168.0.2/24 

# a specific host or from / to a whole subnet (see below)
;   remote browse sync = 192.168.3.25 192.168.5.255
# Cause this host to announce itself to local subnets here
;   remote announce = 192.168.1.255 192.168.2.44

;   local master = no

# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
;   os level = 33

;   domain master = yes 

;   preferred master = yes

# Enable this if you want Samba to be a domain logon server for 
# Windows95 workstations. 
;   domain logons = yes

# if you enable domain logons then you may want a per-machine or
# per user logon script
# run a specific logon batch file per workstation (machine)
;   logon script = %m.bat
# run a specific logon batch file per username
;   logon script = %U.bat

# Where to store roving profiles (only for Win95 and WinNT)
#        %L substitutes for this servers netbios name, %U is username
#        You must uncomment the [Profiles] share below
;   logon path = \%LProfiles%U

# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
;   wins support = no

# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
;   wins server = w.x.y.z

# WINS Proxy - Tells Samba to answer name resolution queries on
# behalf of a non WINS capable client, for this to work there must be
# at least one WINS Server on the network. The default is NO.
;   wins proxy = yes

   dns proxy = no 

# Case Preservation can be handy - system default is _no_
# NOTE: These can be set on a per share basis
;  preserve case = no
;  short preserve case = no
# Default case is normally upper case for all DOS files
;  default case = lower
# Be very careful with case sensitivity - it can break things!
;  case sensitive = no

#============================ Share Definitions ==============================
[homes]
   comment = Home Directories
   browseable = no
   writable = yes
   valid users = %S
   create mode = 0664
   directory mode = 0775
# If you want users samba doesn't recognize to be mapped to a guest user
; map to guest = bad user


# Un-comment the following and create the netlogon directory for Domain Logons
; [netlogon]
;   comment = Network Logon Service
;   path = /usr/local/samba/lib/netlogon
;   guest ok = yes
;   writable = no
;   share modes = no


# Un-comment the following to provide a specific roving profile share
# the default is to use the user's home directory
;[Profiles]
;    path = /usr/local/samba/profiles
;    browseable = no
;    guest ok = yes


# NOTE: If you have a BSD-style print system there is no need to 
# specifically define each individual printer
[printers]
   comment = All Printers
   path = /var/spool/samba
   browseable = no
# Set public = yes to allow user 'guest account' to print
   guest ok = no
   writable = no
   printable = yes

# This one is useful for people to share files
;[tmp]
;   comment = Temporary file space
;   path = /tmp
;   read only = no
;   public = yes

# A publicly accessible directory, but read only, except for people in
# the "staff" group
[public]
   comment = Public Stuff
   path = /usr/public/
   public = yes
   writable = yes
   printable = yes
   write list = @staff
   guest ok = yes

# Other examples. 
#
# A private printer, usable only by fred. Spool data will be placed in fred's
# home directory. Note that fred must have write access to the spool directory,
# wherever it is.
;[fredsprn]
;   comment = Fred's Printer
;   valid users = fred
;   path = /home/fred
;   printer = freds_printer
;   public = no
;   writable = no
;   printable = yes

# A private directory, usable only by fred. Note that fred requires write
# access to the directory.
;[fredsdir]
;   comment = Fred's Service
;   path = /usr/somewhere/private
;   valid users = fred
;   public = no
;   writable = yes
;   printable = no

# a service which has a different directory for each machine that connects
# this allows you to tailor configurations to incoming machines. You could
# also use the %U option to tailor it by user name.
# The %m gets replaced with the machine name that is connecting.
;[pchome]
;  comment = PC Directories
;  path = /usr/local/pc/%m
;  public = no
;  writable = yes

# A publicly accessible directory, read/write to all users. Note that all files
# created in the directory by users will be owned by the default user, so
# any user with access can delete any other user's files. Obviously this
# directory must be writable by the default user. Another user could of course
# be specified, in which case all files would be owned by that user instead.
;[public]
;   path = /usr/somewhere/else/public
;   public = yes
;   only guest = yes
;   writable = yes
;   printable = no

# The following two entries demonstrate how to share a directory so that two
# users can place files there that will be owned by the specific users. In this
# setup, the directory should be writable by both users and should have the
# sticky bit set on it to prevent abuse. Obviously this could be extended to
# as many users as required.
;[myshare]
;   comment = Mary's and Fred's stuff
;   path = /usr/somewhere/shared
;   valid users = mary fred
;   public = no
;   writable = yes
;   printable = no
;   create mask = 0765

|
试一下把browseable = no改为yes.

    
 
 

您可能感兴趣的文章:

  • samba设置后,在winxp中可以看到samba的工作组,可是看不到samba机器!
  • RedHat7.3中samba设置问题
  • samba服务器在主菜单的服务器设置处找不到
  • 救命呀!关于Samba设置共享目录的问题!
  • 如何设置samba
  • 如何设置samba里的share等级共享多个目录(path)
  • 请问在solaris下用samba设置文件共享问题
  • linux如何进行samba的设置
  • 请问samba如何设置才能和windows相联?
  • 为何win2000访问samba server提示]:此账号为得到工作站的登陆的授权?如何设置
  • 各位大侠,小弟请教个问题:SAMBA中如何设置ROOT作客户端用户名登陆?
  • windows xp下无法访问redhat 9上samba设置的共享文件,急啊!
  • samba 如何设置访问时要密码,
  • 帮忙阿,困了我好久了,为什么我设置samba的时候,在2000下能看见但是却访问不了呢
  • [SAMBA问题]文件无法写入及多组权限设置
  • 谁能给我一个设置fedora10 linux Samba的实例,以及步骤?行的通分全给他。
  • 为啥我的Samba设置完了以后共享目录不是建的文件夹而是用户的home目录
  • 请教如何让Samba用户,, 不能登陆系统?
  • samba不能访问带密码的windows2000资源
  • samba不能显示中文
  • samba共享中不能写入文件
  • 能不能另外写一个samba的配置文件,来代替现在的smb.conf文件
  • 关于一个samba服务,子目录不能写的问题
  • 虚拟机的samba怎么不能用
  • 能不能另外写一个samba的配置文件,来代替现在的smb.conf文件?
  • 为什么我的/etc/samba/smb.conf文件不能编辑?
  • 想实现samba能写不能删这么难吗?
  • 我安装Samba 3.0.4,能够使用smbclient进行登陆,可是不能使用windowsXP进行登陆
  • 用samba共享,xp能看見及進入文件夾但不能看到任何文件?
  • samba服务器加入windows域,域用户不能登录系统
  • Fedora配置samba个人目录不能访问,但共享目录可以访问
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 关于samba访问windows共享目录
  • 怎么让windows用户不用登陆就可以查看并使用samba的共享目录?
  • linux下配置samba,共享根目录怎么会木有操作权限
  • samba我想做3个目录,其中两个分别是不同的帐号和密码,第三个除只能是只读外无任何限制,
  • 为什么samba无法共享自己的目录?
  • ret hat linux 9,samba配置,在xp里只能看到打印机他传真机,看不到共享的目录,哪位兄台能指点?
  • 我的redhat 8 的 samba 为什么只能看到mygroup却看不到机器和目录呢??
  • windows无法通过samba访问linux共享目录
  • 小型Samba套件 Samba TNG
  • 我在安装REDHAT 7.3 时忘了安装SAMBA,请问那里有SAMBA下载,多谢!(在线等待)
  • samba:打开samba服务器上的文件,提示"指定的网络名不再可用",或"对*的访问被拒绝"
  • 我的SAMBA启动了,但是为什么在WINDOWS里只能看到它工作组名,却看不到SAMBA服务器的计算机名?
  • linux如何进行samba的设置 iis7站长之家
  • fedora13 下samba服务的问题
  • 请教:关于samba的安装问题
  • 有关samba启动的问题
  • 安装samba出问题了,请高手帮忙!
  • samba添加用户问题
  • samba无法访问
  • SAMBA RPM
  • fedora13 samba服务无法启动
  • 关于samba
  • 如何安装SAMBA
  • Samba软件
  • samba服务器的共享文件无法访问
  • 如何用代码实现一个samba客户端??
  • samba如何安装?
  • samba啟動出錯,高手請幫忙看看,謝謝!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3