System

16/06/2016
Print Friendly, PDF & Email

How to chmod 755 all directories but no file (recursively)?

To recursively give directories read&execute privileges: find /path/to/base/dir -type d -exec chmod 755 {} + To recursively give files read privileges: find /path/to/base/dir -type ...

Outil keychain

I. IntroductionCe guide ou « cookbook » est orienté pour des distributions de type Debian (dont Ubuntu fait partie), sachant ...

How to Kill Zombie Process?

Source: Linux Addicted Use Command Check Process: #top or #ps aux or #ps -el or #ps aux | awk '{ ...

Rename all files which contain the sub-string ‘foo’, replacing it with ‘bar’

Source: commandlinefu.com Terminal - Rename all files which contain the sub-string 'foo', replacing it with 'bar' for i in ./*foo*;do ...

How to Use RSA Key for SSH Authentication

If your daily activity requires loging in a lot of Linux systems through SSH, you will be happy to know ...

Se logguer à distance avec ssh (Linux)

Source: Comment ça marche Les commandes suivantes nécessitent d'avoir un compte sur la machine sur laquelle on veut se connecter ...

IPtables dans Webmin

Lorsque vous utilisez Webmin pour administrer votre serveur, les paramètres de votre firewall iptables sont visibles et manageables depuis la ...

Monitoring Ubuntu Desktops and Servers Using Monit

monit is a utility for managing and monitoring, processes, files, directories and devices on a UNIX system. Monit conducts automatic ...

How to convert .rmvb to .avi (on PowerPC and Intel Macs)?

The good news is it’s very easy. The bad news is you’ll need a PowerPC Mac.A big thank you to Bluemint ...

How to Bulk Rename Files in Linux (Terminal or GUI)

Source: Webmaster tips There are several ways to bulk rename files in Linux. If you want to bulk rename files ...

Postfix + fail2ban = win

source: http://blog.dp.cx/25/postfix-fail2ban-win Recently, I had to lease a new server. My old one was ok, but it was 5 years ...

Auto-hébergement: YunoHost Bêta 1 est disponible

Source: linuxfr.org La distribution home-serveur YunoHost, basée sur Debian, a sortie le 31/05/12 sa première version publique. Encore en développement intensif, ...

Surveillance système des machines sur un réseau avec Munin

I. IntroductionMunin est un outil de surveillance basé sur le célèbre RRDTool, permettant de connaître toutes les données systèmes des ...

Best way to backup all settings, list of installed packages, tweaks, etc?

Programs A quick way of backing up a list of programs is to run this: dpkg --get-selections > ~/Package.list sudo ...

Fixing Apache after Ubuntu 13.10 upgrade

Ubuntu 13.10 was released yesterday. As well as other package updates, it includes an upgrade from Apache 2.2 to 2.4, ...

Merging directories (folders) on Mac OS X

Every now and then I find myself in a situation where I have a folder (I’ll call it source) of files ...
Les commentaires sont fermés.