Dokeos single database - don't let yourself get tricked

I wanted to write this post for two reasons:
  1. to remind everybody that we (the Dokeos company) continue to vaguely support this mode because we understand it is still more practical when installing it on a free/cheap hosting server
  2. to help you avoid the tricky issue in the installation process when deciding which main db name to use
As the first point is pretty much complete, I'll go straight to the second point. In the Dokeos installation process, the database configuration screen asks you for a prefix and a database name.

UNIX Tools - examples

Here are a few examples you'll probably find useful at some point. Counting the number of lines of a C project
$ wc -l `find -name "*.[ch]"|xargs`
Execute a command on a directory and all its subdirectories
$ find "path" -exec "command" {} ;
Deleting all the files not accessed for 1 day in the current directory and all its subdirectories
$ find .

SSH

SSH (the Secure SHell) is a secure replacement for many UNIX tools like telnet, ftp, rsh, rcp, rlogin, rexec, and many more, which have proven to be insecure, even if most UNIX systems still use them by default, and even Microsoft has now begun to integrate those into his operating systems. I'll talk about the most used one, and free OpenSSH, which has been created by the OpenBSD team.

Pagers (more, ...)

Pagers are commonly used under UNIX, because many, many documents are just plain text or text output of other commands or tools. The best known is more because it's also the oldest still living out there. less or most are clones, which bring together a lot of missing features to more and can be used to completely replace it.