우분투에서 가장 많이 사용하고 있다는 vsftpd
vsftpd 설치
$ apt-get install vsftpd
폴더로 이동
$ cd /etc
vsftpd.conf 를 수정해야 하는데 vi편집기가 키보드 오류가 잘나기때문에 vim 설치
$ apt-get install vim
편집하기
$ vim vsftpd.conf
아래처럼 수정(괄호내용이 다를 수 있음, (no, yes, yes), # 제거)
============================================================================================================
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
============================================================================================================
anonymous_enable : 비권한자의 권한 부여 여부
local_enable : 계정사용자 접속여부
write_enable : 업로드 가능 여부
저장 후 종료는 esc -> :wp -> enter
접속 제한 사용자 수정(root)
$ vim ftpusers
에서 root 제거
ftp 실행하기
$ /etc/init.d/vsftpd restart
접속해보기
아이피 확인
$ ifconfig
$ ftp localhost (혹은 x.x.x.x ip주소)
connected to localhost.
220 (vsFTPd 3.0.2)
Name (lovalhost:xx): xx
331 Please specify the password.
Password:
230 Login successful.
Remote system type in UNIX.
Using binary mode to teansfer files.
ftp> exit
[출처] [우분투] ftp 설치하기|작성자 시크
'리눅스' 카테고리의 다른 글
리눅스 기본명령어 (1) | 2014.08.31 |
---|---|
apt-get (0) | 2014.06.05 |
리눅스 파티션 (0) | 2013.12.02 |
diskpart 파티션 (0) | 2013.12.02 |
vi 편집기 여러줄 주석처리 (0) | 2013.11.22 |