
SSH-Login to my server
Whenever I ssh to my server, I get this boring standard Ubuntu message…. and in addition, my prompt is not as colorful as I want it to be….
To get rid of the latter problem, I just changed a line in my ~/.bashrc file:
force_color_prompt=yes;;
(I hade to uncomment it)
To fix the first problem, I first installed fortune and cowsay (this post helped):
apt-get fortunes
apt-get fortunes-off
apt-get cowsay
And then, I added this line at the very top of my .bashrc:
cowsay -f dragon "$(fortune)"
This is more like my style…














