ubuntu install telnet ftp ssh
1 安装telnet服务
1)sudo apt-get install xinetd telnetd
2)重启telnet服务: sudo /etc/init.d/xinetd restart
3)乱码问题:下载pietty,选择telnet登录,选择UFT-8
2 安装ssh服务
1)sudo apt-get install openssh-server
2)重启服务:sudo /etc/init.d/ssh restart
3 安装vsftpd
1)sudo apt-get install vsftpd
2)编辑vsftpd.conf: sudo vi /etc/vsftpd.conf,修改以下几处:
nonymous_enable=NO (如果允许匿名访问,那么选择YES)
local_enable=YES (允许本地的Linux帐户访问这个ftp服务器)
write_enable=YES (本地的 LInux帐户访问时,可写)
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list (在另外的/etc/vsftpd.chroot_list文件中添加限制的用户)
3)重启服务:sudo /etc/init.d/vsftpd restart
参考: http://feizf.blogbus.com/logs/23351643.html