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 / 9
Newer►
178 results tagged linux x
  • Russell91/sshrc · GitHub

    wow could be useful

    via skunnyk

    19 septembre 2014 à 10:26:30 UTC+2 - permalink - archive.org - https://github.com/Russell91/sshrc
    dotconf dotrc linux rc 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

    3 septembre 2014 à 10:33:46 UTC+2 - permalink - archive.org - http://stackoverflow.com/questions/352098/how-can-i-pretty-print-json
    commandline json linux pretty print python
  • 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/' {} \;

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

    via arnaudb

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

    rkhunter chkrootkit tripwire AIDE

    4 juin 2014 à 22:40:55 UTC+2 - permalink - archive.org - http://www.sans.org/reading-room/whitepapers/linux/linux-rootkits-beginners-prevention-removal-901
    linux rootkit security
  • ▶ "Linux Sucks" - 2014 - YouTube

    ya du vrai la dedans :D

    13 mai 2014 à 13:25:47 UTC+2 - permalink - archive.org - https://www.youtube.com/watch?v=5pOxlazS3zs
    conf linux 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..

    29 avril 2014 à 11:38:41 UTC+2 - permalink - archive.org - https://links.infomee.fr/?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

    2 avril 2014 à 15:22:09 UTC+2 - permalink - archive.org - https://links.infomee.fr/?ztr7EA
    ipv4 linux sys sysctl
  • suckless.org dwm - dynamic window manager
    2 avril 2014 à 14:19:30 UTC+2 - permalink - archive.org - http://dwm.suckless.org/
    linux window_manager
  • about - awesome window manager
    2 avril 2014 à 14:19:04 UTC+2 - permalink - archive.org - http://awesome.naquadah.org/
    linux window_manager
  • https://github.com/torvalds/linux/blob/master/Documentation/networking/ip-sysctl.txt

    Documentation sysctl

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

    Oh shit

    18 mars 2014 à 23:25:07 UTC+1 - permalink - archive.org - http://thehackernews.com/2014/03/operation-windigo-linux-malware.html
    linux malware security virus
  • Optimiser son SSD sous Linux - P3ter.fr

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

    via arnaudb

    25 février 2014 à 13:51:28 UTC+1 - permalink - archive.org - http://p3ter.fr/article53/optimiser-son-ssd-sous-linux
    linux ssd
  • Drop Caches - linux-mm.org Wiki
    13 février 2014 à 16:12:32 UTC+1 - permalink - archive.org - http://linux-mm.org/Drop_Caches
    cache linux
  • Using fastpath software to boost performance of Linux-based home network routers | Embedded
    13 février 2014 à 10:42:52 UTC+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
    linux routing
  • Distributions GNU Linux orientées sécurité | Cypherpunk

    Tiens je connaissais pas ce blog de bluetouff

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

    Exemples d'utilisation de lsof

    7 février 2014 à 11:46:45 UTC+1 - permalink - archive.org - http://www.catonmat.net/blog/unix-utilities-lsof/
    file linux lsof socket
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