Openbsd与Freebsd的samba服务器建设 手册

服务器搭建手册标准版之openbsd与freebsd的samba服务器建设

 

提纲

 

  • 安装openbsd
  • 安装samba
  • 配置samba
  • 测试samba
  • 启用samba
  • 安装freebsd
  • 安装samba
  • 配置samba
  • 测试samba
  • 启用samba
  • 安装openbsd

安装过程略

  • 安装samba

用源代码方式安装samba。

1、打开openbsd系统自带的ftp服务器。

# vi /etc/inetd.conf

取消

#ftp            stream  tcp     nowait  root    /usr/libexec/ftpd       ftpd -US

#ftp            stream  tcp6    nowait  root    /usr/libexec/ftpd       ftpd –US

前面的#号

重启inetd服务或重启服务器.

  • 先用cute-ftp 等ftp工具将0.tar.gz 上传到服务器。现在是上传到/home/zymh目录下面。
  • 安装samba

#cd /home/zymh

#tar  zxvf samba3.0.tar.gz

# cd samba3.0

# ./configure

# make

# make install

Samba默认会安装在/usr/local/samba目录。

  • 配置samba

# cd /usr/local/samba/lib

# vi smb.conf

设置以下变量:

 

workgroup = DING9

server string = Samba Server

security = share

hosts allow = 192.168.1. 192.168.1. 254.

load printers = yes

 

[public]

comment = Public Stuff

path = /usr/text

public = yes

writable = yes

printable = no

write list = @staff

 

 

这样就可以将/usr/test共享出来,WINDOWS的用户就可以在网上邻居访问open这台机的/public目录。

  • 测试samba

可用以下命令来测试samba的配置是否正确。

# /usr/local/samba/bin/testparm

 

  • 启用samba

编辑/etc/rc.local 加入samba的启动命令.

#vi /etc/rc.local  加下以下内容:

/usr/local/samba/sbin/smbd -D &

/usr/local/samba/sbin/nmbd -D &

 

重启服务器.

 

  • 安装freebsd

安装过程略

  • 安装samba

以ports的形式安装samba

#cd /usr/ports/net/samba

# make install clean

 

  • 配置samba

#cd /usr/local/etc

#vi smb.conf

 

设置以下变量:

 

 

workgroup = DING9

server string = Samba Server

security = share

hosts allow = 192.168.1. 192.168.1. 254.

load printers = yes

 

[common]

comment = Common Stuff

path = /home/common

public = yes

writable = yes

printable = no

write list = @staff

 

这样就可以将/home/common共享出来,WINDOWS的用户就可以在网上邻居访问free这台机的common目录。

 

  • 测试samba

# /usr/local/bin/testparm

 

 

  • 启动samba

编辑/etc/rc.conf 增加samba的启动项

#vi /etc/rc.conf 加入以下内容:

nmbd_enable=”YES”

smbd_enable=”YES”

 

 

重启服务器.

 

 

 

 

以下文章点击率最高

Loading…

     

如果这文章对你有帮助,请扫左上角微信支付-支付宝,给于打赏,以助博客运营

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注