Setting up a development environment in Fedora 18
Useful tools to install # # Editors. You should install both of these. # sudo yum -y install vim-enhanced emacs sudo yum -y install emacs # # Useful and fun languages. # sudo yum -y install perl ruby sudo yum -y install ghc # Haskell sudo yum -y install gcc gcc-c++ clang # You should have two compilers # # Development support tools. # sudo yum -y install perf valgrind # # Source code revision control. # sudo yum -y install git sudo yum -y install gitg sudo yum -y install gitk Bash configuration Add these lines to your .bashrc file: # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # don't put duplicate lines in the history. See bash(1) for more options export HISTCONTROL=ignoredups # ... and ignore same sucessive entries. export HISTCONTROL=ignoreboth # ... and add timestamps export HISTTIMEFORMAT="[%F %T] " # ch...