4360 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 2 / 9
Newer►
178 results tagged linux x
  • thumbnail
    Russell91/sshrc · GitHub

    wow could be useful

    via skunnyk

    September 19, 2014 at 10:26:30 AM GMT+2 - permalink - archive.org - https://github.com/Russell91/sshrc
    linux rc dotconf dotrc ssh
  • thumbnail
    unix - How can I pretty-print JSON? - Stack Overflow

    How to pretty print a json string :

    cat pref.json | python -m json.tool

    for uuoc nazi ;) :

    < pref.json python -m json.tool
    or
    python -m json.tool < pref.json

    September 3, 2014 at 10:33:46 AM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/352098/how-can-i-pretty-print-json
    json python linux commandline pretty print
  • thumbnail
    How to rename all folders and files to lowercase on Linux? - Stack Overflow

    Merci à ce mec, il m'a fait gagner du temps ^^

    find my_root_dir -depth -exec rename 's/(.)\/([^\/])/$1\/\L$2/' {} \;

    July 22, 2014 at 4:59:27 PM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/152514/how-to-rename-all-folders-and-files-to-lowercase-on-linux
    rename linux lowercase
  • Mise aux poings sur systemd
    July 11, 2014 at 10:26:49 AM GMT+2 - permalink - archive.org - http://linuxfr.org/news/mise-aux-poings-sur-systemd
    systemd linux
  • thumbnail
    Improved default settings for Linux machines
    July 11, 2014 at 10:26:08 AM GMT+2 - permalink - archive.org - http://tobert.github.io/post/2014-06-24-linux-defaults.html
    linux settings
  • Ucarp — Wikipédia

    via arnaudb

    June 19, 2014 at 11:11:50 AM GMT+2 - permalink - archive.org - http://fr.wikipedia.org/wiki/Ucarp
    ha linux
  • thumbnail
    Deprecated Linux networking commands and their replacements | Doug Vitale Tech Blog
    June 5, 2014 at 8:22:32 AM GMT+2 - permalink - archive.org - http://dougvitale.wordpress.com/2011/12/21/deprecated-linux-networking-commands-and-their-replacements/
    ip linux networking
  • thumbnail
    Un ecrit sur les rootkit

    rkhunter chkrootkit tripwire AIDE

    June 4, 2014 at 10:40:55 PM GMT+2 - permalink - archive.org - http://www.sans.org/reading-room/whitepapers/linux/linux-rootkits-beginners-prevention-removal-901
    rootkit security linux
  • thumbnail
    ▶ "Linux Sucks" - 2014 - YouTube

    ya du vrai la dedans :D

    May 13, 2014 at 1:25:47 PM GMT+2 - permalink - archive.org - https://www.youtube.com/watch?v=5pOxlazS3zs
    linux conf sys
  • rgrep grep -r et grep -R

    rgrep et grep -r sont équivalents : on cherche récursivement

    grep -R est légerement différent dans le sens où il va suivre les liens symboliques ce qui peut être plus pratique..

    April 29, 2014 at 11:38:41 AM GMT+2 * - permalink - archive.org - https://links.infomee.fr/shaare/xsOUWg
    grep linux
  • /proc/sys/net/ipv4/conf/

    La doc des propriétés : https://github.com/torvalds/linux/blob/master/Documentation/networking/ip-sysctl.txt

    Ensuite on peut les définir dans le dossier spécifique à l'interface, exemple : /proc/sys/net/ipv4/conf/eth0/
    Ou dans le dossier all : /proc/sys/net/ipv4/conf/all

    Exemple :

    La valeur pour ehto concernant la propriété arp_filter ne dépend pas seulement de /proc/sys/net/ipv4/conf/eth0/arp_filter mais aussi de /proc/sys/net/ipv4/conf/all/arp_filter
    D'après la doc, arp_filter est un boolean (0 ou 1)

    D'après ces liens :
    http://marc.info/?l=linux-kernel&m=123606366021995&w=2
    https://github.com/torvalds/linux/blob/master/include/linux/inetdevice.h (ligne 123 : #define IN_DEV_ARPFILTER(in_dev) IN_DEV_ORCONF((in_dev), ARPFILTER))

    On utilise un OR pour déterminer la valeur finale : il suffit qu'un des deux arp_filter soit à 1.

    Si la propriété n'est pas un boolean mais un integer qui peut prendre 0,1,2,etc... la valeur choisie entre le "all" et le "eth0" sera la valeur MAX d'après ce que j'ai compris.

    On retrouve ce fonctionnement dans d'autres dossiers :
    /proc/sys/net # find . -type d -name eth0
    ./ipv4/neigh/eth0
    ./ipv4/conf/eth0
    ./ipv6/neigh/eth0
    ./ipv6/conf/eth0

    Pour consulter :
    sysctl -a | grep arp_filter
    Pour modifier :
    à la volée :
    echo "1" > /proc/sys/net/ipv4/conf/...
    ou sysctl -w net.ipv4.conf.eth1.arp_filter=1
    persistant au reboot :
    /etc/sysctl.conf
    /etc/init.d/procps restart

    à notre un truc vicieux :
    /etc/init.d/procps restart n'a pas le meme effet qu'un reboot complet
    si on set une propriété à la volée à 1 comme net.ipv4.conf.eth1.arp_filter par exemple
    elle va rester à 1 apres un /etc/init.d/procps restart
    par contre elle se remet bien à 0 apres un reboot

    April 2, 2014 at 3:22:09 PM GMT+2 * - permalink - archive.org - https://links.infomee.fr/shaare/ztr7EA
    linux sys sysctl ipv4
  • thumbnail
    suckless.org dwm - dynamic window manager
    April 2, 2014 at 2:19:30 PM GMT+2 - permalink - archive.org - http://dwm.suckless.org/
    window_manager linux
  • thumbnail
    about - awesome window manager
    April 2, 2014 at 2:19:04 PM GMT+2 - permalink - archive.org - http://awesome.naquadah.org/
    window_manager linux
  • https://github.com/torvalds/linux/blob/master/Documentation/networking/ip-sysctl.txt

    Documentation sysctl

    April 2, 2014 at 2:12:49 PM GMT+2 - permalink - archive.org - https://github.com/torvalds/linux/blob/master/Documentation/networking/ip-sysctl.txt
    documentation sysctl linux kernel
  • thumbnail
    Operation Windigo: Linux malware campaign that infected 500,000 Computers Worldwide - The Hacker News

    Oh shit

    March 18, 2014 at 11:25:07 PM GMT+1 - permalink - archive.org - http://thehackernews.com/2014/03/operation-windigo-linux-malware.html
    malware virus linux security
  • thumbnail
    Optimiser son SSD sous Linux - P3ter.fr

    Au cas ou un jour je passe mon desktop sous linux.

    via arnaudb

    February 25, 2014 at 1:51:28 PM GMT+1 - permalink - archive.org - http://p3ter.fr/article53/optimiser-son-ssd-sous-linux
    ssd linux
  • thumbnail
    Drop Caches - linux-mm.org Wiki
    February 13, 2014 at 4:12:32 PM GMT+1 - permalink - archive.org - http://linux-mm.org/Drop_Caches
    cache linux
  • thumbnail
    Using fastpath software to boost performance of Linux-based home network routers | Embedded
    February 13, 2014 at 10:42:52 AM GMT+1 - permalink - archive.org - http://www.embedded.com/design/programming-languages-and-tools/4425631/Using-fastpath-software-to-boost-performance-of-Linux-based-home-network-routers
    routing linux
  • thumbnail
    Distributions GNU Linux orientées sécurité | Cypherpunk

    Tiens je connaissais pas ce blog de bluetouff

    February 11, 2014 at 1:59:43 PM GMT+1 - permalink - archive.org - http://cypherpunk.fr/distributions-gnu-linux-orientees-securite/
    security blog linux hack
  • thumbnail
    A Unix Utility You Should Know About: lsof - good coders code, great reuse

    Exemples d'utilisation de lsof

    February 7, 2014 at 11:46:45 AM GMT+1 - permalink - archive.org - http://www.catonmat.net/blog/unix-utilities-lsof/
    lsof linux socket file
Links per page: 20 50 100
◄Older
page 2 / 9
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation