Personalizações
Vou reunir algumas alterações que adoto como padrão nas máquinas desktop ou servers onde tenho contato. Acho interessante se adaptar a um determinado comportamento para que se consiga produzir mais em menos tempo.
Screen:
/etc/screenrc
Shells:
Gentoo:
/etc/rc.conf
/etc/inputrc
bash -> /etc/profile.d/aliases.sh
FreeBSD
shell csh -> /etc/csh.cshrc
shell sh - > /etc/profile
Screen:
/etc/screenrc
#Enable UTF8 for input/output
defutf8 on
# Default encoding
defencoding ISO8859-15
# Automatically detach on hangup.
autodetach on
# Don't display the copyright page
startup_message off
# Change default scrollback value for new windows
defscrollback 1000
vbell on
vbell_msg " Mooo ---- Moo!! "
# Welcome the user:
echo "welcome :-)"
sleep 1
Shells:
Gentoo:
/etc/rc.conf
EDITOR="/usr/bin/vim"
/etc/inputrc
#http://lutierigb.blogspot.com/2008/03/bash-buscando-no-histrico-estilo-csh.html
"\e[5~": history-search-backward
"\e[6~": history-search-forward
bash -> /etc/profile.d/aliases.sh
alias ls="ls -F --color"
alias grep="grep --colour"
alias egrep="egrep --colour"
FreeBSD
shell csh -> /etc/csh.cshrc
alias ls ls -FG
alias grep grep --colour
alias egrep egrep --colour
shell sh - > /etc/profile
PS1="`whoami`@`hostname | sed 's/\..*//'`"
case `id -u` in
0) PS1="${PS1}# ";;
*) PS1="${PS1}$ ";;
esac
alias ls="ls -FG"
alias grep="grep --colour"
alias egrep="egrep --colour"
Marcadores: shell
0 Comentários:
Postar um comentário
<< Home