Posted in Linux/Unix/BSD -
I very occasionally need to support people with websites on servers other than those I manage. If the server is only accessible using FTP and I need to get a copy of the entire website, then I use the ncftpget command line tool to recursively download all the files and directories in one go.
ncftpget is part of the ncftp package.
On APT based Linux distros (e.g. Debian) you can install it like this:
apt-get install ncftp
On YUM based Linux distros (e.g. CentOS, RHEL) you can install it like this:
yum install ncftp
Use the command like so:
ncftpget -R -T -v -u [username] [hostname] [local path] [remote path]
-R tells ncftpget to download files and directories recursively
-T says not to try a tar download (it's never worked for me and results in the error "tar: This does not look like a tar archive" and "tar: Exiting with failure status due to previous errors". The actual files subsequently download just fine).
-v says to be verbose and show the download progress; you can omit this but it can be useful to see what's going on
-u specifies the username to use. Change [username] to the user to log in as
Replace [hostname] with the server to ftp to.
Replace [local path] to where you want to copy the files to.
Replace [remote path] to the path where the files are on the server you are connecting to.
Let's say our username is "chris", the server is 10.1.1.10, the path we want to save to locally is /tmp and we want to download files from the remote host from /httpdocs. Do this:
ncftpget -R -T -v -u chris 10.1.1.10 /tmp /httpdocs
You are then prompted for the password and the download starts.
제목 | 날짜 | ||
---|---|---|---|
647 | [리눅스서버] 리눅스 폴더 찾기 | 71 | 2020/04/13 |
646 | [PHP] phpmyadmin 서버 에러가 감지되었습니다. [1] | 372 | 2020/04/06 |
645 | [유틸리티] 중복파일 제거 Duplicate Cleaner | 268 | 2020/03/06 |
644 | [MySQL] mysql 접두어 변경하기 | 1346 | 2020/02/18 |
643 | [MySQL] How to change a MySQL database’s table prefix | 59 | 2020/02/18 |
642 | [윈도우서버] [autoset] Autoset (오토셋) - MySQL「서버를 시작하지 못했습니다」에러 해결 (= Autoset, DB접속에러, 서버실행오류,Warning: mysqli_connect(): in ..Error, Connect Error:) | 833 | 2020/02/15 |
641 | [윈도우서버] 오토셋 아파치 에러로그 확인하기 | 350 | 2020/02/14 |
640 | [하드웨어] dell xps 15 9570 팬소음 문제 | 563 | 2020/02/09 |
639 | [윈도우] [윈도우10] 가상데스크탑 활용하기(단축키) | 71 | 2020/02/01 |
638 | [뉴스] 차단된 웹사이트는 이 방법으로 접속해주세요 | 9860 | 2020/01/29 |
637 | [생활] 휴대폰 보험청구하기 | 99 | 2020/01/20 |
636 | [유틸리티] [FreeCommander] 컬러 스키마 변경 | 327 | 2020/01/12 |