4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
29 results tagged sys x
  • It Was Never Going to Work, So Let’s Have Some Tea sur Vimeo

    fun :)

    December 4, 2015 at 3:52:54 PM GMT+1 - permalink - archive.org - https://vimeo.com/146524997
    sys sysadmin talk video
  • Uptime Funk - SUSECon 2015 (Uptown Funk Parody) - YouTube

    :D :D :D

    November 6, 2015 at 4:02:04 PM GMT+1 - permalink - archive.org - https://www.youtube.com/watch?v=zbABy9ul11I
    fun lol sys sysadmin
  • Discover and discuss the best dev tools and cloud infrastructure services | StackShare

    via skunnyk

    May 19, 2015 at 10:35:53 AM GMT+2 - permalink - archive.org - http://stackshare.io/
    ops stack sys
  • StackOverflow Update: 560M Pageviews a Month, 25 Servers, and It's All About Performance - High Scalability -

    infra StackOverflow

    July 22, 2014 at 2:36:02 PM GMT+2 - permalink - archive.org - http://highscalability.com/blog/2014/7/21/stackoverflow-update-560m-pageviews-a-month-25-servers-and-i.html
    devops sys
  • Introducing nagios-herald « Code as Craft

    Cool comme plugin. En deux mots ça permet d'améliorer les alertes Nagios en ajoutant un "contexte" au traditionnel message. Par exemple un graph rrd, le résultat d'une commande, une illustration visuelle du probleme..

    • https://github.com/etsy/nagios-herald
    June 10, 2014 at 11:38:19 AM GMT+2 - permalink - archive.org - http://codeascraft.com/2014/06/06/introducing-nagios-herald/
    contexte monitoring nagios sys
  • HAProxy packages for Debian and Ubuntu
    May 26, 2014 at 1:12:07 PM GMT+2 - permalink - archive.org - http://haproxy.debian.net/
    debian haproxy sys
  • ▶ "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
    conf linux sys
  • GTIDs in MySQL 5.6: New replication protocol, ways to break replication

    nouveau protocole de replication mysql

    via Skunnyk

    May 12, 2014 at 10:48:51 AM GMT+2 - permalink - archive.org - http://www.mysqlperformanceblog.com/2014/05/09/gtids-in-mysql-5-6-new-replication-protocol-new-ways-to-break-replication/
    gtid mysql sys
  • DevOps for People Who Hate DevOps - Rigel Group

    Intro ansible par un fan
    Via arnaudb

    April 13, 2014 at 9:28:36 PM GMT+2 - permalink - archive.org - http://www.rigelgroupllc.com/blog/2013/06/10/devops-for-people-who-hate-devops/
    ansible sys
  • thumbnail
    github.com/buger/gor

    Un outil de capture de trafic HTTP qui peut le rejouer en direct ou bien le dumper dans un fichier pour le rejouer plus tard.

    April 9, 2014 at 11:34:55 AM GMT+2 - permalink - archive.org - https://github.com/buger/gor
    capture dump http sys trafic
  • So, you wanna be a sysadmin ? (Trolldi inside)

    Je suis content de pas les avoir en direct eux

    April 9, 2014 at 11:00:53 AM GMT+2 - permalink - archive.org - http://linuxfr.org/users/plop_plop_sys/journaux/so-you-wanna-be-a-sysadmin-trolldi-inside
    sys sysadmin
  • 12 bonnes raisons d'être un administrateur systèmes fainéant - Framablog

    old mais vrai ;)

    April 4, 2014 at 2:00:18 PM GMT+2 - permalink - archive.org - http://www.framablog.org/index.php/post/2012/09/25/adminsys-paresseux
    devops sys sysadmin
  • thumbnail
    sysdig | Home

    Un outil pour monitorer son systeme qui a l'air bien + dev actif

    "Think of it as strace + tcpdump + lsof + awesome sauce."

    April 4, 2014 at 1:55:52 PM GMT+2 - permalink - archive.org - http://www.sysdig.org/
    lsof monitoring strace sys tools
  • /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/?ztr7EA
    ipv4 linux sys sysctl
  • AuthorizedKeysCommand : quand OpenSSH devient CloudSSH. Nan j'déconne. / GLMF-161 / GNU/Linux Magazine / Connect - Edition Diamond

    alternatives à authorized_keys

    via Skunnyk

    March 31, 2014 at 11:19:48 AM GMT+2 - permalink - archive.org - http://connect.ed-diamond.com/GNU-Linux-Magazine/GLMF-161/AuthorizedKeysCommand-quand-OpenSSH-devient-CloudSSH.-Nan-j-deconne
    ssh sys
  • Infrastructure Management with SaltStack: Part 1 - The Setup | vByron.com
    March 15, 2014 at 10:27:49 AM GMT+1 - permalink - archive.org - http://vbyron.com/blog/infrastructure-management-saltstack-part-1-getting-started/
    sys tools
  • Fabric — Fabric 1.8.2 documentation

    encore un tool de remote

    February 25, 2014 at 5:19:28 PM GMT+1 - permalink - archive.org - http://docs.fabfile.org/en/1.8/#
    command devops remote sys
  • SaltStack

    En cherchant des infos sur ansible, je tombe sur un nième soft de configuration management (comme puppet, chef, cfengine, ansible)

    February 25, 2014 at 5:08:09 PM GMT+1 - permalink - archive.org - http://www.saltstack.com/
    configuration devops sys
  • Gunnery - Remote execution frontend

    Dans la veine d'ansible, command.io, capistrano etc

    via Skunnyk

    February 25, 2014 at 5:06:04 PM GMT+1 - permalink - archive.org - http://eyjafjallajokull.github.io/gunnery/
    command devops remote sys volcan
  • Optimisations Nginx : bien comprendre sendfile, tcp_nodelay et tcp_nopush | UX, Startups & Cie
    February 7, 2014 at 10:17:49 AM GMT+1 - permalink - archive.org - http://t37.net/optimisations-nginx-bien-comprendre-sendfile-tcp-nodelay-et-tcp-nopush.html
    nginx sys
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation