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 / 3
42 results tagged debian x
  • Cloud/AmazonEC2Image/Buster - Debian Wiki
    17 octobre 2019 à 11:32:18 UTC+2 - permalink - archive.org - https://wiki.debian.org/Cloud/AmazonEC2Image/Buster
    ami aws buster debian
  • library/buildpack-deps - Docker Hub

    TIL what is this offical repository :

    Only debian with some useful package to build dependencies (needed when you install some gem for example)

    For example ruby:2.3 Dockerfile use a buildpack-deps image

    10 février 2017 à 16:27:52 UTC+1 - permalink - archive.org - https://hub.docker.com/_/buildpack-deps/
    debian docker ruby
  • Note: Allez on remplace apt-get et apt-cache par apt

    En plus d'être plus court, l'output est plus lisible

    apt-cache madison paquet ---> apt list madison --all-versions

    apt list --upgradable (nice one)

    8 mars 2016 à 14:26:30 UTC+1 - permalink - archive.org - https://links.infomee.fr/?yUUk7A
    apt debian
  • UnattendedUpgrades - Debian Wiki

    checkrestart : https://packages.debian.org/fr/wheezy/debian-goodies
    needrestart : https://packages.debian.org/fr/sid/needrestart

    28 octobre 2015 à 14:44:44 UTC+1 - permalink - archive.org - https://wiki.debian.org/UnattendedUpgrades
    debian upgrade
  • arping debian

    Deux binaires arping dispos et bien différents (l'un permet les gratuitous reply, l'autre non). Voici les paquets :

    • arping
    • iputils-arping (permet les g. reply)

    https://packages.debian.org/search?searchon=contents&keywords=arping&mode=exactfilename&suite=stable&arch=any

    13 octobre 2015 à 14:58:28 UTC+2 - permalink - archive.org - https://links.infomee.fr/?EFUIsA
    arp arping debian
  • debian version numbers | ISG D-PHYS Readme Wiki
    • https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version

    via skunnyk

    26 août 2015 à 16:14:13 UTC+2 - permalink - archive.org - https://readme.phys.ethz.ch/documentation/debian_version_numbers/
    debian version
  • Debian apt, lister les paquets à upgrade

    Pratique pour avoir un aperçu de l'état de son parc

    /usr/bin/apt-get -qq update && /usr/bin/apt-get -q -y --ignore-hold --allow-unauthenticated -s dist-upgrade | grep ^Inst | /usr/bin/cut -d\ -f2 | /usr/bin/sort
    (pris dans le script apticron)

    Pour avoir une liste avec 3 colonnes : nom du paquet / version actuelle / version dispo

    /usr/bin/apt-get -qq update && /usr/bin/apt-get -q -y --ignore-hold --allow-unauthenticated -s dist-upgrade | grep ^Inst | awk '{print $2 " " $3 " " $4}'|sed -r 's/([|]|()//g'

    12 mars 2015 à 10:00:13 UTC+1 - permalink - archive.org - https://links.infomee.fr/?kVZ8QA
    apt apt-get aptitude debian upgrade
  • debian init script

    apt-get install debian-goodies && checkrestart

    via Doo

    11 février 2015 à 14:08:57 UTC+1 - permalink - archive.org - https://links.infomee.fr/?ZiMfVA
    debian init
  • PHP gc_maxlifetime

    Sur une debian wheezy, php va "nettoyer" régulièrement le dossier qui contient les fichiers de sessions grâce à un cron dans /etc/cron.d/

    Toutes les 30 minutes il va vérifier qu'aucun fichier n'est plus vieux que le gc_maxlifetime (php.ini) qui par défaut est de 24 minutes.

    24 minutes !! Ne vous étonnez pas si vous de restez pas connecté à vos applications même en ayant coché la petite case car avec ce comportement par défaut, si votre session n'est pas accédée dans un délai de 24 minutes, elle sera supprimée par le prochain passage du cron..

    9 janvier 2015 à 10:07:04 UTC+1 - permalink - archive.org - https://links.infomee.fr/?os-nRg
    debian php
  • thumbnail
    Debian package statsd

    apt-get install debhelper devscripts
    git clone https://github.com/etsy/statsd.git
    cd statsd
    dpkg-buildpackage
    dpkg -i ../<deb file>

    24 juillet 2014 à 16:01:09 UTC+2 - permalink - archive.org - https://github.com/etsy/statsd/issues/161
    deb debian package statsd
  • Installing-Node.js-via-package-manager

    Il est aussi dans les backport :
    https://packages.debian.org/search?keywords=nodejs&searchon=names&section=all&suite=wheezy-backports

    24 juillet 2014 à 15:59:58 UTC+2 - permalink - archive.org - https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
    deb debian node nodejs
  • Install Debian packages without starting daemons | major.io

    Via sametmax

    If you’d like to prevent daemons from starting after installing a package, just toss a few lines into /usr/sbin/policy-rc.d:

    cat > /usr/sbin/policy-rc.d < < EOF

    !/bin/sh

    echo "All runlevel operations denied by policy" >&2
    exit 101
    EOF

    27 juin 2014 à 14:28:41 UTC+2 - permalink - archive.org - http://major.io/2014/06/26/install-debian-packages-without-starting-daemons/
    apt debian install package start
  • HAProxy packages for Debian and Ubuntu
    26 mai 2014 à 13:12:07 UTC+2 - permalink - archive.org - http://haproxy.debian.net/
    debian haproxy sys
  • Echoes: How-To: Use apt-file to See What Files a Package Installs

    Pratique :
    Installation : apt-get install apt-file && apt-file update

    Chercher un fichier dans les packages en utilisant une regex :
    apt-file search -x '/dig$'

    Lister les fichiers d'un package sans l'installer (équivalent dpkg -L) :
    apt-file show dnsutils

    28 mars 2014 à 11:42:46 UTC+1 - permalink - archive.org - http://vivapinkfloyd.blogspot.fr/2008/07/how-to-use-apt-file-to-see-what-files.html
    apt debian dpkg
  • NetworkConfiguration - Debian Wiki

    Bon à savoir lorsqu'on écrit des fichiers /etc/network/interfaces sous debian.
    On peut répéter les block pour faire des alias (qui ne sont pas "supportés" par la commande ip)

    3 mars 2014 à 12:25:04 UTC+1 - permalink - archive.org - https://wiki.debian.org/NetworkConfiguration#Multiple_IP_addresses_on_One_Interface
    configuration debian interfaces network
  • Grub tips : connaitre le kernel par defaut

    Trouver le numero du menuentry par defaut :
    grep GRUB_DEFAULT /etc/default/grub

    Ensuite, il suffit de lister les menuentry et de compter (le premier est à 0)
    grep menuentry /boot/grub/grub.cfg

    28 février 2014 à 13:05:43 UTC+1 - permalink - archive.org - https://links.infomee.fr/?PsSF_A
    debian grub
  • aptly - Debian repository management tool

    Outils qui a l'air bien

    17 février 2014 à 17:40:10 UTC+1 - permalink - archive.org - http://www.aptly.info/
    deb debian package
  • IntroDebianPackaging - Debian Wiki

    Pour mieux comprendre le packaging sous debian

    • https://wiki.debian.org/HowToPackageForDebian
    17 février 2014 à 16:30:37 UTC+1 - permalink - archive.org - https://wiki.debian.org/IntroDebianPackaging
    deb debian package
  • Debian Sources List Generator
    26 janvier 2014 à 18:28:00 UTC+1 - permalink - archive.org - http://debgen.simplylinux.ch/
    apt debian
  • Debian php

    Les package php5- contiennent en général une extension en .so et le bout de fichier .ini qui permet de l'activer
    Les package php-
    peuvent contenir d'autre chose comme des binaires ou des fichiers php (librairies)

    Parfois les dépots débian ne sont pas suffisament à jour alors on peut passer par des gestionnaires alternatifs :
    pecl : pour installer des .so
    pear : pour installer des libs php

    On peut aussi gérer les dépendance au niveau du projet au lieu de les gérer au niveau du système avec par exemple composer

    14 janvier 2014 à 11:46:34 UTC+1 - permalink - archive.org - https://links.infomee.fr/?dTHxEA
    composer debian package pear pecl php
Links per page: 20 50 100
◄Older
page 1 / 3
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation