Guest User

Untitled

a guest
Feb 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ## Most Important Linux Commands
  2.  
  3. * ls -l
  4. * cd
  5. * mv
  6. * mkdir
  7. * touch
  8. * rm -rf
  9. * man cd
  10. * uname -a
  11. * history
  12. * cal
  13. * Calendar info
  14. * du -sh
  15. * df -h
  16. * cat /proc/meminfo
  17. * free -m
  18.  
  19. ### Zip Command
  20.  
  21. Gzip :
  22.  
  23. * To create a tar.gz archive
  24. * tar -zcvf <tar-archive-name.tar.gz> <source-folder-name>
  25. * To extract a tar.gz compressed archive
  26. * tar -zxvf <tar-archive-name.tar.gz>
  27. * tar -jxvf abc.tar.bz2
  28. * tar -cvf archieve.tar.gz
  29.  
  30. Command | Description
  31. ------- | -----------
  32. Content from cell 1 | Content from cell 2
  33. Content in the first column | Content in the second column
Add Comment
Please, Sign In to add comment