首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

Ubuntu上Samba服务器的简单应用

2012-08-17 
Ubuntu下Samba服务器的简单应用Ubuntu下Samba服务器的简单应用1.Samba installapt-get install sambaapt-g

Ubuntu下Samba服务器的简单应用
Ubuntu下Samba服务器的简单应用

1.Samba install
apt-get install samba
apt-get install smbfs

2.create share location
mkdir /home/sillycat/share

chmod 777 /home/sillycat/share

3.modify the config file for samba
mv /etc/samba/smb.conf /etc/samba/smb.conf.bak
vi /etc/samba/smb.conf

[global]
workgroup = MYGROUP
security=share
guest ok = yes
[share]
path=/home/sillycat/share
browseable=yes
writeable=yes

testparm

5.restart the samba server
/etc/init.d/samba restart

6.test connection
install the client soft:
apt-get install smbclient

local machine:
smbclient -L //localhost/share
remote machine:
smbclient //www.sillycat.com/share

热点排行