vote up 1 vote down star

What are the first things you do to personalize your shell on a Unix machine? What are the minimum personalized environment settings that you need to function effectively?

oops, sorry, not a regular here and didn't realize the rule...it's a wiki now...

flag
1  
This sounds like a meta question to me. Given that there is no "right" answer to this, you need to mark it as community wiki, or else it may be closed by the time I am finished typing this. – ryeguy Apr 29 at 19:09
Install zsh! This might have not been closed if it were CW... – Zifre Apr 29 at 19:30

closed as not programming related by Michael, ryeguy, Mihai Limbasan, sth, Neil Butterworth Apr 29 at 19:24

6 Answers

vote up 1 vote down
  1. chsh ksh
  2. Write a .profile suitable for the local environment.
link|flag
vote up 0 vote down

alias ll='ls -alh'

link|flag
vote up 0 vote down
  • Setup a decent .bashrc with, e.g. coloured output and a custom $PS1
  • Add a working .vimrc (install vim if necessary). At the very least, set nocompatible.
  • if possible, add a pleasant vim colorscheme.
  • Select the Dvorak - spanish keyboard layout
  • Setup the GUI environment if present. Preferably GNOME, with the 'everyone hates this' file manager mode active.
link|flag
vote up 0 vote down

I create a ".bin" folder in my home directory for personal binaries that aren't needed system wide. These normally consist of scripts I write to make things easier for myself. I then create a ".bash_profile" containing the following:

alias vi=vim
alias ls="ls -l"
alias screen="screen -RAad"
export PATH="$PATH:/home/user/.bin/"
clear

The clear at the end is to get rid of the message of the day. Of course I don't need to read them when I'm the one writing them.

link|flag
vote up 0 vote down
  1. get my SSH keys onto the machine and set up $HOME/.ssh/
  2. chsh to either bash, ksh, or /bin/sh in that order of preference
  3. write a profile (e.g. .bashrc, .profile, etc.)
    • make sure to set some variant of vi as the editor using the appropriate environment vars
    • enable vi-mode command line editing
    • remove "." from my PATH if it is there
    • add $HOME/bin to the end of the PATH
    • set less as my PAGER if it is on the system
  4. set up a .exrc and maybe a .vimrc as well
  5. create $HOME/bin, $HOME/src, and $HOME/tmp
link|flag
vote up 0 vote down

I used to consult for a lot of clients and was always moving from system to system. In that situation, I got used to using only the normal defaults. Well, I did prefer using ksh if it was available.

Seriously, the extra effectiveness and efficiency you imply by your question is probably overstated. Meanwhile, the loss of portability should be considered ("What do you mean, the nifty script I sent didn't work for you? Oh, it needs fifteen customized aliases?").

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.