/etc/samba/smbusers什么用处?

这里有必要提到samba用户帐户映射这具概念,出于帐号安全考虑,为防止samba 用户通过samba帐号来猜测系统用户的信息,所以,就出现了 samba用户映射,如 ,将上面的tom帐户映射成其他的名称,然后用其他的名称如jack、rhood都可以 登录,其权限及登录密码都与tom一样。 实现帐户映射的方法:先在/etc/samba/smb.conf中的帐户映射服务打开,方法很 简单,找到username map = /etc//samba/smbusers这一行,将其前面的;去掉即 可(linux中;表示关闭,#表示注释,注意与freebsd中的#号概念区别开来),然 后修改/etc/samba/smbusers vi /etc/samba/smbusers 在里面添加一行 tom = jack rhood 保存退出,重启smb服务,然后就可以用jack及rhood登录redhat共享目录,其权 限及登录密码与tom完全一致。

Posted in linux solaris shell eda 以及工作相关 | Leave a comment

Red Hat Enterprise 配置Samba服务器2

http://www.lupaworld.com/bbs/thread-20562-1-10.html

作者:fandy
电子邮箱:cbbc@163.com
QQ:332018422
建立日期:2005年11月11日,最后修改日期:2005年11月14日
版权说明:本文章的内容归作者版权所有,同时也接受大家的转贴,但一定要保存作者信息和出处,多谢!

本篇文章以Red Hat Enterprise Linux最新版4.2中文版操作系统为基础,详细介绍使用Samba 3.0.10-1.4E.2作为局域网内的PDC服务器,并介绍Windows 2000至WindowsXP系列操作系统的客户端,如何加入到SAMBA PDC域!小弟Linux水平有限所以会存在错误的地方请大家加以指导,以方便及时改正错误和完善本文章的内容,多谢!

Step0、实现环境:

网络域名:easy.com
DNS主机名称:pdc.easy.com
DNS主机IP地址:192.168.1.254
操作系统:RedHat Enterprise Server 4.1中文版
操作系统安装过程注意事项截图:

客户主机名称:winxp
客户主机IP地址:192.168.1.2
操作系统:Windows XP SP2中文版

管理员:root 用户名:user
密码:jinbiao 密码:123456

Step1、所需要的软件包清单:

samba-3.0.10-1.4E.2.i386.rpm
samba-client-3.0.10-1.4E.2.i386.rpm
samba-common-3.0.10-1.4E.2.i386.rpm

Step2、软件包安装过程:
# rpm -Uvh samba-3.0.10-1.4E.i386.rpm
warning: samba-3.0.10-1.4E.i386.rpm: V3 DSA signature: NOKEY, key ID 443e1821
Preparing... ############################## [100%]
1:samba ########################### [100%]

# rpm -Uvh samba-common-3.0.10-1.4E.i386.rpm
warning: samba-common-3.0.10-1.4E.i386.rpm: V3 DSA signature: NOKEY, key ID 443e1821
Preparing... ############################## [100%]
1:samba-common ########################### [100%]

# rpm -Uvh samba-client-3.0.10-1.4E.i386.rpm
warning: samba-client-3.0.10-1.4E.i386.rpm: V3 DSA signature: NOKEY, key ID 443e1821
Preparing... ############################## [100%]
1:samba-client ########################### [100%]

Step3、修改/etc/samba/smb.conf文件,

[global]

workgroup = easy-pdc (设置工作组或者说是域名)
netbios name = easy-pdc (网络上看到的计算器名称)
server string = Samba Domain Server (服务器描述)
log file = /var/log/samba/%m.log (samba日志文件的名字和路径)
security = user (设置samba服务器使用的认证过程:user)
encrypt passwords = yes (设置使用加密口令)
smb passwd file = /etc/samba/smbpasswd (存放samba密码的路径)
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192(网络协议)
preferred master = yes (为主域控制器的附加选项)
domain master = yes (设置samba成为主域服务器)
domain logons = yes (Samba接受所在组用户以域登录)
local master = yes (设置为局部控制器)
logon drive = P: (设置个人目录的盘符)
logon script = logon.bat (设置用户登陆到域的配置文件)
load printers = yes (设置为共享打印机)
printing = cups
max log size = 50 (日志文件的最大用量单位为:KB)
os level = 64 (如果要把samba设置为域服务器﹐浏览器的OS级别)
idmap uid = 16777216-33554431 (设定用户帐号所使用的ID号范围)
idmap gid = 16777216-33554431 (设定用户组所使用的ID号范围)

[homes]
comment = User Directory (共享目录的描述)
browseable = no (共享目录路径是否可以游览)
writeable = yes (共享目录路径是否可写)
read only = no (共享目录路径是否为只读)
force create mode = 0700 (
create mode = 0700
force directory mode = 0700
directory mode = 700

[netlogon]
comment = Network Logon Service
path = /home/netlogon (共享目录的路径)
guest ok = yes (设置是否可以允许guest帐号访问)
writable = no
locking = no
public = no
browseable = yes
share modes = no

[public]
comment = Public Directory
path = /home/public
browseable = yes
writable = yes
guest ok = yes
create mask = 0777

# service smb restart (重新启动SAMBA服务器)

关闭 SMB 服务: [ 确定 ]
关闭 NMB 服务: [ 确定 ]
启动 SMB 服务: [ 确定 ]
启动 NMB 服务: [ 确定 ]

# testparm (测试SAMBA服务器的配置情况)

Load smb config files from /etc/samba/smb.conf
Processing section "[homes]"
Processing section "[netlogon]"
Processing section "[public]"
Loaded services file OK.
Server role: ROLE_DOMAIN_PDC
Press enter to see a dump of your service definitions

-----------------详细资料《略去》---------------------

Step4、SAMBA域设定用户登陆logon.bat文件:

使用“文本编辑器”在/home/netlogon/目录创建logon.tmp文件,内容如下:

net time \easy-pdc /set /yes (客户端与服务器的时间同步)
net use T: \ easy-pdcpublic (设定public目录为T:盘)

因为logon.bat必须是dos格式,所以在进行了一些特殊的转换:

# cat –A logon.tmp | tr ‘$’ ‘r’ > logon.bat (进行logon.tmp文件转换)
# cat –A logon.bat (查看logon.tmp文件转换结果)
net time \easy-pdc /set /yes^M$
net use T: \ easy-pdcpublic^M$

------------------------------------------------------------------------------------------
特别说明:如果logon.bat设置正确的话,在用户登陆到EASY-PDC域,打开“我
的电脑”介面会多出来一个T:盘:

------------------------------------------------------------------------------------------

Step5、SAMBA域内设定组、用户帐号资料建立和计算机名称等:

建立samba域的基本组:

# groupadd admin (添加admin组)
# groupadd machine (添加machine组)

设定samba域的目录:

# mkdir /home/netlogon (建立/home/netlogon目录)
# mkdir /home/public (建立/home/public目录)
# chown 0754 /home/netlogon/ (更改/home/netlogon目录的属性)
# chown 0777 /home/public/ (更改/home/public目录的属性)
# chown root.admin /home/netlogon/ (root到admin组设定为目录管理者)

建立客户计算机名称和添加到SAMBA域:

# useradd -g machine -d /dev/null -c winxp -s /bin/false winxp$ (添加winxp$)
# smbpasswd -a -m winxp$ (添加winxp$计算机到SAMBA域内)
Added user winxp$.

添加root用户到SAMBA域:

# smbpasswd -a root (添加root用户到samba域内,并设定密码)
New SMB password: (输入:jinbiao)
Retype new SMB password: (再输入:jinbiao)
Added user root.

建立biao用户帐号和密码,并添加biao用户到SAMBA域:

# useradd biao (建立biao帐号)
# passwd biao (设定biao帐号的密码)
Changing password for user biao.
New UNIX password: (输入:123456)
Retype new UNIX password: (输入:123456)
passwd: all authentication tokens updated successfully.

# smbpasswd -a biao (添加biao用户到samba域内,并设定密码)
New SMB password: (输入:123456)
Retype new SMB password: (输入:123456)
Added user biao.

使用root来进行登陆SAMBA服务器的测试

# smbclient -L \easy-pdc
Password: (输入root帐号的密码:jinbiao)

Domain=[EASY-PDC] OS=[Unix] Server=[Samba 3.0.10-1.4E.2]

Sharename Type Comment
--------- ---- -------
netlogon Disk Network Logon Service
public Disk Public Directory
IPC$ IPC IPC Service (Samba Domain Server)
ADMIN$ IPC IPC Service (Samba Domain Server)
root Disk User Directory
Domain=[EASY-PDC] OS=[Unix] Server=[Samba 3.0.10-1.4E.2]

Server Comment
--------- -------
EASY-PDC Samba Domain Server
WINXP

Workgroup Master
--------- -------
EASY-PDC EASY-PDC
WORKGROUP COMPUTER

Step6、本例使用Windows XP SP2中文版操作系统加入SMB域详细说明:

在Windows XP SP2加入SMB域之前,请先运行以下的两个注册文件:

A、 WinXP_PlainPassword.reg
B、 WinXP_SignOrSeal.reg

------------------------------------------------------------------------------------------
说明:WinXP_PlainPassword.reg、WinXP_SignOrSeal.reg这两个文件可以在/usr/share/doc/samba-3.0.10/docs/registry/目录查找到!
------------------------------------------------------------------------------------------

运行完成以WinXP_PlainPassword.reg、WinXP_SignOrSeal.reg的两个注册文件后,点击“我的电脑” → “属性”,出现“系统属性”窗口;

点击“计算机名” → “网络标识” → “更改(C)...”;

出现“计算机名称更改”属性窗口:

“隶属于” → “域(D):” 输入easy-pdc;(sambaDomain Namep定义域名)

出现新的“计算机名更改”信息窗口

请输入有加入该域权限的帐户的名称和密码:
用户名(U):root
密码(P):jinbiao

如果输入的“计算机名(C):”和“域(D):”输入正确的话,经过一小段时间就会出现“欢迎加入easy-pdc域”的信息窗口;

关闭“欢迎加入easy-pdc域”的信息窗口,按“确定”键,接着出现新的提示窗口“要使更改生效,必须重新启动计算机”信息窗口;

关闭“要使更改生效,必须重新启动计算机”信息窗口。回到“系统属性”窗口,按“确定”键,关闭“系统属性”窗口;

接着出现“系统设置改变”信息窗口,提示“必须重新启动计算机才能使新设置生效,想现在重新启动计算机吗?”,按“是(Y)”键,关闭“系统设置改变”信息窗口;

到这为止,就完成WindowsXP SP2中文版客户端加入SMB域的工作!

Posted in linux solaris shell eda 以及工作相关 | Leave a comment

redhat enterprise 配置samba服务器

http://zhidao.baidu.com/question/52047277.html

/etc/samba/smb.conf主配置文件,此文件中有丰富的说明注释
使用smbpasswd命令使Linux系统用户成为Samba用户,命令格式如下:
smbpasswd –a 用户名

SMB.CONF具体实例
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options (perhaps too
# many!) most of which are not shown in this example
#
# Any line which starts with a ; (semi-colon) or a # (hash)
# is a comment and is ignored. In this example we will use a #
# for commentry and a ; for parts of the config file that you
# may wish to enable
#
# NOTE: Whenever you modify this file you should run the command "testparm"
# to check that you have not many any basic syntactic errors.
#
#======================= Global Settings =====================================
[global]

# workgroup = NT-Domain-Name or Workgroup-Name
workgroup = Workgroup ;计算机所在的工作组名或域名
netbios name = fileserver ;即在,网上邻居中显示的计算机名
# server string is the equivalent of the NT Description field
server string = Samba Server ;计算机描述

This option is important for security. It allows you to restrict
# connections to machines which are on your local network. The
# following example restricts access to two C class networks and
# the "loopback" interface. For more examples of the syntax see
# the smb.conf man page
; hosts allow = 192.168.1. 192.168.2. 127. ;允许访问的计算机的IP地址
; hosts allow = 172.16.0. 172.16.3. 127.
# if you want to automatically load your printer list rather
# than setting them up individually then you'll need this
; printcap name = /etc/printcap加载打印机的配置路径
load printers = no是否将打印机共享

# It should not be necessary to spell out the print system type unless
# yours is non-standard. Currently supported print systems include:
# bsd, sysv, plp, lprng, aix, hpux, qnx
; printing = cups一种打印驱动模式,即LINUX支持的标准打印类型。其LINUX支持的打印类型有bsd, sysv, plp, lprng, aix, hpux, qnx

# Uncomment this if you want a guest account, you must add this to /etc/passwd
# otherwise the user "nobody" is used
; guest account = nobody
guest account = guest ;允许访问(不需要用户名与密码)也可以指定任何系统内置的一个帐号做为来宾帐号。
# this tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/%m.log.会给用户在此目录下做每个SAMBA用户登录的日志。

# Put a capping on the size of the log files (in Kb).
max log size = 50日志 文件限制在50K内

# Security mode. Most people will want user level security. See
# security_level.txt for details.
security = share
; security = user
# Use password server option only with security = server
; password server = <NT-Server-Name>此行的作用为如果上面的选项为SERVER,则SAMBA服务器在做身份识别的时候,把WIN机器发过来的密码同用户名交给此项设定的密码服务器验证。

# Password Level allows matching of _n_ characters of the password for
# all combinations of upper and lower case.
; password level = 8
; username level = 8(对于从前的几款老式的WINDOWS系统对于大小写密码支持的不是很好,所以开启上面的两个参数的意义是在密码为8位的用户名与密码的帐号里自动匹配所有的大小写测试)

# You may wish to use password encryption. Please read
# ENCRYPTION.txt, Win95.txt and WinNT.txt in the Samba documentation.
# Do not enable this option unless you have read those documents
encrypt passwords = yes(加密明文的SAMBA密码进行发送)
smb passwd file = /etc/samba/smbpasswd验证密码所在的目录

# The following are needed to allow password changing from Windows to
# update the Linux sytsem password also.
# NOTE: Use these with 'encrypt passwords' and 'smb passwd file' above.
# NOTE2: You do NOT need these to allow workstations to change only
# the encrypted SMB passwords. They allow the Unix password
# to be kept in sync with the SMB password.
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
; wins support = yes把该服务器配置为WINS服务器

# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = 192.168.1.100也可以指定一个WINS服务器,让自己成为WINS客户

# WINS Proxy - Tells Samba to answer name resolution queries on
# behalf of a non WINS capable client, for this to work there must be
# at least one WINS Server on the network. The default is NO.
; wins proxy = yes(针对老式计算机,不用设置)

# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups. The built-in default for versions 1.9.17 is yes,
# this has been changed in version 1.9.18 to no.
dns proxy = no(针对老式计算机,不用设置)

# Case Preservation can be handy - system default is _no_
# NOTE: These can be set on a per share basis
; preserve case = no
; short preserve case = no
# Default case is normally upper case for all DOS files
; default case = lower
# Be very careful with case sensitivity - it can break things!
; case sensitive = no
(整个上面这段为讨论与WINDWOS文件系统的大小写问题因为微软的系统是一个大小写不区分 的系统,默认用默认值即可。因为修改可能造成与WINDOWS的不兼容问题)

#============================ Share Definitions ==============================
[homes]作为登录用户,自己访问自己目录的设置。
; comment = Home Directories目录说明
; browseable = no用户私人目录不需要给别人浏览。
; writable = yes也可以用read only=no来替代

# Un-comment the following and create the netlogon directory for Domain Logons
; [netlogon]域用户登录目录设置。
; comment = Network Logon Service
; path = /home/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 = /home/profiles
; browseable = no
; guest ok = yes

# NOTE: If you have a BSD-style print system there is no need to
# specifically define each individual printer
[printers]打印机共享
comment = All Printers说明共享全部打印机
path = /var/spool/samba打印机池,用户必须手工创建该目录。
browseable = no
# Set public = yes to allow user 'guest account' to print
guest ok = no
writable = no
printable = yes用户是否可以打印

# This one is useful for people to share files
;[tmp]
; comment = Temporary file space
; path = /tmp
; read only = no可以写入
; public = yes即目录是否共享给来宾帐号。

# A publicly accessible directory, but read only, except for people in
# the "staff" group
[public]
comment = Public Stuff
path = /home/soft
public = yes
guest ok = yes以上两个public=yes代表来宾帐号能访问此共享目录,但guest ok代表密码不是必须的,可以不加。
writable = yes
printable = no
write list = @staff此参数告诉我们不必要让所有人访问共享目录,可以有staff这个组的成员能访问,但在passwd和shadow文件中要存在这个组。

# Other examples.
#
# A private printer, usable only by fred. Spool data will be placed in fred's
# home directory. Note that fred must have write access to the spool directory,
# wherever it is.
;[fredsprn](设置仅供一人使用的共享打印机)
; comment = Fred's Printer;
valid users = fred
; path = /homes/fred
; printer = freds_printer
; public = no
; writable = no
; printable = yes

# A private directory, usable only by fred. Note that fred requires write
# access to the directory.
;[fredsdir] (为创建一个私有目录,别人都不能访问,只有fred这个用户能访问)
; comment = Fred's Service
; path = /usr/somewhere/private
; valid users = fred
; public = no
; writable = yes
; printable = no

# a service which has a different directory for each machine that connects
# this allows you to tailor configurations to incoming machines. You could
# also use the %u option to tailor it by user name.
# The %m gets replaced with the machine name that is connecting.
;[pchome]
; comment = PC Directories
; path = /usr/pc/%m
; public = no
; writable = yes

# A publicly accessible directory, read/write to all users. Note that all files
# created in the directory by users will be owned by the default user, so
# any user with access can delete any other user's files. Obviously this
# directory must be writable by the default user. Another user could of course
# be specified, in which case all files would be owned by that user instead.
;[public]
; path = /usr/somewhere/else/public
; public = yes
; only guest = yes
; writable = yes
; printable = no

# The following two entries demonstrate how to share a directory so that two
# users can place files there that will be owned by the specific users. In this
# setup, the directory should be writable by both users and should have the
# sticky bit set on it to prevent abuse. Obviously this could be extended to
# as many users as required.
;[myshare]这个例子是配置一个仅供两个用户访问的目录
; comment = Mary's and Fred's stuff
; path = /usr/somewhere/shared
; valid users = mary fred
; public = no
; writable = yes
; printable = no
; create mask = 0765

最后建议在图形界面配置比较简单
在LINUX提示符下输入startx
即可进入图形界面 和WINDOWS差不多 窗口化的配置比较直观也比较简单

Posted in linux solaris shell eda 以及工作相关 | Leave a comment

RHEL 4 vsftpd安装配置使用

vsftpd使用安装

一、安装

检查有没有安装过这个包
rpm -qa|grep ftp
看看有没有vsftp如果有就不用安装了

安装源码包
rpm -ihv vsftpd-2.0.1-5.src.rpm

安装编译后的包
/usr/src/redhat/SPECS目录里可以看到vsftpd.spec
rpmbuild -ba vsftpd.spec
cd /usr/src/redhat/RPMS/i386
rpm -ivh vsftpd-2.0.1-5.i386.rpm

检查包是否装好
rpm -qa|grep ftp
看到里面有vsftpd了就说明安装好了

二、配置
修改config
cd /etc/vsftpd
cp vsftpd.conf vsftpd.conf.bak
vi vsftpd.conf

禁止匿名用户
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=YES
======上面是修改前下面是修改后====
anonymous_enable=NO

设定文件上传下载日志
# Activate logging of uploads/downloads.
xferlog_enable=YES
# You may override where the log file goes if you like. The default is shown
# below.
#xferlog_file=/var/log/vsftpd.log
==========
# Activate logging of uploads/downloads.
xferlog_enable=YES
# You may override where the log file goes if you like. The default is shown
# below.
xferlog_file=/var/log/vsftpd.log

固定home目录(用户在ftp登录后自己的home目录即根目录不能上更上层目录)
添加chroot_local_user=YES

设定那些用户允许访问(其他用户不能访问)
保证userlist_enable=YES
添加userlist_deny=NO
然后在/etc/vsftpd.user_list添加允许的用户
# vsftpd userlist
# If userlist_deny=NO, only allow users in this file
# If userlist_deny=YES (default), never allow users in this file, and
# do not even prompt for a password.
# Note that the default vsftpd pam config also checks /etc/vsftpd.ftpusers
# for users that are denied.
testuser1
testuser2
testuser3

三、重新启动
service vsftpd restart

Posted in linux solaris shell eda 以及工作相关 | Leave a comment

MKV格式的电影用KMP播放声音轻的解决方法

不是声音轻其实是MKV的片子一般支持多声道,而我们的电脑音箱多为2.0声道所以有些其他声道上的声音根本听不见。
解决方法:按ctrl+tab,点击音频信息(音频信息->解码器:ac3 fliter) ,把扬声器设置从和输入端相同改为你相应的音箱设置就可以了(main标签页output format选项选为2/0 stereo)。一般2.0的即为立体声。
http://club.pchome.net/topic_1_15_3316235__.html

Posted in pc与互联网 | Leave a comment

autofs死mount如何卸掉?我实际经历

首先退出其他用户用root登录

580  umount -f /net/111/opt
无效 卸不下来
583  ps -ef|grep auto

找到/usr/sbin/automount 进程kill
584  kill 3229
585  kill 25203
586  kill 27010
587  ps -ef|grep auto
588  kill -9 3229
589  kill -9 25203
590  ps -ef|grep auto

kill干净了
591  /etc/init.d/autofs restart

593  umount /net/111/opt
完成

Posted in linux solaris shell eda 以及工作相关 | Leave a comment

強制umount 無回應的nfs share

強制umount 無回應的nfs share

在unix環境中,可能都有遇到過當nfs server crash時,會導致正在連接的client端無法umount 的問題

解決方法
Step1

vi /etc/mtab

找到已無回應的mount point
Step2

/etc/init.d/autofs restart

應該能解決大部分無法umount nfs的問題
Enjoy!

http://blog.toknow.idv.tw/?p=274

Posted in linux solaris shell eda 以及工作相关 | Leave a comment

redhat src rpm包(SRPM包)怎么安装?

举例

wget ftp://194.199.20.114/linux/redhat/enterprise/4/en/os/i386/SRPMS/vsftpd-2.0.1-5.src.rpm
rpm -ivh vsftpd-2.0.1-5.src.rpm

cd /usr/src/redhat/SPECS
rpmbuild -ba vsftpd.spec

cd /usr/src/redhat/RPMS/i386
rpm -ivh vsftpd-2.0.1-5.i386.rpm

Posted in linux solaris shell eda 以及工作相关 | Leave a comment

rpm -qpl 可以查看某个rpm包会在哪些路径安装文件

比如当前目录下有一个

vsftpd-2.0.1-5.x86_64.rpm

rpm -qpl vsftpd-2.0.1-5.x86_64.rpm

然后看到

/etc/logrotate.d/vsftpd.log
/etc/pam.d/vsftpd
/etc/rc.d/init.d/vsftpd
/etc/vsftpd
/etc/vsftpd.ftpusers
/etc/vsftpd.user_list
/etc/vsftpd/vsftpd.conf
/usr/sbin/vsftpd
/usr/share/doc/vsftpd-2.0.1
/usr/share/doc/vsftpd-2.0.1/AUDIT
/usr/share/doc/vsftpd-2.0.1/BENCHMARKS
/usr/share/doc/vsftpd-2.0.1/BUGS
/usr/share/doc/vsftpd-2.0.1/COPYING
/usr/share/doc/vsftpd-2.0.1/Changelog
/usr/share/doc/vsftpd-2.0.1/EXAMPLE
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/INTERNET_SITE
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/INTERNET_SITE/README
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/INTERNET_SITE/vsftpd.conf
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/INTERNET_SITE/vsftpd.xinetd
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/INTERNET_SITE_NOINETD
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/INTERNET_SITE_NOINETD/README
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/INTERNET_SITE_NOINETD/vsftpd.conf
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/PER_IP_CONFIG
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/PER_IP_CONFIG/README
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/PER_IP_CONFIG/hosts.allow
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/README
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_HOSTS
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_HOSTS/README
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_USERS
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_USERS/README
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_USERS/logins.txt
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_USERS/vsftpd.conf
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_USERS/vsftpd.pam
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_USERS_2
/usr/share/doc/vsftpd-2.0.1/EXAMPLE/VIRTUAL_USERS_2/README
/usr/share/doc/vsftpd-2.0.1/FAQ
/usr/share/doc/vsftpd-2.0.1/INSTALL
/usr/share/doc/vsftpd-2.0.1/LICENSE
/usr/share/doc/vsftpd-2.0.1/README
/usr/share/doc/vsftpd-2.0.1/README.security
/usr/share/doc/vsftpd-2.0.1/REWARD
/usr/share/doc/vsftpd-2.0.1/SECURITY
/usr/share/doc/vsftpd-2.0.1/SECURITY/DESIGN
/usr/share/doc/vsftpd-2.0.1/SECURITY/IMPLEMENTATION
/usr/share/doc/vsftpd-2.0.1/SECURITY/OVERVIEW
/usr/share/doc/vsftpd-2.0.1/SECURITY/TRUST
/usr/share/doc/vsftpd-2.0.1/SIZE
/usr/share/doc/vsftpd-2.0.1/SPEED
/usr/share/doc/vsftpd-2.0.1/TODO
/usr/share/doc/vsftpd-2.0.1/TUNING
/usr/share/doc/vsftpd-2.0.1/vsftpd.xinetd
/usr/share/man/man5/vsftpd.conf.5.gz
/usr/share/man/man8/vsftpd.8.gz
/var/ftp
/var/ftp/pub

Posted in linux solaris shell eda 以及工作相关 | Leave a comment

3个搜索下载rpm包比较全的网站

3个搜索下载rpm包比较全的网站

http://rpmfind.net
http://rpmseek.com
http://rpm.pbone.net

Posted in linux solaris shell eda 以及工作相关 | Leave a comment