Month: August 2013
-
FIX has missing requires of
From here.: yum check dependencies \ | grep ‘has missing requires’ \ | sed ‘s/.\+has missing requires of //’ \ | sed ‘s/ [=].\+//’ \ | while read dep; do yum -y install “$dep”; done
-
TMUX Toggle pane synchronize key
In tmux.conf, add: bind e set -g synchronize-panes Prefix-e now toggles pane synchronization.
-
Fix: Terminal entry not found in terminfo ‘screen-256color’ not known
I got: E558: Terminal entry not found in terminfo ‘screen-256color’ not known. Available builtin terminals are: … This means that the remote host you are working on does not know about the terminal ‘screen-256color’. Fix: local$ infocmp screen-256color > screen-256color.ti local$ scp screen-256color.ti remote: local$ ssh remote remote $ sudo yum install ncurses ncurses-bin #optional…