Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2997583
  • 博文数量: 454
  • 博客积分: 4860
  • 博客等级: 上校
  • 技术积分: 6375
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-13 10:08
个人简介

10年工作经验,专研网站运维。

文章分类

全部博文(454)

文章存档

2017年(11)

2016年(13)

2015年(47)

2014年(36)

2013年(147)

2012年(64)

2011年(136)

分类: LINUX

2011-09-29 09:47:03

要求:只可上传,不能删除,后台管理删除。
应用:samba+ftp
难点:中文乱码
1、mkdir /home/test
2、chmod -R 777 /home/test
3、vim /etc/samba/smb.conf
把security = user 改为 security = share
添加:
[test]
        path = /home/test
        guest ok = yes
        writeable = yes
        only guest = yes
        create mask = 0555
        directory mask = 0777
在【global】下添加
[global]
display charset = cp936
dos charset = cp936
unix charset = cp936
保存退出
4、/etc/init.d/smb restart
5、yum -y install vsftpd
6、mv /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.bak
7、vim /etc/vsftpd/vsftpd.conf
anonymous_enable=YES
local_enable=YES
write_enable=YES
local_umask=022
anon_upload_enable=no
anon_mkdir_write_enable=no
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_file=/var/log/vsFTPd.log
ascii_upload_enable=YES
ascii_download_enable=YES
pam_service_name=vsFTPd
userlist_enable=YES
listen=YES
tcp_wrappers=YES
anon_upload_enable=yes
anon_mkdir_write_enable=yes
anon_world_readable_only=no
anon_other_write_enable=yes
保存退出
useradd liuyi -d /home/test -s /sbin/nologin
passwd liuyi
usermod -a -G root liuyi

vim /etc/vsftpd/chroot_list   ( 每行一个用户 )允许的用户必须存在
vim /etc/vsftpd/user_list     ( 每行一个用户 )允许的用户必须不存在,或被注释掉。
vim /etc/vsftpd/ftpusers    删除掉daemon
service vsftpd restart
vim /etc/sysconfig/i18n
LANG="zh_CN.GB2312"
SUPPORTED="zh_HK.UTF-8:zh_HK:zh:zh_CN.UTF-8:zh_CN:zh:zh_TW.UTF-8:zh_TW:zh:en_US.UTF-8:en_US:en"
SYSFONT="latarcyrheb-sun16"

阅读(2357) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~