不同版本 Solaris 上的 smb.conf 文件位置
好吧,我是 Solaris 操作系统的初学者,我需要在 3 个机器上安装和配置 samba,每个机器都有不同的 Solaris 版本(8、9、10)。
我想知道 samba 配置文件的位置,即每个版本中的 smb.conf 文件? 到目前为止我发现的只是
Solaris 8
<块引用>/usr/local/samba/lib/smb.conf
SolarisSolaris 9 和 Solaris 10
<块引用>/etc/sfw/samba/smb.conf
10
是这样吗? 我需要知道安装 samba 时这些文件默认在哪里。
Ok I am a total beginner with the Solaris Operating system and I need to install and configure samba on 3 boxes each has a different version of Solaris (8,9,10).
What I want to know location of samba configuration file i.e., smb.conf
files in each version? So far all I have found is
Solaris 8
/usr/local/samba/lib/smb.conf
Solaris 9 and Solaris 10
/etc/sfw/samba/smb.conf
Is this right? I need to know where these files go by default when samba is installed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Samba 配置文件可以设置在管理员希望您拥有的任何位置。
/usr/local/samba/
是samba的安装路径。您可以使用以下命令启动 samba:
两个位置(samba 安装路径和 samba 配置路径)可以完全分开。
-D
如果指定,此参数将使服务器作为守护进程运行。 也就是说,它会自行分离并在后台运行,在适当的端口上处理请求。 对于不只是提供临时使用的文件和打印服务的服务器,建议将服务器作为守护进程来运行 smbd。 如果 smbd 在 shell 的命令行上执行,则假定此开关。-s <配置文件>
指定的文件包含服务器所需的配置详细信息。 该文件中的信息包括特定于服务器的信息,例如使用哪个 printcap 文件,以及服务器要提供的所有服务的描述。
Samba configuration files can be set anywhere your administrator want you to have them.
/usr/local/samba/
is the path where samba can be installed.You can launch your samba with a:
The two locations (samba installation and samba configuration paths) can be completely separate.
-D
If specified, this parameter causes the server to operate as a daemon. That is, it detaches itself and runs in the background, fielding requests on the appropriate port. Operating the server as a daemon is the recommended way of running smbd for servers that provide more than casual use file and print services. This switch is assumed if smbd is executed on the command line of a shell.-s <configuration file>
The file specified contains the configuration details required by the server. The information in this file includes server-specific information such as what printcap file to use, as well as descriptions of all the services that the server is to provide.
“smbd”手册页的 FILES 部分可能会给出一些提示。 我手边没有任何 Solaris 盒子,所以很遗憾无法确认。
The FILES section of the manpage for `smbd' may give some hints. I don't have any Solaris box handy, so cannot unfortunately confirm.
您还可以执行类似这样的测试参数命令 # testparm /etc/samba/smb.conf
you can do also the test parameter commands like this # testparm /etc/samba/smb.conf