Advertisement
Guest User

Becoming A Linux Wizard V0.3

a guest
Sep 8th, 2015
1,327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 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. _SCRIPTING ON LINUX_
  35.  
  36. >Bash Shell Scripting
  37. https://en.wikibooks.org/wiki/Bash_Shell_Scripting
  38.  
  39. >Information about scripting
  40. http://wiki.bash-hackers.org/doku.php
  41.  
  42. >Learn Linux The Hard Way
  43. https://nixsrv.com/llthw
  44.  
  45. >Advanced Bash Shell Scripting Guide - Advanced Bash-Scripting Guide
  46. http://www.linuxtopia.org/online_books/advanced_bash_scripting_guide/
  47.  
  48. >Linux Basics « Null Byte How-Tos - ACTUALLY FOR (ethical) HACKING
  49. http://null-byte.wonderhowto.com/how-to/linux-basics/
  50.  
  51. >Linux Training Videos | Professor Messer IT Certification Training Courses
  52. http://www.professormesser.com/linux-plus/linux-training-videos/
  53.  
  54.  
  55. _LEARN THE SHELL BY EXAMPLE_
  56.  
  57. >List of sample code straight to your terminal
  58. http://bropages.org/
  59.  
  60. >More sample code to your terminal
  61. https://github.com/samirahmed/fu
  62.  
  63. >Yet more example in your terminal
  64. https://github.com/gleitz/howdoi
  65.  
  66.  
  67. _CUSTOMIZING THE CLI_
  68.  
  69. >Customizing Your Bash Command Prompt
  70. http://blog.superuser.com/2011/09/21/customizing-your-bash-command-prompt/
  71.  
  72. >How to Customize your Bash Prompt on a Linux VPS
  73. https://www.digitalocean.com/community/tutorials/how-to-customize-your-bash-prompt-on-a-linux-vps
  74.  
  75. >See other people's .bashrc
  76. http://dotshare.it/
  77.  
  78. >Terminal Color Scheme Designer
  79. http://terminal.sexy/
  80.  
  81.  
  82. _BUILDING AND INSTALLING SOFTWARE FROM SOURCE_
  83.  
  84. >How to Compile and Install Software from Source Code on Linux
  85. http://www.howtogeek.com/105413/how-to-compile-and-install-from-source-on-ubuntu/
  86.  
  87. >Linux Documentation Project Guides
  88. http://www.tldp.org/guides.html
  89.  
  90. >Single list of HOWTOs
  91. http://www.tldp.org/HOWTO/HOWTO-INDEX/howtos.html
  92.  
  93.  
  94. _GOING PROFESSIONAL_
  95.  
  96. >Introduction to Linux - FREE ONLINE COURSE
  97. https://www.edx.org/course/introduction-linux-linuxfoundationx-lfs101x-2
  98.  
  99. >The Linux Command Line - FREE EBOOK
  100. http://sourceforge.net/projects/linuxcommand/
  101.  
  102. >Debian's Administrators Handbook - FREE EBOOK
  103. https://debian-handbook.info/get/now/
  104.  
  105. >Professional resource on Linux
  106. https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/
  107.  
  108. >About exams and certifications for Linux
  109. https://www.lpi.org/study-resources/
  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