Robin's Programming World
I Love Programming As My Life!
BlogJava
首页
新随笔
联系
聚合
管理
随笔-193 评论-715 文章-1 trackbacks-0
Fedora Core 8配置SAMBA服务成功
新装了Fedora Core8,虽然我们有可爱的rz/sz命令可用,但是像Windows一样的文件共享更方便,这也我们不得不佩服Windows的地方。同时,我也需要向同事们共享我的文件,所以决定采用SAMBA来配置我的共享服务。
1、使用yum命令来安装或更新你的SAMBA包。
yum install samba
2、samba的配置文件在如下
/etc/samba/smb.conf
修改其配置如下:
#
=======================
Global Settings
=====================================
[
global
]
# ----------------------- Netwrok Related Options -------------------------
#
# workgroup
=
NT-Domain-Name or Workgroup-Name
,
eg: MIDEARTH
#
# server string is the equivalent of the NT Description field
#
# netbios name can be used to specify a server name not tied to the hostname
#
# Interfaces lets you configure Samba to use multiple interfaces
# If you have multiple network interfaces then you can list the ones
# you want to listen on (never omit localhost)
#
# Hosts Allow/Hosts Deny lets you restrict who can connect
,
and you can
# specifiy it as a per share option as well
#
workgroup
=
robin
server string
=
MYSERVER
netbios name
=
MYSERVER
;
hosts allow = 127. 192.168.
# --------------------------- Logging Options -----------------------------
#
# Log File let you specify where to put logs and how to split them up.
#
# Max Log Size let you specify the max size log files should reach
# logs split per machine
log file
=
/var/log/samba/log.%m
# max 50KB per log file
,
then rotate
max log size
=
50
# ----------------------- Standalone Server Options ------------------------
#
# Scurity can be set to user
,
share(deprecated) or server(deprecated)
#
# Backend to store user information in. New installations should
# use either tdbsam or ldapsam. smbpasswd is available for backwards
# compatibility. tdbsam requires no further configuration.
security
=
share
;
encrypt passwords = yes
guest ok
=
yes
guest account
=
root
#
============================
Share Definitions
==============================
[
homes
]
comment
=
Home Directories
browseable
=
no
writable
=
yes
;
valid users = %S
;
valid users = MYDOMAIN\%S
[
printers
]
comment
=
All Printers
path
=
/var/spool/samba
browseable
=
no
;
guest ok = no
;
writable = No
printable
=
yes
# Un-comment the following and create the netlogon directory for Domain Logons
;
[netlogon]
;
comment = Network Logon Service
;
path = /var/lib/samba/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 = /var/lib/samba/profiles
;
browseable = no
;
guest ok = yes
# A publicly accessible directory
,
but read only
,
except for people in
# the
"
staff
"
group
;
[public]
;
comment = Public Stuff
;
path = /home/samba
;
public = yes
;
writable = yes
;
printable = no
;
write list = +staff
[
temp
]
path
=
/root/temp
writeable
=
yes
;
browseable = yes
guest ok
=
yes
3、重启SAMBA服务
/etc/init.d/smb restart
4、Enjoy
PS:Fedora Core从V2起都有预装SELinux,这个不会配置的可以先把她关掉,关闭的方法如下:
修改/etc/selinux/config文件中的SELINUX="" 为 disabled ,然后重启FC
posted on 2008-01-24 14:29
Robin's Programming World
阅读(2097)
评论(0)
编辑
收藏
所属分类:
其它
、
OS
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
Hybrid开发资源网站汇总
XCode Plugins Package Manager
Phonegap Debug Note
首个iOS App终于提交了
MongoDB install notes on Mac:
永久恢复联通 iPhone4 的 YouTube
[转]自定义UITableView
【转】Xcode分析CrashLog的方法
[转]Samsung EPIC 4G ADB/USB无法连接的问题
[转]教你如何做主管——MTP培训心得
<
2008年1月
>
日
一
二
三
四
五
六
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(49)
给我留言
查看公开留言
查看私人留言
随笔分类
(215)
.Net(1)
DB(8)
Flex & Flash(11)
Java(72)
OS(25)
RUP(1)
weblogic(3)
Webshere(16)
其它(50)
心情(2)
翻译(1)
读书(9)
转载(16)
随笔档案
(181)
2014年8月 (1)
2014年4月 (1)
2014年2月 (2)
2014年1月 (1)
2012年11月 (1)
2012年9月 (2)
2012年7月 (1)
2012年6月 (3)
2012年1月 (2)
2011年12月 (4)
2011年10月 (1)
2011年8月 (3)
2011年7月 (2)
2011年4月 (1)
2010年11月 (2)
2010年10月 (1)
2010年9月 (2)
2010年8月 (5)
2010年7月 (1)
2010年5月 (2)
2010年4月 (7)
2010年3月 (7)
2009年12月 (6)
2009年10月 (1)
2009年9月 (1)
2009年8月 (2)
2009年6月 (3)
2009年5月 (2)
2009年4月 (2)
2009年2月 (3)
2009年1月 (4)
2008年11月 (1)
2008年10月 (2)
2008年9月 (9)
2008年8月 (4)
2008年7月 (5)
2008年5月 (2)
2008年4月 (1)
2008年3月 (3)
2008年2月 (1)
2008年1月 (7)
2007年12月 (6)
2007年11月 (6)
2007年10月 (3)
2007年9月 (1)
2007年8月 (6)
2007年7月 (4)
2007年6月 (2)
2007年5月 (3)
2007年3月 (1)
2007年2月 (1)
2007年1月 (3)
2006年12月 (7)
2006年10月 (1)
2006年8月 (3)
2006年7月 (1)
2006年6月 (5)
2006年4月 (6)
2006年3月 (2)
2006年2月 (3)
2006年1月 (1)
2005年11月 (5)
相册
文章相关图片
收藏夹
other
Friend Links
Tiger's Space
Tiger的Blog,专注于过程改进,项目管理,质量管理三个方向。
zrfunds
搜索
积分与排名
积分 - 751410
排名 - 60
最新评论
1. re: XFire完整入门教程
楼主,请问你做过xfire使用spring的jdbc模板访问数据库的例子吗,急求啊?xfire和spring的结合在不访问数据库时(就像你这个例子一样)已经跑通了,但是需要使用jdbc时老出问题。谢谢
--fqjabc
2. re: 一次JQuery性能优化实战
不需要构建DOM
--bns
3. re: Spring Security 3.x 完整入门教程
@过客
尊重人是最起码的
--bns
4. re: Flex中带有三种状态CheckBox的Tree的实现
带有3种状态CheckBox的树形组件刚好用到
收了
--bns
5. re: Spring Security 3.x 完整入门教程
AntUrlPathMatcher这个类所在jar包是哪个啊,是spring-security-core-tiger这个吗?
--iechenyb
阅读排行榜
1. XFire完整入门教程(90425)
2. Spring Security 3.x 完整入门教程(59137)
3. 使用XFire开发Web Service客户端完整入门教程(52316)
4. WebSphere6.1中使用Spring报cvc-elt.1: Cannot find the declaration of element 'beans'异常的解决办法(24195)
5. 用MKVMerge GUI合并MKV文件(16666)
评论排行榜
1. XFire完整入门教程(130)
2. Spring Security 3.x 完整入门教程(67)
3. 使用XFire开发Web Service客户端完整入门教程(33)
4. VBA编程心得(24)
5. JDK1.5API完整中文版CHM格式文档发放(可下载)(22)