4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
42 results tagged debian x
  • Elegantly dropping priviledge in an /etc/cron.daily script » Mike / Michael Fogel

    A mettre au début d'un script qui se trouve dans un des dossiers /etc/cron.xxxx pour qu'il soit éxécuté par un utilisateur autre que root.

    !/bin/sh

    USER='some-low-privilege-user'
    if [ whoami != "$USER" ]; then
    sudo -u $USER "$0"
    exit
    fi

    ... rest of the script ...

    9 décembre 2013 à 22:28:22 UTC+1 - permalink - archive.org - http://www.fogel.ca/2010/08/07/elegantly-dropping-priviledge-in-an-etccron-daily-script/
    crontab debian linux
  • How to interpret the status of dpkg (–list)? | Programming in Linux
    4 décembre 2013 à 12:28:16 UTC+1 - permalink - archive.org - http://linuxprograms.wordpress.com/2010/05/11/status-dpkg-list/
    debian dpkg
  • JavaPackage - Debian Wiki

    Créer un package pour oracle jre ou jdk pour une installation plus facile/automatisée

    7 novembre 2013 à 11:02:32 UTC+1 - permalink - archive.org - https://wiki.debian.org/JavaPackage
    debian package
  • thumbnail
    Où trouver les Cron

    crontab -l (pour chaque user) OU ls /var/spool/cron/crontabs/*

    cat /etc/crontab

    for file in $(ls /etc/cron.d); do echo $file && cat $file; done

    for file in $(ls /etc/cron.hourly); do echo $file && cat $file; done
    for file in $(ls /etc/cron.daily); do echo $file && cat $file; done
    for file in $(ls /etc/cron.weekly); do echo $file && cat $file; done
    for file in $(ls /etc/cron.monthly); do echo $file && cat $file; done

    5 novembre 2013 à 10:58:37 UTC+1 - permalink - archive.org - http://www.cyberciti.biz/faq/linux-show-what-cron-jobs-are-setup/
    cron debian
  • Une astuce pour ajouter les dépôts PPA sur Debain | crowd42crowd42

    wget http://blog.anantshri.info/content/uploads/2010/09/add-apt-repository.sh.txt
    mv add-apt-repository.sh.txt /usr/sbin/add-apt-repository
    chmod o+x /usr/sbin/add-apt-repository
    chown root:root /usr/sbin/add-apt-repository

    [09:08:01] root@pc111-11 : /home/arnaud/Téléchargements #cat /usr/sbin/add-apt-repository

    !/bin/bash

    if [ $# -eq 1 ]
    NM=uname -a && date
    NAME=echo $NM | md5sum | cut -f1 -d" "
    then
    ppa_name=echo "$1" | cut -d":" -f2 -s
    if [ -z "$ppa_name" ]
    then
    echo "PPA name not found"
    echo "Utility to add PPA repositories in your debian machine"
    echo "$0 ppa:user/ppa-name"
    else
    echo "$ppa_name"
    echo "deb http://ppa.launchpad.net/$ppa_name/ubuntu lucid main" >> /etc/apt/sources.list
    apt-get update >> /dev/null 2> /tmp/${NAME}_apt_add_key.txt
    key=cat /tmp/${NAME}_apt_add_key.txt | cut -d":" -f6 | cut -d" " -f3
    apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $key
    rm -rf /tmp/${NAME}_apt_add_key.txt
    fi
    else
    echo "Utility to add PPA repositories in your debian machine"
    echo "$0 ppa:user/ppa-name"
    fi

    3 juin 2013 à 09:06:19 UTC+2 - permalink - archive.org - http://www.crowd42.info/une-astuce-pour-ajouter-les-depots-ppa-sur-debain
    debian ppa
  • zip et tar.gz sous linux

    Pour créer une archive de la forme latest_2013-05-19-04-05-23.tar.gz ou .zip

    !/bin/bash

    dotd=date +%F-%H-%M-%S
    tar -pczf /tmp/lastbackup/latest$dotd.tar.gz /var/cache/rsnapshot/hourly.0
    zip -y -9 -r /tmp/lastbackup/latest
    $dotd.zip /var/cache/rsnapshot/hourly.0

    L'option -y permet de ne pas suivre les liens symboliques (ce qui faisait planter mon backup). A enlever si nécessaire.

    19 mai 2013 à 11:07:15 UTC+2 - permalink - archive.org - https://links.infomee.fr/?xC6EMA
    backup debian linux tar zip
  • Top 20 OpenSSH Server Best Security Practices
    8 mai 2013 à 18:21:58 UTC+2 - permalink - archive.org - http://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html
    debian knocking port secure ssh
  • » Linuxaria – Everything about GNU/Linux and Open source Monitor your bandwidth from the Linux shell

    nload sur debian pour monitorer en temps réel la bande passante d'un serveur

    23 mars 2013 à 13:30:34 UTC+1 - permalink - archive.org - http://linuxaria.com/article/monitor-your-bandwidth-from-the-linux-shell?lang=en
    bandwitch bp debian linux monitor networking
  • Télécharger les images de CD de Debian par HTTP ou par FTP

    Pour télécharger des images testing de debian (pas forcément simple de trouver le bon endroit sur le site..)
    Ici les wheezy à l'heure actuelle

    10 mars 2013 à 09:26:14 UTC+1 - permalink - archive.org - http://www.debian.org/CD/http-ftp/
    debian iso linux testing
  • SourcesList - Debian Wiki
    20 décembre 2012 à 16:45:22 UTC+1 - permalink - archive.org - http://wiki.debian.org/SourcesList
    debian repo repository sources
  • Configuration d'exim4 avec Gmail - Linux - debian
    18 décembre 2012 à 10:48:21 UTC+1 - permalink - archive.org - http://dev.petitchevalroux.net/linux/configuration-exim4-avec-gmail-linux.19.html
    debian exim linux mail
  • ShellTricks - Debian Wiki

    Quelques shell tricks du wiki debian

    18 décembre 2012 à 09:29:44 UTC+1 - permalink - archive.org - http://wiki.debian.org/ShellTricks
    debian
  • 8.5. Configurer le courrier électronique
    14 décembre 2012 à 20:44:27 UTC+1 - permalink - archive.org - http://www.debian.org/releases/stable/s390/ch08s05.html.fr
    debian mail vks
  • NetworkConfiguration - Debian Wiki
    17 octobre 2012 à 19:41:20 UTC+2 - permalink - archive.org - http://wiki.debian.org/NetworkConfiguration
    debian network
  • Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On Debian Squeeze
    14 octobre 2012 à 12:32:15 UTC+2 - permalink - archive.org - http://www.howtoforge.com/virtual-hosting-with-pureftpd-and-mysql-incl-quota-and-bandwidth-management-on-debian-squeeze
    debian ftp linux server
  • wiki.debian-fr
    9 octobre 2012 à 14:57:32 UTC+2 - permalink - archive.org - http://www.isalo.org/wiki.debian-fr/index.php?title=Accueil
    debian doc rtfm wiki
  • Préparation d'un vKS OVH avec Debian 6.0 - sorrodje.alter-it.org
    27 septembre 2012 à 08:11:58 UTC+2 - permalink - archive.org - http://sorrodje.alter-it.org/index.php?article14/preparation-d-un-vks-ovh-avec-debian-6-0
    debian install kimsufi procedure
  • Debian-facile / [Resolu] - [Tutoriel] - Micro sous Skype sur Debian Squeeze 64bits
    17 mars 2012 à 13:50:24 UTC+1 - permalink - archive.org - http://debian-facile.org/forum/viewtopic.php?id=3651
    debian micro
  • Debian Tutorials | Debian Squeeze Tutorials | Unix Tutorials

    Des tutoriaux debian en anglais

    14 février 2012 à 11:11:07 UTC+1 - permalink - archive.org - http://www.debian-tutorials.com/
    debian linux tutorials
  • fr/Gnome3 - Debian Wiki
    29 novembre 2011 à 11:52:15 UTC+1 - permalink - archive.org - http://wiki.debian.org/fr/Gnome3
    debian gnome gnomeshell linux
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation