如何将文件从服务器移动到 FTP 备份存储?
How to move files from server to FTP Backup storage?
我有一个专用服务器和 100GB ftp 备份服务器,现在我将文件压缩到专用服务器 /root 中的 tar.gz.bz2 中,现在我想将这些文件移动到我的 ftp 备份存储,我该怎么做?
我的主人推荐我使用 ncftp.
ps:我正在使用 online.net
的专用服务器
安装ncftp客户端,运行:
sudo apt-get install ncftp
语法如下:
ncftpput ftp-host-name /path/to/remote/dir /path/to/local/dir
ncftpput -options ftp-host-name /path/to/remote/dir /path/to/local/dir
以下是使用 ncftpput 上传文件的方法:
ncftp -u username -p password www.hostname.com path/to/remote/file path/to/local/file
试试 ncftpput 客户端命令如下:
ncftpput -R -v -u "username" ftp.gnu.biz /gnu/forum /tmp/pbb
其中,
-u "username" : Ftp 服务器用户名
-v : 详细即显示上传进度
-R : 递归模式;复制整个目录树。
ftp.gnu.biz : 远程 ftp 服务器(使用 FQDN 或 IP)。
/gnu/forum : 将上传所有文件和子目录的远程 ftp 服务器目录。
/tmp/pbb : 上传远程 ftp 服务器目录 /gnu/forum
的本地目录(或文件列表)
或登录服务器:
ncftp -u username -p password ftp.gnu.biz
当在 ftp shell 内时:
put -R somedir
我有一个专用服务器和 100GB ftp 备份服务器,现在我将文件压缩到专用服务器 /root 中的 tar.gz.bz2 中,现在我想将这些文件移动到我的 ftp 备份存储,我该怎么做? 我的主人推荐我使用 ncftp.
ps:我正在使用 online.net
的专用服务器安装ncftp客户端,运行:
sudo apt-get install ncftp
语法如下:
ncftpput ftp-host-name /path/to/remote/dir /path/to/local/dir
ncftpput -options ftp-host-name /path/to/remote/dir /path/to/local/dir
以下是使用 ncftpput 上传文件的方法:
ncftp -u username -p password www.hostname.com path/to/remote/file path/to/local/file
试试 ncftpput 客户端命令如下:
ncftpput -R -v -u "username" ftp.gnu.biz /gnu/forum /tmp/pbb
其中,
-u "username" : Ftp 服务器用户名
-v : 详细即显示上传进度
-R : 递归模式;复制整个目录树。 ftp.gnu.biz : 远程 ftp 服务器(使用 FQDN 或 IP)。
/gnu/forum : 将上传所有文件和子目录的远程 ftp 服务器目录。
/tmp/pbb : 上传远程 ftp 服务器目录 /gnu/forum
的本地目录(或文件列表)或登录服务器:
ncftp -u username -p password ftp.gnu.biz
当在 ftp shell 内时:
put -R somedir