All posts in Linux

Linux nén và giải nén file

Compress Issue the Command: # tar cvzf backup.tar.gz /var/www Where: c – create backup v – verbose output z – compress in gzip f – backup file name The backup will be created in your current working directory. Use ls command to list it   Uncompress $ tar xvzf backup.tar.gz . . . Read more