CORRECT TEXT
CORRECT TEXT Create a backup Create a backup file named /root/backup.tar.bz2, contains the content of /usr/local, tar must use bzip2 to compress.View AnswerAnswer: see explanation below. Explanation cd /usr/local tar Cjcvf /root/backup.tar.bz2 mkdir /test tar Cjxvf /root/backup.tar.bz2 CC /test// Decompression to check the content is the same as the /usr/loca...