start new:
tmux
start new with session name:
tmux new -s myname
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |
| ############################################################################ | |
| # _ | |
| # | |_ _ __ ___ _ ___ __ | |
| # | __| '_ ` _ \| | | \ \/ / | |
| # | |_| | | | | | |_| |> < | |
| # \__|_| |_| |_|\__,_/_/\_\ | |
| # | |
| # Cheatsheets: | |
| # https://devhints.io/tmux | |
| # `property not found` issue: |
| !------------------------------------------------------------------------------- | |
| ! Xft settings | |
| !------------------------------------------------------------------------------- | |
| Xft.dpi: 96 | |
| Xft.antialias: false | |
| Xft.rgba: rgb | |
| Xft.hinting: true | |
| Xft.hintstyle: hintslight |
| # This is an example resource file for rTorrent. Copy to | |
| # ~/.rtorrent.rc and enable/modify the options as needed. Remember to | |
| # uncomment the options you wish to enable. | |
| # Maximum and minimum number of peers to connect to per torrent. | |
| min_peers = 1 | |
| max_peers = 100 | |
| # Same as above but for seeding completed torrents (-1 = same as downloading) |
| ! urxvt | |
| URxvt*buffered: true | |
| URxvt*cursorBlink: true | |
| URxvt*underlineColor: yellow | |
| URxvt*font: xft:inconsolata:size=10:antialias=true | |
| URxvt*depth: 32 | |
| URxvt*borderless: 1 | |
| URxvt*scrollBar: false | |
| URxvt*loginShell: true | |
| Urxvt*secondaryScroll: true # Enable Shift-PageUp/Down in screen |
| # http://stackoverflow.com/questions/748324/python-convert-those-tinyurl-bit-ly-tinyurl-ow-ly-to-full-urls | |
| ############# | |
| # urllib2 | |
| import urllib2 | |
| fp = urllib2.urlopen('http://bit.ly/rgCbf') | |
| fp.geturl() | |
| # ==> 'http://webdesignledger.com/freebies/the-best-social-media-icons-all-in-one-place' |
| !! Appearance | |
| urxvt.termName: rxvt-unicode | |
| urxvt.scrollBar: false | |
| urxvt.background: black | |
| urxvt.foreground: gray | |
| !! Font prefferenes | |
| urxvt.font: xft:DejaVu Sans Mono:pixelsize=13 | |
| urxvt.boldFont: xft:DejaVu Sans Mono:pixelsize=13:weight=bold | |
| urxvt.letterSpace: -1 | |
| !! Larger history limit |
| Environment: | |
| Tested with AIX 6.1 TL 8(6100-08-00-0000) and TL 6 (6100-06-01-1043) with Active Directory on 2008R2 domain controllers at the 2003 functional level. | |
| Prerequisites: | |
| DNS: A and PTR records for AIX host in Windows DNS server. | |
| AD: Computer object matching AIX hostname in Active Directory. | |
| AD: A target OU that will contain AIX objects. | |
| AD: At least one “Unix enabled” user in the target OU. (Separate document) | |
| AD: A service account user that will be used for LDAP binds to AD. | |
| AIX: Ensure that the `hostname` command returns the FQDN of the AIX server. |