# 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/ [[[ General resources & Blogs ]]] http://inconsolation.wordpress.com/index/ # How does Linux boot? http://www.ibm.com/developerworks/library/l-linuxboot/ [[[ ~ 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 # 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 --- # How to check install size of packages (debian based) dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | less