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 :)

    2015年12月4日 GMT+1 下午3:52:54 - permalink - archive.org - https://vimeo.com/146524997
    sys sysadmin talk video
  • Uptime Funk - SUSECon 2015 (Uptown Funk Parody) - YouTube

    :D :D :D

    2015年11月6日 GMT+1 下午4:02:04 - 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

    2015年5月19日 GMT+2 上午10:35:53 - 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

    2014年7月22日 GMT+2 下午2:36:02 - 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
    2014年6月10日 GMT+2 上午11:38:19 - permalink - archive.org - http://codeascraft.com/2014/06/06/introducing-nagios-herald/
    contexte monitoring nagios sys
  • HAProxy packages for Debian and Ubuntu
    2014年5月26日 GMT+2 下午1:12:07 - permalink - archive.org - http://haproxy.debian.net/
    debian haproxy sys
  • ▶ "Linux Sucks" - 2014 - YouTube

    ya du vrai la dedans :D

    2014年5月13日 GMT+2 下午1:25:47 - 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

    2014年5月12日 GMT+2 上午10:48:51 - 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

    2014年4月13日 GMT+2 下午9:28:36 - 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.

    2014年4月9日 GMT+2 上午11:34:55 - 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

    2014年4月9日 GMT+2 上午11:00:53 - 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 ;)

    2014年4月4日 GMT+2 下午2:00:18 - 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."

    2014年4月4日 GMT+2 下午1:55:52 - 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

    2014年4月2日 GMT+2 下午3:22:09 - 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

    2014年3月31日 GMT+2 上午11:19:48 - 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
    2014年3月15日 GMT+1 上午10:27:49 - 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

    2014年2月25日 GMT+1 下午5:19:28 - 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)

    2014年2月25日 GMT+1 下午5:08:09 - 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

    2014年2月25日 GMT+1 下午5:06:04 - 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
    2014年2月7日 GMT+1 上午10:17:49 - 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