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 ...

    December 9, 2013 at 10:28:22 PM GMT+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
    December 4, 2013 at 12:28:16 PM GMT+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

    November 7, 2013 at 11:02:32 AM GMT+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

    November 5, 2013 at 10:58:37 AM GMT+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

    June 3, 2013 at 9:06:19 AM GMT+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.

    May 19, 2013 at 11:07:15 AM GMT+2 - permalink - archive.org - https://links.infomee.fr/?xC6EMA
    backup debian linux tar zip
  • Top 20 OpenSSH Server Best Security Practices
    May 8, 2013 at 6:21:58 PM GMT+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

    March 23, 2013 at 1:30:34 PM GMT+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

    March 10, 2013 at 9:26:14 AM GMT+1 - permalink - archive.org - http://www.debian.org/CD/http-ftp/
    debian iso linux testing
  • SourcesList - Debian Wiki
    December 20, 2012 at 4:45:22 PM GMT+1 - permalink - archive.org - http://wiki.debian.org/SourcesList
    debian repo repository sources
  • Configuration d'exim4 avec Gmail - Linux - debian
    December 18, 2012 at 10:48:21 AM GMT+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

    December 18, 2012 at 9:29:44 AM GMT+1 - permalink - archive.org - http://wiki.debian.org/ShellTricks
    debian
  • 8.5. Configurer le courrier électronique
    December 14, 2012 at 8:44:27 PM GMT+1 - permalink - archive.org - http://www.debian.org/releases/stable/s390/ch08s05.html.fr
    debian mail vks
  • NetworkConfiguration - Debian Wiki
    October 17, 2012 at 7:41:20 PM GMT+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
    October 14, 2012 at 12:32:15 PM GMT+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
    October 9, 2012 at 2:57:32 PM GMT+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
    September 27, 2012 at 8:11:58 AM GMT+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
    March 17, 2012 at 1:50:24 PM GMT+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

    February 14, 2012 at 11:11:07 AM GMT+1 - permalink - archive.org - http://www.debian-tutorials.com/
    debian linux tutorials
  • fr/Gnome3 - Debian Wiki
    November 29, 2011 at 11:52:15 AM GMT+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