Linux simple instructions

1. Modify permission:
chmod -R 777 *
where: all the files in the directory -R
777 highest authority

2. archive:
tar -czvf test.tar.gz A.ch
which: test.tar.gz compressed file name
ac compressed file name

3. Unzip the file:
tar-xzvf test.tar.gz

Guess you like

Origin www.cnblogs.com/qq673613920/p/11301794.html