Posted on June 17th, 2008 by linux
Here is a very nice vim / vi text editor tutorial for beginnes as well as for more advanced users. Its very easy to follow as it has flash video attached to every section. vi editor tutorial
Filed under: Administration, Fun and Linux, Linux | No Comments »
Posted on June 13th, 2008 by linux
Sometimes you encounter situation when you need a perl module to support your program but perl module is not available from standard linux repositories. Installing perl module from source code is not always good idea so what would be the best is to create package for a particular module using dh-make-perl command. In my case [...]
Filed under: Administration, Debian, Linux, Perl, Ubuntu | No Comments »
Posted on June 4th, 2008 by linux
When documenting my server installation I needed to have a list of packages installed on my server. dpkg –get-selections is great help but it returns values/packages each on separate line including “installed” keyword. This command returns list of installed packages in the single block separated with single space:
dpkg –get-selections | awk ‘{ print $1; }’| [...]
Filed under: Administration, Commands, Debian, Linux, Ubuntu | No Comments »