4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 3 / 9
Newer►
178 results tagged linux x
  • Command line one-liners | Arturo Herrero

    Sympa tous ces one liners ! il y a même un repo dans lequel on peut ajouter les siens : https://github.com/fxn/tkn

    Mes préférés :
    $ echo "!!" > script.sh
    $ cp file.txt{,.bak}
    $ (cd /tmp && ls)
    $ nc -l 5566 > data-dump.sql
    $ nc <his-ip-address> 5566 < data-dump.sql

    via Olivier

    January 22, 2014 at 11:41:24 AM GMT+1 - permalink - archive.org - http://arturoherrero.com/2013/11/29/command-line-one-liners/
    bash commandline linux
  • linux - ulimit nofiles and lsof - Super User

    pour voir les limites d'un user : ulimit -a <user>
    Pour setter définitivement : voir fichier /etc/security/limits.conf et limits.d
    Pour setter on the fly, par exemple pour les open files : ulimit -n 32000

    January 7, 2014 at 10:30:52 AM GMT+1 - permalink - archive.org - http://superuser.com/questions/579692/ulimit-nofiles-and-lsof
    files linux ulimit
  • The Best Screen Capture Tool for Linux

    Parce qu'avec l'outil par défaut proposé par gnome3, on ne peut pas faire d'annotation.

    January 5, 2014 at 5:32:08 PM GMT+1 - permalink - archive.org - http://lifehacker.com/5889994/the-best-screen-capture-tool-for-linux
    gnome linux screenshot soft tools
  • thumbnail
    Inter-process communication - Wikipedia, the free encyclopedia
    • http://en.wikipedia.org/wiki/Unix_domain_socket+
    • http://en.wikipedia.org/wiki/Named_pipe
    January 3, 2014 at 5:08:20 PM GMT+1 - permalink - archive.org - http://en.wikipedia.org/wiki/Inter-process_communication
    communication fifo ipc linux pipe process socket unix
  • namei - Linux Command - Unix Command

    Une commande qu'elle est bien :

    namei /path/to/the/deepest/file

    Affiche toutes les permissions + les owners de toute l'arborescence jusqu'au fichier.

    via nicolasc

    December 27, 2013 at 10:13:39 AM GMT+1 - permalink - archive.org - http://linux.about.com/library/cmd/blcmdl1_namei.htm
    arbo droit linux permissions right
  • Valve dévoile la distribution GNU/Linux SteamOS - LinuxFr.org

    :D

    December 16, 2013 at 9:32:55 PM GMT+1 - permalink - archive.org - http://linuxfr.org/news/valve-devoile-la-distribution-gnu-linux-steamos
    linux steam
  • 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
  • Faster Grepping in Vim

    Parait que ça va plus vite que ack
    à tester

    November 28, 2013 at 11:34:13 AM GMT+1 - permalink - archive.org - http://robots.thoughtbot.com/faster-grepping-in-vim/
    ack grep linux vim
  • Ncdu Manual

    Outils en ligne de commande pour trouver ce qui occupe de la place, bien pratique

    November 26, 2013 at 5:55:40 PM GMT+1 - permalink - archive.org - http://dev.yorhel.nl/ncdu/man
    backup file files linux space tools
  • nmon for Linux | Main / HomePage

    Tools de monitoring à tester

    via ArnaudB

    November 26, 2013 at 3:36:51 PM GMT+1 - permalink - archive.org - http://nmon.sourceforge.net/pmwiki.php
    linux monitoring
  • linux - How do I prevent accidental rm -rf /*? - Server Fault

    Sympa le trick pour éviter de rm /*
    via http://links.hoa.ro/

    November 21, 2013 at 9:43:54 AM GMT+1 - permalink - archive.org - http://serverfault.com/questions/337082/how-do-i-prevent-accidental-rm-rf
    linux rf rm shell
  • "Time-Saving Tricks on the Command Line | Linux Journal" http://feedly.com/k/1bykVjE

    qqs tricks à tester + voir man page

    November 17, 2013 at 10:44:29 AM GMT+1 - permalink - archive.org - http://"Time-Saving Tricks on the Command Line | Linux Journal" http://feedly.com/k/1bykVjE
    linux shell tops tricks
  • Swaks - Swiss Army Knife for SMTP

    Swaks is a featureful, flexible, scriptable, transaction-oriented SMTP test tool written and maintained by John Jetmore.

    November 6, 2013 at 1:39:15 PM GMT+1 - permalink - archive.org - http://www.jetmore.org/john/code/swaks/
    linux smtp tool
  • Deprecated Linux networking commands and their replacements | Doug Vitale Tech Blog

    ifconfig netstat route .. autant de cmd à abandonner!

    November 5, 2013 at 9:02:20 AM GMT+1 - permalink - archive.org - https://dougvitale.wordpress.com/2011/12/21/deprecated-linux-networking-commands-and-their-replacements/
    cmd command commande deprecated linux
  • IPCop - Home

    distrib firewall

    November 3, 2013 at 3:44:16 PM GMT+1 - permalink - archive.org - http://www.ipcop.org/
    distrib firewall linux
  • pfSense Open Source Firewall Distribution - Home

    distrib firewall

    November 3, 2013 at 3:43:56 PM GMT+1 - permalink - archive.org - http://www.pfsense.org/
    distrib firewall linux
  • Shell : Historiser (logguer) toutes les commandes shell | L'admin sous GNU / Linux - Blog Libre
    October 31, 2013 at 8:03:55 PM GMT+1 - permalink - archive.org - http://blog.admin-linux.org/administration/shell-historiser-logguer-toutes-les-commandes-shell
    historique linux log
  • Auto-hébergement : IOwait m’a tuer 1/2 (vmstat, mpstat, atop, pidstat) • Blog d'un développeur neurasthénique

    Bon article pour comprendre un peu mieux les histoire d'io

    October 25, 2013 at 11:15:03 AM GMT+2 - permalink - archive.org - http://blog.developpeur-neurasthenique.fr/auto-hebergement-iowait-ma-tuer-1-2-vmstat-mpstat-atop-pidstat.html
    io iowait linux sys
  • caractère caché

    Parfois il arrive qu'un fichier de conf soit corrompu a cause dun caractère invisible a la con qui peut venir dun copier coller ou autre.. Pour vérifier ça, on peut dumper le fichier en affichant ces caractères : car -e fichier

    October 17, 2013 at 9:32:13 AM GMT+2 - permalink - archive.org - https://links.infomee.fr/?s1J7bQ
    cat hash linux shell
  • Synchronizing folders with rsync - Juan Valencia's website

    Pour comprendre un peu mieux certaines subtilités de rsync + compléter mémo

    October 9, 2013 at 2:27:56 PM GMT+2 - permalink - archive.org - http://www.jveweb.net/en/archives/2010/11/synchronizing-folders-with-rsync.html#jveweb_en_014_02
    linux rsync
Links per page: 20 50 100
◄Older
page 3 / 9
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation