Ubuntu server 安装samba
安装Samba时,出现了一下问题:
linux-image-generic***依赖出现问题,无法安装Samba. 使用apt-get update 更新,吓尿了,全部是忽略,源是系统自带的。改成其他源再试,还是出错。
百度。。。
测试。。。
循环n次都fail了,终于在n+1次OK啦
方法如下:
先升级和清理包,命令如下:
sudo apt-get -f install #用来升级一些相互依赖的包 sudo apt-get autoremove #用来删除一些过时的包
然后修改安装源,源列表请移步:http://wiki.ubuntu.org.cn/Qref/Source , 我选择里ali的,大公司可靠些。
deb http://mirrors.aliyun.com/ubuntu/ utopic main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ utopic-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ utopic-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ utopic-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ utopic-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ utopic-backports main restricted universe multiverse
直接将以上配置写入 /etc/apt/source.list 里, 然后apt-get update 可以看到更新的速度很快。
接下安装Samba了,sudo apt-get install samba 安装的时间有点长,duang.duang.duang 终于安装ok了,接下来就该配置了。
1. 创建共享目录
mkdir /home/fzqm/share
2. 修改Samba配置文件
vim /etc/samba/smb.conf #在文件最后面添加一些 [share] path = /home/phinecos/share available = yes browsealbe = yes public = yes writable = yes
3. 创建Samba账号,该账号(fzqm)必须为系统账号
sudo touch /etc/samba/smbpasswd sudo smbpasswd -a fzqm
4. 重启Samba服务
sudo /etc/init.d/samba restart
5.ubuntu下测试,输入一些命令可以看到Sabma共享的信息
smbclient -L //localhost/share
6. windows下访问,直接在资源管理器地址栏输入\\服务器名称或IP\share 就OK了
打开后可以看到文件 , 新增文件看看,OMG木有权限,查看了一下共享的目录只有读木有写的权限 , chmod 777 share 后再试了一下,木问题了!
感谢 :http://www.cnblogs.com/phinecos/archive/2009/06/06/1497717.html
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。