4339 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 112 / 217
Newer►
  • lvm - Documentation Ubuntu Francophone

    Fusionner un snapshot

    Le but ici est de fusionner un snapshot modifié vers le LV d'origine. Pour ainsi dire, "faire que les modifications apportées sur le snapshot se retrouvent sur le LV d'origine".

    lvconvert --merge /path/to/dev/snap

    2014年3月23日 GMT+1 上午9:15:46 - permalink - archive.org - http://doc.ubuntu-fr.org/lvm#snapshot
    lvm
  • Utilisation de Xen - Wikichris

    dd over ssh
    lvcreate vg00 -L 4G -n srv-test-disk #on choisi la même taille (4Go)
    mkfs.ext4 /dev/vg00/srv-test-disk
    ssh root@srv-xen.domain.com "dd if=/dev/vg00/srv-test-disk" | dd of=/dev/vg00/srv-test-disk

    ou avec gzip pour aller BEAUCOUP plus vite

    ssh root@srv-xen.domain.com "dd if=/dev/vg00/srv-test-disk | gzip" | gzip -dc | dd of=/dev/vg00/srv-test-disk

    2014年3月23日 GMT+1 上午8:52:57 - permalink - archive.org - http://wiki.gonzofamily.com/a/Utilisation_de_Xen#Snapshots
    dd lvm xen
  • The Big Picture (current) - Symfony
    2014年3月22日 GMT+1 下午3:32:50 - permalink - archive.org - http://symfony.com/doc/current/quick_tour/the_big_picture.html
    php symfony
  • Puppet et nexus3000

    Puppet qui sattaque au monde du reseau avec le nuxus3000 :o
    Clin d'oeil à ubiqube

    2014年3月22日 GMT+1 下午2:15:30 - permalink - archive.org - http://youtu.be/QExKz-iIpYc
    networking puppet
  • Doc Elasticsearch

    via Skunnyk

    2014年3月21日 GMT+1 上午10:23:34 - permalink - archive.org - http://www.elasticsearch.org/guide/
    doc elasticsearch
  • Cryptography Hacks - Hash Encryption using DuckDuckGo Search Engine - The Hacker News

    ddg <3

    via skunnyk

    2014年3月21日 GMT+1 上午10:22:55 - permalink - archive.org - http://thehackernews.com/2014/01/cryptography-hacks-hash-encryption.html
    ddg hash
  • thumbnail
    Grafana Scripted dashboards

    If you have lots of metric names that change (new servers etc) in a defined pattern it is irritating to constantly have to create new dashboards.

    With scripted dashboards you can dynamically create your dashboards using javascript. In the folder grafana install folder app/dashboards/ there is a file named scripted.js. This file contains an example of a scripted dashboard. You can access it by using the url:

    http://grafana_url/#/dashboard/script/scripted.js?rows=3&name=myName

    If you open scripted.js you can see how it reads url paramters from ARGS variable and then adds rows and panels.

    2014年3月21日 GMT+1 上午9:59:51 - permalink - archive.org - https://github.com/torkelo/grafana/wiki/Scripted-dashboards
    grafana graphite
  • Running commands in parallell using bash | Michael Boman

    bien utile

    cat liste | parallel --gnu -j 10 ssh root@{} 'ls'

    2014年3月20日 GMT+1 下午3:27:31 - permalink - archive.org - http://blog.michaelboman.org/2012/04/running-commands-in-parallel-using-bash.html
    background bash parallel
  • What is Unobtrusive JavaScript & Why it's Important? - Treehouse

    Si un jour je fais un peu plus de JS, faudrait faire comme ça

    • http://icant.co.uk/articles/seven-rules-of-unobtrusive-javascript/
    • http://www.w3.org/wiki/The_principles_of_unobtrusive_JavaScript
    2014年3月20日 GMT+1 上午11:03:11 - permalink - archive.org - http://blog.teamtreehouse.com/unobtrusive-javascript-important
    js
  • http://openvswitch.org/releases/NEWS-2.1.0

    Release d'ovs 2.1.0

    2014年3月20日 GMT+1 上午8:10:59 - permalink - archive.org - http://openvswitch.org/releases/NEWS-2.1.0
    networking tweetit
  • thumbnail
    Liste des plugins contrib munin
    2014年3月19日 GMT+1 下午5:47:03 - permalink - archive.org - https://github.com/munin-monitoring/contrib/tree/master/plugins
    github munin plugin
  • thumbnail
    sorting - Bash - Difference Between two lists - Stack Overflow

    Pour obtenir la diff des éléments entre deux listes :

    To get the lines only in the old file:
    comm -23 <(sort /tmp/oldList) <(sort /tmp/newList)

    To get the lines only in the new file:
    comm -13 <(sort /tmp/oldList) <(sort /tmp/newList)

    comm -23 <(sort /tmp/1) <(sort /tmp/2)
    comm -13 <(sort /tmp/1) <(sort /tmp/2)

    2014年3月19日 GMT+1 下午3:24:21 * - permalink - archive.org - http://stackoverflow.com/questions/11165182/bash-difference-between-two-lists
    bash comm diff list
  • doing - BrettTerpstra.com

    Un todo en cli dans le meme genre que http://todotxt.com/

    2014年3月19日 GMT+1 下午2:41:15 - permalink - archive.org - http://brettterpstra.com/projects/doing/
    cli dar done software standup todo war
  • Hacker Techniques, Exploits & Incident Handling

    Des certifs qui peuvent être passées online : sécurité, réseau..

    2014年3月19日 GMT+1 下午1:37:53 - permalink - archive.org - https://www.sans.org/course/hacker-techniques-exploits-incident-handling
    elearning network
  • thumbnail
    The “Ping me!” Packet Challenge | I Smell Packets

    Un peu de réseau, ça fait longtemps : un petit challenge où il faut crafter un icmp reply correspond à l'icmp request posté ;)

    Les solutions :
    http://ismellpackets.com/2010/10/05/the-ping-me-packet-challenge-solution/
    http://ismellpackets.com/2010/10/06/another-ping-me-packet-challenge-solution/
    http://ismellpackets.com/2010/10/07/the-ping-me-packet-challenge-solution-using-hping/
    http://ismellpackets.com/2011/01/06/ping-me-packet-challenge-follow-up/

    PS : l'auteur du blog n'est plus actif mais les archives sont à explorer

    2014年3月19日 GMT+1 下午1:34:16 - permalink - archive.org - http://ismellpackets.com/2010/09/20/the-ping-me-packet-challenge/
    craft hping network
  • puppet svn pre-commit hook | Jason Hancock

    Script de hook pre-commit pour vérifier la syntaxe des .pp en utilisant http://puppet-lint.com/

    • https://github.com/jasonhancock/puppet-svn-hooks
    2014年3月19日 GMT+1 上午11:27:02 - permalink - archive.org - http://geek.jasonhancock.com/2012/04/18/puppet-svn-pre-commit-hook/
    puppet
  • mktemp

    Pratique pour l'écriture de script en bash lorsqu'on a besoin d'un fichier temporaire :

    #Creation
    tmpfile=$(mktemp)

    #Utilisation...

    #Clean
    if [ -e "$tmpfile" ]
    then
    rm -f $tmpfile
    fi

    2014年3月19日 GMT+1 上午11:16:44 - permalink - archive.org - https://links.infomee.fr/?r6stZw
    bash mktemp tmp tweetit
  • Creating RRD graphs in PHP « php[architect] – Magazine, Training, Books, Conferences

    Feed du rrd en php

    2014年3月19日 GMT+1 上午10:33:37 - permalink - archive.org - http://www.phparch.com/2011/02/creating-rrd-graphs-in-php/
    php rrd sonde
  • Operation Windigo: Linux malware campaign that infected 500,000 Computers Worldwide - The Hacker News

    Oh shit

    2014年3月18日 GMT+1 下午11:25:07 - permalink - archive.org - http://thehackernews.com/2014/03/operation-windigo-linux-malware.html
    linux malware security virus
  • The Render URL API — Graphite 0.10.0 documentation

    Avec ça possible de faire des templates de graph

    2014年3月18日 GMT+1 下午10:52:24 - permalink - archive.org - http://graphite.readthedocs.org/en/latest/render_api.html
    graphite
Links per page: 20 50 100
◄Older
page 112 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation