很简单的东西,今天突然用的到这个,发现有点忘了,在这里记录下
因为在linux下写python脚本不是很方便 , 于是决定在搭建个ftp实现linux和windows文件共享 ;
步骤: 首先安装vsftpd
[[email protected] sjyy]# yum install vsftpd -y
[[email protected] sjyy]# vim /etc/vsftpd/vsftpd.conf (修改配置文件)
anonymous_enable=NO 禁用匿名用户访问
chroot_local_user=YES 锁定ftp用户跳出自己的家目录
添加FTP用户:
useradd -s /sbin/nologin -d /var/ftp/sjyy sjyy
passwd sjyy
重启vsftpd服务:
[[email protected] ~]# /etc/init.d/vsftpd restart
测试下,在win访问
访问成功 可以实现文件共享
时间: 2024-10-01 04:54:20