Site Archives

Why Django?


I am now using Django (a python web MVC framework) for several web development I am involved. I have been questioned several times for the reasons of this choice. In this post, I will try to explain the reasons that lead us to work with Django.
We had to develop several web applications, and we do [...]

Command not found for zsh


Thanks to Johan Kiviniemi, the last upload of the command-not-found package in Feisty added support for zsh:

lionel@ouessant ~ % echo $ZSH_VERSION
4.3.2
lionel@ouessant ~ % mutt
zsh: command not found: mutt
The program ‘mutt’ is currently not installed. You can install it by typing:
sudo apt-get install mutt

My colleagues are going to be happy now!

command-not-found package in Ubuntu


The package command-not-found is now part of the default Ubuntu Desktop installation. What does the command-not-found package do ? Let’s take an example:

lionel@ouessant:~$ mutt
The program ‘mutt’ is currently not installed. You can install it by typing:
sudo apt-get install mutt
bash: mutt: command not found

When a command is not found in your computer, it search in [...]