usare PGP: GNU Privacy Guard

Installazione da codice sorgente Scaricare da gnupg.linux.it, o altro mirror, il sorgente di GnuPG. Quindi de-comprimere e installare il software: ./configure –prefix=/usr –sysconfdir=/etc –infodir=/usr/share/info –mandir=/usr/share/man –enable-static-rnd=linux –enable-m-guard make su make install Installazione su Debian Lanciare il seguente comando come utente root: apt-get install gnupg il programma verra installato automaticamente e avrete un output simile al [...]

CVS, SubVersion, Mercurial: control version software comparison

CVS CVS is the ancestor of all the today’s fancy control version software: SVN, GIT, Bazaar, Mercurial, etc. CVS is used with command line tool: “cvs” CVS work with a “repository” this is specified with the command line switch “-d” or using the shell variable CVSROOT The most common command are: create a repository: cvs [...]

GDB: the GNU debugger

gdb is the command line tool to debug any Linux binary that has not been stripped or a core file. A core is a file left around by an application when it crashes. If your lazy you can use many frontends to gdb for example: cgdb – console debugger ddd – ultra nice graphic debugger [...]

using GNU Autoconf and Automake

When you have a project that needs to be compiled under all the Linux, BSD, Unix, and all the other junk OS outside here you’ll soon end up with a tons of block of source code that need conditional compiling, i.e. #ifdef – #endif Writing a Makefile by hand that automatically detect your OS and [...]