4359 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 113 / 218
Newer►
  • thumbnail
    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

    March 23, 2014 at 9:15:46 AM GMT+1 - permalink - archive.org - http://doc.ubuntu-fr.org/lvm#snapshot
    lvm
  • thumbnail
    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

    March 23, 2014 at 8:52:57 AM GMT+1 - permalink - archive.org - http://wiki.gonzofamily.com/a/Utilisation_de_Xen#Snapshots
    dd lvm xen
  • thumbnail
    The Big Picture (current) - Symfony
    March 22, 2014 at 3:32:50 PM GMT+1 - permalink - archive.org - http://symfony.com/doc/current/quick_tour/the_big_picture.html
    php symfony
  • thumbnail
    Puppet et nexus3000

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

    March 22, 2014 at 2:15:30 PM GMT+1 - permalink - archive.org - http://youtu.be/QExKz-iIpYc
    puppet networking
  • thumbnail
    Doc Elasticsearch

    via Skunnyk

    March 21, 2014 at 10:23:34 AM GMT+1 - permalink - archive.org - http://www.elasticsearch.org/guide/
    elasticsearch doc
  • thumbnail
    Cryptography Hacks - Hash Encryption using DuckDuckGo Search Engine - The Hacker News

    ddg <3

    via skunnyk

    March 21, 2014 at 10:22:55 AM GMT+1 - 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.

    March 21, 2014 at 9:59:51 AM GMT+1 - permalink - archive.org - https://github.com/torkelo/grafana/wiki/Scripted-dashboards
    graphite grafana
  • Running commands in parallell using bash | Michael Boman

    bien utile

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

    March 20, 2014 at 3:27:31 PM GMT+1 - permalink - archive.org - http://blog.michaelboman.org/2012/04/running-commands-in-parallel-using-bash.html
    bash parallel background
  • thumbnail
    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
    March 20, 2014 at 11:03:11 AM GMT+1 - permalink - archive.org - http://blog.teamtreehouse.com/unobtrusive-javascript-important
    js
  • thumbnail
    http://openvswitch.org/releases/NEWS-2.1.0

    Release d'ovs 2.1.0

    March 20, 2014 at 8:10:59 AM GMT+1 - permalink - archive.org - http://openvswitch.org/releases/NEWS-2.1.0
    networking tweetit
  • thumbnail
    Liste des plugins contrib munin
    March 19, 2014 at 5:47:03 PM GMT+1 - 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)

    March 19, 2014 at 3:24:21 PM GMT+1 * - permalink - archive.org - http://stackoverflow.com/questions/11165182/bash-difference-between-two-lists
    diff bash list comm
  • thumbnail
    doing - BrettTerpstra.com

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

    March 19, 2014 at 2:41:15 PM GMT+1 - permalink - archive.org - http://brettterpstra.com/projects/doing/
    todo software cli done standup dar war
  • Hacker Techniques, Exploits & Incident Handling

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

    March 19, 2014 at 1:37:53 PM GMT+1 - permalink - archive.org - https://www.sans.org/course/hacker-techniques-exploits-incident-handling
    network elearning
  • 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

    March 19, 2014 at 1:34:16 PM GMT+1 - permalink - archive.org - http://ismellpackets.com/2010/09/20/the-ping-me-packet-challenge/
    network craft hping
  • thumbnail
    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
    March 19, 2014 at 11:27:02 AM GMT+1 - 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

    March 19, 2014 at 11:16:44 AM GMT+1 * - permalink - archive.org - https://links.infomee.fr/shaare/r6stZw
    tmp bash mktemp tweetit
  • thumbnail
    Creating RRD graphs in PHP « php[architect] – Magazine, Training, Books, Conferences

    Feed du rrd en php

    March 19, 2014 at 10:33:37 AM GMT+1 - permalink - archive.org - http://www.phparch.com/2011/02/creating-rrd-graphs-in-php/
    sonde rrd php
  • 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
    The Render URL API — Graphite 0.10.0 documentation

    Avec ça possible de faire des templates de graph

    March 18, 2014 at 10:52:24 PM GMT+1 - permalink - archive.org - http://graphite.readthedocs.org/en/latest/render_api.html
    graphite
Links per page: 20 50 100
◄Older
page 113 / 218
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation