我正在编写一个脚本,用于自动从本地服务器下载文件备份。文件很多,因此为了避免下载未更改的文件,我想在下载任何内容之前将远程文件哈希与本地文件哈希进行比较。但是,我无法在 vsFTPd 服务器上使用 HASH 命令。
我认为这意味着 HASH 命令以某种方式被禁用或不允许,但是经过数小时的谷歌搜索也没有告诉我如何启用它,或者 vsFTPd 是否完全支持 HASH 命令。
有人知道这是否可行吗?或者,如果 vsFTPd 不支持 HASH 命令,是否有其他 Ubuntu FTP 服务器可供我使用?
以下是一个例子:
erlend@server:~$ ftp localhost
Connected to localhost.localdomain.
220 (vsFTPd 3.0.3)
Name (localhost:erlend): erlend
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
200 EPRT command successful. Consider using EPSV.
150 Here comes the directory listing.
-rw-r--r-- 1 1002 1002 102653 Oct 05 08:19 myfile.zip
226 Directory send OK.
但是当我尝试获取文件哈希时,我得到:
ftp> HASH myfile.zip
?Invalid command
按照评论中的建议,尝试不使用参数(和小写!):
ftp> hash
Hash mark printing off.
ftp> hash
Hash mark printing on (1024 bytes/hash mark).
ftp> hash 1
Hash mark printing on (1 bytes/hash mark).
ftp> hash 2
Hash mark printing on (2 bytes/hash mark).
ftp> hash
Hash mark printing off.
ftp> hash myfile.zip
Hash mark printing off.
答案1
在您的服务器上设置一个每天运行的 cron 任务/etc/cron.daily
。crontab
无需执行任何特殊魔法。只需一个可执行脚本即可。
下面是我已经掌握的用于计算文件哈希值的方法:
#!/bin/bash
md5sum \
install.sh \
eyesome.sh \
eyesome-cfg.sh \
eyesome-src.sh \
eyesome-sun.sh \
wake-eyesome.sh \
start-eyesome \
daily-eyesome-sun \
systemd-wake-eyesome \
acpi-lid-eyesome.sh \
acpi-lid-event-eyesome \
eyesome-dbus.sh \
> eyesome.md5
因此您可以将文件下载eyesome.md5
到远程机器。
$ cat eyesome.md5
2627fe73a1c99c1ec02a17002cf88dad install.sh
62999343cd603c4bff70e890367739bb eyesome.sh
c42766c412b31c45d814efea36c1021b eyesome-cfg.sh
8e56b945b9173dee4cceecb1b111b28a eyesome-src.sh
d70ca24ca2aea58b043d86e9bdd15c0e eyesome-sun.sh
28b0fde9a98933fee0226c49350fdc6c wake-eyesome.sh
712eff1f4ec14fbf04521674c32aa5b8 start-eyesome
0cdc4dbb0a383cd97f1e6d0744a6f8e4 daily-eyesome-sun
5a2abb831f31a7339270868ddd37f745 systemd-wake-eyesome
e06f195dcf254d65b4f8512d46e44458 acpi-lid-eyesome.sh
8ce2412bdb1bab4bca6e4921f9ae282b acpi-lid-event-eyesome
54e3052f12ca33fc53e38b01d4dd05d6 eyesome-dbus.sh
笔记:如果您的文件名以路径为前缀,您可能必须使用或其他实用程序将其从服务器路径更改为本地路径sed
。grep
然后运行:
$ md5sum -c eyesome.md5
install.sh: OK
eyesome.sh: OK
eyesome-cfg.sh: OK
eyesome-src.sh: FAILED
eyesome-sun.sh: OK
wake-eyesome.sh: FAILED
start-eyesome: OK
daily-eyesome-sun: OK
systemd-wake-eyesome: OK
acpi-lid-eyesome.sh: OK
acpi-lid-event-eyesome: OK
eyesome-dbus.sh: OK
md5sum: WARNING: 2 computed checksums did NOT match
您需要下载失败的文件(eyesome-src.sh
和)。wake-eyesome.sh
答案2
这不会回答您关于比较 HASH 的问题,但是,对于评论来说太长了。
如果你想避免下载两次文件,在大多数情况下,下载具有不同修改时间或不同大小的文件就足够了。如果是这种情况,这个答案关于使用左心室收缩将会很有用。
它使用该mirror
选项保持您的 FTP 文件夹和本地文件夹同步,仅下载已更改的文件。
来自链接答案作者:GabrieleV:
#!/bin/bash
HOST="your.ftp.host.dom"
USER="username"
PASS="password"
FTPURL="ftp://$USER:$PASS@$HOST"
LCD="/path/of/your/local/dir"
RCD="/path/of/your/remote/dir"
#DELETE="--delete"
lftp -c "set ftp:list-options -a;
open '$FTPURL';
lcd $LCD;
cd $RCD;
mirror --reverse \
$DELETE \
--verbose \
--exclude-glob a-dir-to-exclude/ \
--exclude-glob a-file-to-exclude \
--exclude-glob a-file-group-to-exclude* \
--exclude-glob other-files-to-exclude"
警告:确保目标目录存在,否则cd命令会失败,因此操作包括删除文件树 将会发生在错误的目录(根目录)!