Site menu:

Meta

Links:

Site search

Categories

January 2009
M T W T F S S
« Sep    
 1234
567891011
12131415161718
19202122232425
262728293031  

Tags

Blogroll

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 [...]