4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 72 / 217
Newer►
  • Three Solutions to Bi-directional Linking Problem in Docker Compose | Abdelrahman Hosny

    Cette solution semble etre un bon compromis quand on veut du lien bidirectionnel (ce qui n'est pas possible avec les links) :

    http://sgillis.github.io/posts/2015-03-23-docker-dns.html
    https://github.com/tonistiigi/dnsdock

    November 24, 2015 at 5:16:16 PM GMT+1 - permalink - archive.org - http://abdelrahmanhosny.com/2015/07/01/3-solutions-to-bi-directional-linking-problem-in-docker-compose/
    dns docker link
  • c - Calculating CPU usage of a process in Linux - Stack Overflow

    /proc/pid/stat
    /proc/stat

    November 24, 2015 at 10:02:28 AM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/1420426/calculating-cpu-usage-of-a-process-in-linux
    cpu
  • procstat - displays linux proc stat (/proc/pid/stat) in human-readable format

    /proc/pid/stat

    November 24, 2015 at 10:02:16 AM GMT+1 - permalink - archive.org - http://brokestream.com/procstat.html
    cpu
  • bash - Format cputime for ps - Unix & Linux Stack Exchange

    Pour grapher le cputime cumulé de certains process

    ps -e --format pid,time

    L'inconvénient c'est que la valeur retournée est dans un format batard..
    Le mieux ce serait de l'avoir en seconde, comme le etimes

    November 23, 2015 at 5:00:24 PM GMT+1 - permalink - archive.org - http://unix.stackexchange.com/questions/156607/format-cputime-for-ps
    cpu graph ps
  • Unitech/pm2

    nodejs process manager

    November 23, 2015 at 10:45:20 AM GMT+1 - permalink - archive.org - https://github.com/Unitech/pm2
    node nodejs
  • Debuggex: Online visual regex tester. JavaScript, Python, and PCRE.
    November 23, 2015 at 10:08:57 AM GMT+1 - permalink - archive.org - https://www.debuggex.com/
    regex test
  • vsz rss

    Tout est dans man ps, je me le mets de côté pour écrire un plugin collectd :

    ps -p $(cat /var/run/xx.pid) --no-headers --format rssize,vsize

    November 20, 2015 at 11:11:25 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?U5Vm5Q
    memory ram rss vsz
  • Running Apache in the foreground

    Pour avoir les logs d'apache dans la console quand on lance en foreground

    LogLevel info
    14 ErrorLog "|cat"
    15 LogFormat "%h %l %u %t \"%r\" %>s %b" common
    16 CustomLog "|cat" common

    November 18, 2015 at 5:52:30 PM GMT+1 - permalink - archive.org - http://zroger.com/blog/apache-in-the-foreground/
    apache
  • iproute2 cheat sheet

    (added to pocket)

    November 18, 2015 at 11:17:04 AM GMT+1 - permalink - archive.org - http://baturin.org/docs/iproute2/
    ip iproute man
  • 10 Best Free Download Javascript Libraries
    November 14, 2015 at 1:31:58 PM GMT+1 - permalink - archive.org - http://www.responsivedesignblog.com/10-best-free-download-javascript-libraries/#
    javascript js lib
  • ECharts · Home
    November 14, 2015 at 1:31:47 PM GMT+1 - permalink - archive.org - http://echarts.baidu.com/index-en.html
    chart javascript js
  • dm-crypt/Encrypting a non-root file system - ArchWiki
    • https://www.digitalocean.com/community/tutorials/how-to-use-dm-crypt-to-create-an-encrypted-volume-on-an-ubuntu-vps
    November 13, 2015 at 2:37:26 PM GMT+1 - permalink - archive.org - https://wiki.archlinux.org/index.php/Dm-crypt/Encrypting_a_non-root_file_system
    backup chiffrement dmcrypt partition
  • thumbnail
    unix - imuxsock messages in syslog and system becomes unresponsive - Server Fault

    En augmentant le rate limit de rsyslog ça passe

    imuxsock lost

    November 13, 2015 at 10:46:14 AM GMT+1 - permalink - archive.org - http://serverfault.com/questions/444061/imuxsock-messages-in-syslog-and-system-becomes-unresponsive
    imuxsock limit rate rsyslog
  • thumbnail
    ccontavalli/ssh-ident

    To manage multiple identities

    November 12, 2015 at 5:29:35 PM GMT+1 - permalink - archive.org - https://github.com/ccontavalli/ssh-ident
    agent ssh
  • Using rsync from cron with ssh keys that have a passphrase | Me in IT

    It took me some time to figure this one out, as everybody is using rsync and ssh-keys without passphrases, but I insist that an ssh-key should have a passphrase.

    In my first attemts I got this error messages mailed to me by crontab:
    Permission denied (gssapi-keyex,gssapi-with-mic,publickey,keyboard-interactive).

    Here are the steps to automate a backup initiated from crontab using rsync, SSH and ssh-keys with a passphrase:

    Make a set of SSH keys.
    Setup SSH to use the agent automatically.
    Login once as the user who's cron will run the backup script. You will be asked for a passphrase. When the machine reboots, you will need to login once more, to enter the passphrase again.
    Make a backup script that includes some SSH variables.
    This script could be as simple as this:
    . /home/username/.ssh/variables
    rsync -avz --delete /data/ example.com:data
    
    N.B. This variables file only contains these lines:
    SSH_AUTH_SOCK=/tmp/ssh-DmFcb18036/agent.18036; export SSH_AUTH_SOCK;
    SSH_AGENT_PID=18037; export SSH_AGENT_PID;
    echo Agent pid 18037;
    Put that script in crontab.

    That should do it for you, as it works like a charm for me!

    November 12, 2015 at 5:24:01 PM GMT+1 - permalink - archive.org - https://meinit.nl/using-rsync-from-cron-with-ssh-keys-that-have-a-passphrase
    ssh
  • Enter your ssh-passphrase once, use it many times, even from crontab | Me in IT

    variables=~/.ssh/variables

    sshadd() {
    source "$variables" > /dev/null
    ssh-add -l > /dev/null 2>&1
    case "$?" in
    1)
    ssh-add > /dev/null 2>&1
    ;;
    2)
    rm "$variables"
    sshagent
    ;;
    esac
    }

    sshagent() {
    if [ -f "$variables" ] ; then
    sshadd
    else
    ssh-agent -s > $variables
    sshadd
    fi
    }

    sshagent

    November 12, 2015 at 5:23:46 PM GMT+1 - permalink - archive.org - https://meinit.nl/enter-your-ssh-passphrase-once-use-it-many-times-even-from-crontab
    ssh
  • Mopidy
    November 10, 2015 at 11:16:53 AM GMT+1 - permalink - archive.org - https://www.mopidy.com/
    music rasp spotify
  • thumbnail
    RedisLabs/redis-migrate

    useful script to migrate redis server without downtime

    • http://boomboomboom.biz/blog/2013/09/07/migrate-redis-to-a-new-server-without-downtime/
    November 9, 2015 at 2:55:05 PM GMT+1 - permalink - archive.org - https://github.com/RedisLabs/redis-migrate
    migrate python redis
  • MINIGAMES | FantaBobWorld
    November 7, 2015 at 1:07:13 PM GMT+1 - permalink - archive.org - https://www.fantabobworld.com/index.php/category/mini-jeux/
    minecraft
  • 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
Links per page: 20 50 100
◄Older
page 72 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation