# How do /r/linuxers share custom dotfiles? http://www.reddit.com/r/linux/comments/1j7y7x/how_do_rlinuxers_share_custom_dotfiles/ # Logcheck, be lazy with checking logs http://logcheck.org/ https://www.youtube.com/watch?v=1QgbnK45IRg&feature=player_detailpage&list=PL170C8C4DDB2961B2&t=2999 # Pretty Ping! http://www.reddit.com/r/linux/comments/1op98a/prettypingsh_a_better_ui_for_watching_ping/ # How to run a process on a specific core http://xmodulo.com/2013/10/run-program-process-specific-cpu-cores-linux.html # How to kill process http://www.cyberciti.biz/faq/kill-process-in-linux-or-terminate-a-process-in-unix-or-linux-systems/ # How to roll out your own Debian distro http://www.staldal.nu/tech/2011/12/11/how-to-roll-your-own-debian-based-linux-distro/ # OTP (GAuth) @ CLI http://otp.readthedocs.org/en/latest/ # Run stuff colaboratively on a server. http://www.reddit.com/r/sysadmin/comments/tqo7b/til_rundeck_is_a_great_tool_to_run_commands/ # About the Linux graphics stack - continued http://www.reddit.com/r/linux/comments/1twuhi/xplain_explaining_x11_for_the_rest_of_us_jasper/ # Generate random strings http://www.howtogeek.com/howto/30184/10-ways-to-generate-a-random-password-from-the-command-line/ # An Illustrated Guide to SSH Agent Forwarding http://www.unixwiz.net/techtips/ssh-agent-forwarding.html [[[ General resources & Blogs ]]] http://inconsolation.wordpress.com/index/ # Explains commands and their flags. VERY USEFUL! http://explainshell.com/ # How does Linux boot? http://www.ibm.com/developerworks/library/l-linuxboot/ http://www.catonmat.net/blog/bash-one-liners-explained-part-one/ # Debian minimal http://linuxforcynics.com/how-to/minimal-debian-install http://ask.debian.net/questions/what-s-the-first-thing-you-do-after-you-install-debian # BroPages http://bropages.org/browse # Install WordPress on CentOS 6.x http://www.geekpeek.net/install-wordpress-on-centos/ http://www.tecmint.com/install-wordpress-using-lamp-or-lemp-on-rhel-centos-fedora/ [ LOL ] http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454 [ YouTube chans ] https://www.youtube.com/channel/UCbNxlZZVmfP8n84ag-rGpMg/videos http://www.youtube.com/user/theurbanpenguin/videos?view=1&flow=list [[[ Dev ]]] http://devdocs.io/ [[[ ~ Audio ~ ]]] http://www.reddit.com/r/linux/comments/1nun4f/using_linux_to_make_music_whats_the_deal/ https://wiki.archlinux.org/index.php/Pro_Audio http://alsa.opensrc.org/ http://tuxradar.com/content/how-it-works-linux-audio-explained http://stackoverflow.com/questions/20118941/linux-audio-sub-systems http://0pointer.de/blog/projects/guide-to-sound-apis.html https://forum.ableton.com/viewtopic.php?f=4&t=187391 https://github.com/wedesoft/hornetseye-alsa https://github.com/torvalds/linux/tree/master/Documentation/sound/alsa http://manual.ardour.org/synchronization/latency-and-latency-compensation/ http://wiki.linuxaudio.org/wiki/system%20configuration#build_your_own_real-time_kernel_on_debian_wheezy_or_later # Troubleshooting lsusb / lspci cat /proc/asound/cards aplay -l aplay-L [[[ GAEMZ ]]] # TribesNext (Tribes2 re-implementation) under Linux http://www.tribesnext.com/forum/index.php?topic=2095.0 [[[ Damage Control ]]] # What to do when altering remote machines http://www.reddit.com/r/linux/comments/1kdf37/what_are_some_of_your_major_linux_fk_ups/cbnzb11 # How to shred recursively in directories http://www.linuxforums.org/forum/miscellaneous/46693-how-shred-entire-directory-tree.html#post257616 [[[ VIM ]]] http://www.reddit.com/r/linux/comments/1kdvq5/til_that_vim_has_tabs_thats_wonderful/ http://stackoverflow.com/questions/1218390/what-is-your-most-productive-shortcut-with-vim [[[ Shell scripting ]]] http://mywiki.wooledge.org/ http://www.gnu.org/software/bash/manual/bashref.html#Introduction ====================================================================== HANDY COMMANDOS --- # Archive directory tar -cvWf archive_name.tar dir_name # Extract archive tar -xvf archive_name.tar # GPG encrypt gpg -ac archive_name.tar # GPG decrypt gpg -d archive_name.tar.asc > archive_name.tar --- # CLI pastebin alias alias apaste='curl -F '\''paste=<-'\'' http://apaste.info/store' # Do The Right Extract http://brettcsmith.org/2007/dtrx/ # How to check install size of packages (debian based) dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | less # Badblocks badblocks -nsv -p2 -o ./badblocksresult.txt /dev/sdX # Watch progress of dd watch -n 1 killall -USR1 dd # What's the best rsync command? rsync -avPHSxh diff <(ls /tmp/folder1) <(ls /tmp/folder2) # diff output of 2 commands diff -r /tmp/folder1 /tmp/folder2 # diff 2 dirs