先把一些檔案合併和壓縮
# tar -czvf file.tar.gz filedirectory
之後分割
# split file.tar.gz --bytes=600000000 (about 572 MB)
檢視成果
# ls
xaa xab xac xad xae
之後可以用 FTP 或網頁轉移去第二部機
# wget http://www.yourdomain.com/xaa
# wget http://www.yourdomain.com/xab
# wget http://www.yourdomain.com/xac
# wget http://www.yourdomain.com/xad
# wget http://www.yourdomain.com/xae
才把分割檔合併
# cat x* > file.tar.gz
之後才解壓
# tar -xzvf file.tar.gz
沒有留言:
張貼留言