Articles

How-to empty CUPS spool

Here is a tiny helper script I call regularly by a cron job to flush the spool of my CUPS server as after several weeks of usage my server end up full of unprinted documents junk: #/bin/sh! service cups stop rm -f /var/spool/cups/* rm -f /var/spool …
➟ Read more

Script de reconnection automatique PPP

Voici un petit script trivial en bash qui, couplé à cron, me permet de maintenir ma connexion internet 56kbps fournie par Free.fr (en attendant l’arrivée du modem ADSL): 1 #!/bin/bash 2 # Script de reconnection automatique 3 4 testconnect() { 5 CONNECT=`ping -c 3 google.com | grep packets …
➟ Read more

Mise en place d’une paserelle ADSL sous Mandrake 10

Voici un long article regroupant toutes mes notes sur mon projet de mise en place d’une passerelle internet tournant sous Linux. Tout commence avec une épave de PC récupéré, composé de: un écran une carte graphique Matrox PCI G200 un bloc d’alimentation un disque dur IDE de 6 …
➟ Read more