Advertisement
Guest User

Becoming A Linux Wizard V0.2

a guest
Aug 28th, 2015
2,344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. _LEARNING THE CLI_
  2.  
  3. >Learn Linux by playing a game
  4. http://www.mprat.org/Terminus/
  5.  
  6. >10 keyboard shortcuts to improve your Linux experience
  7. http://www.techrepublic.com/blog/10-things/10-keyboard-shortcuts-to-improve-your-linux-experience/
  8.  
  9. >4 Ways to Teach Yourself Terminal Commands in Linux
  10. http://www.makeuseof.com/tag/4-ways-teach-terminal-commands-linux-si/
  11.  
  12. >Learn UNIX in 10 minutes
  13. http://freeengineer.org/learnUNIXin10minutes.html
  14.  
  15. >LinuxCommand.org: Learning the shell.
  16. http://linuxcommand.org/lc3_learning_the_shell.php
  17.  
  18. >The Cow Says, Have Fun!
  19. http://www.linuxjournal.com/content/cow-says-have-fun
  20.  
  21. Type "man intro" in the terminal, it shows most commonly used commands and how to use man pages
  22. the intro to section 1 of the manual, same as man 1 intro; man 2 intro through man 8 intro also exist
  23.  
  24. or type:
  25.  
  26. whatis command
  27. man command
  28. info command
  29. apropos command
  30.  
  31. You can also find documentation on your own computer at /usr/share/doc
  32.  
  33.  
  34.  
  35. _SCRIPTING ON LINUX_
  36.  
  37. >Bash Shell Scripting
  38. https://en.wikibooks.org/wiki/Bash_Shell_Scripting
  39.  
  40. >Information about scripting
  41. http://wiki.bash-hackers.org/doku.php
  42.  
  43. >Learn Linux The Hard Way
  44. https://nixsrv.com/llthw
  45.  
  46. >Linux Basics « Null Byte How-Tos - ACTUALLY FOR (ethical) HACKING
  47. http://null-byte.wonderhowto.com/how-to/linux-basics/
  48.  
  49.  
  50.  
  51. _LEARN THE SHELL BY EXAMPLE_
  52.  
  53. >List of sample code straight to your terminal
  54. http://bropages.org/
  55.  
  56. >More sample code to your terminal
  57. https://github.com/samirahmed/fu
  58.  
  59. >Yet more example in your terminal
  60. https://github.com/gleitz/howdoi
  61.  
  62.  
  63.  
  64. _CUSTOMIZING THE CLI_
  65.  
  66. >Customizing Your Bash Command Prompt
  67. http://blog.superuser.com/2011/09/21/customizing-your-bash-command-prompt/
  68.  
  69. >How to Customize your Bash Prompt on a Linux VPS
  70. https://www.digitalocean.com/community/tutorials/how-to-customize-your-bash-prompt-on-a-linux-vps
  71.  
  72. >See other people's .bashrc
  73. http://dotshare.it/
  74.  
  75. >Terminal Color Scheme Designer
  76. http://terminal.sexy/
  77.  
  78.  
  79.  
  80. _BUILDING AND INSTALLING SOFTWARE FROM SOURCE_
  81.  
  82. >How to Compile and Install Software from Source Code on Linux
  83. http://www.howtogeek.com/105413/how-to-compile-and-install-from-source-on-ubuntu/
  84.  
  85. >Linux Documentation Project Guides
  86. http://www.tldp.org/guides.html
  87.  
  88. >Single list of HOWTOs
  89. http://www.tldp.org/HOWTO/HOWTO-INDEX/howtos.html
  90.  
  91.  
  92.  
  93. _GOING PROFESSIONAL_
  94.  
  95. >Introduction to Linux - FREE ONLINE COURSE
  96. https://www.edx.org/course/introduction-linux-linuxfoundationx-lfs101x-2
  97.  
  98. >The Linux Command Line - FREE EBOOK
  99. http://sourceforge.net/projects/linuxcommand/
  100.  
  101. >Debian's Administrators Handbook - FREE EBOOK
  102. https://debian-handbook.info/get/now/
  103.  
  104. >Professional resource on Linux
  105. https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/
  106.  
  107. >About exams and certifications for Linux
  108. https://www.lpi.org/study-resources/
  109.  
  110.  
  111.  
  112. _ADVANCED WIZARDRY_
  113.  
  114. >X Window System
  115. https://en.wikipedia.org/wiki/X_Window_System
  116.  
  117. >X Window System protocols and architecture
  118. https://en.wikipedia.org/wiki/X_Window_System_protocols_and_architecture
  119.  
  120. >Guide to X11
  121. https://en.wikibooks.org/wiki/Guide_to_X11
  122.  
  123. >Guide to Unix/Commands/X11
  124. https://en.wikibooks.org/wiki/Guide_to_Unix/Commands/X11
  125.  
  126. >X Window Programming
  127. https://en.wikibooks.org/wiki/X_Window_Programming
  128.  
  129. Want to go deeper? Install "Linux from Scratch":
  130. http://www.linuxfromscratch.org/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement