Archive for 'linux debian ubuntu'
using tar to back up file with ftp
If you want to backup and upload to a ftp server you can do the following
using linux tar command
>tar cf test.tar dirname/
no compression
>tar cfz test.tar.gz dirname/
tar and compress with gzip
>tar cfj test.tar.bz dirname/
tar and bunzip commpression.
After you have done above you can ftp the test.tar file to aremote ftp server.
or you can do all the [...]
Posted: August 13th, 2008 under linux debian ubuntu.
Comments: 1