Ssh
rsync - 收件人的文件大 8 個字節
我有一個文件,我嘗試通過 scp 和 rsync 在有線 LAN 上傳輸,兩者都產生了相同的結果。當我
du file
在傳輸後對文件執行時,文件在接收主機上大了 8 個字節。我還檢查
head file | hexdump -C
了兩台主機,它們是相同的。同樣的故事tail
…任何想法為什麼會發生這種情況?如果重要,該文件是 gzip。
du file
不是測量文件大小的合適方法。甚至手冊頁的第一行都寫著“du -估計文件空間使用量”(我的斜體字)。相反,請使用以下一種或多種方法(其他方法也將存在):
ls -l file # byte size should be the same on both sides cksum file # checksum should be same result on both sides md5sum file # checksum should be same result on both sides stat -c %s file # byte size should be same result on both sides