1. ftp 설치 - 패키지 설치 # yum list vsftpd # yum install vsftpd # yum install ftp - ftp config 설정 # vi /etc/vsftpd/vsftpd.conf anonymous_enable=NO local_umask=022 dirmessage_enable=YES - root login enable 설정 # vi ftpusers #root --> comment out # vi user_list #root --> comment out - 서비스 재가동 및 reboot 후 자동 실행 # service vsftpd restart # chkconfig vsftpd on # chkconfig --list | grep vsftpd vsftpd 0:off 1:o..