Daily tip

Is there any known distro to have a failsafe or transactional model in its core?

NixOS (https://nixos.org), among other features, gives the possibility to always rollback in a transactional way to a previous system state without using any external software backup or snapshots like in VMware.

Daily tip

How to create a password which can be used to grant access to some areas in your server?

With the Apache utility htpasswd like in the example below

htpasswd -c /usr/local/apache/passwd/passwords rbowen

Note that the password file must be outside the DocumentRoot FOlder and therefore outside from Internet reach, for obvious reasons.

Daily tip

How do I list the content of a Debian package?

$ dpkg –contents <package>

or

$ dpkg -c <package>

Daily tip

How can avoid that a process is killed when the controlling (shell) terminal exits?

$ man nohup