397 liens privés
Effet : freeze avant l'écran de login
Résolution temporaire : repasser en 4.15.0-43-generic
le temps que le bug soit corrigé :)
Context switch overhead is discussed and thread states are introduced.
Un article sur IPVS qui existe depuis 15ans dans le kernel linux, et qui reste une petite perle. Je rappele que c'est basé sur netfilter.
Bonnes perfs:
"""
In testing, IPVS’ performance was nearly the same TPS as a normal connection. HAProxy and MySQL proxy were around 60 percent of its speed.
"""
Quelques bénéfices qui peuvent pousser son adoption:
"""
UDP support
Dynamically configurable
More than eight balancing methods
Health checking
"""
Conclusion:
"""
To conclude his talk, Sibiryov briefly compared IPVS to a $25,000 enterprise hardware load balancer. While GORB is still relatively new (he cautioned to watch out for bugs), IPVS is open-source, configurable, and like GORB, it’s also free. It requires no special software or tools, and can leverage a 1 GBPS line with only 1 percent CPU usage in DR mode (MAC L2).
Plus, IPVS has a 1,000-word man page instead of a vendor manual, and let’s not forget that it’s 15 years old. Simplicity and stability, Sibiryov stressed, make IPVS a serious alternative to enterprise load-balancing hardware.
"""
En supplément, cette discussion entre Jérôme Petazzoni et un des papas de Kubernetes: https://twitter.com/jpetazzo/status/666244030645346304
"""
In this article, we will review how Docker container achieves its security and isolation utilizing native container features of Linux such as namespaces, cgroups, capabilities, etc.
"""
Un peu de révision grâce à cet article dûment référencé.
Lire aussi "Docker: Differences between Container and Full VM" http://xmlandmore.blogspot.fr/2015/11/docker-difference-between-container-and.html
PS: ne pas se fier au titre du blog :)
laptop-mode retournait cette erreur au démarrage:
"""
Error for wireless request "Set Power Management" (8B2C) :
SET failed on device wlan0 ; Operation not supported.
"""
Problème résolu de la même manière que décrite dans le shaarlink avec:
- carte 'Qualcomm Atheros AR928X'.
- kernel: Linux arch 3.19.3-3-ARCH #1 SMP PREEMPT Wed Apr 8 14:24:22 CEST 2015 i686 GNU/Linux
Une fois rebooté, vous pouvez vérifier que l'option 'ps_enable' (enable powersave) pour le module ath9k est bien positionnée:
"""
$ modprobe -c | grep 'ps_enable'
options ath9k ps_enable=1
"""
hâte de tester le livepatch dont il parle ici: http://linuxfr.org/news/sortie-du-noyau-linux-4-0#mise-%C3%A0-jour-du-noyau-%C3%A0-la-vol%C3%A9e
pour voir les entrées existantes dans grub:
cat /boot/grub/grub.cfg | grep menuentry | grep Linux
les entrées correspondent aux kernels installés:
dpkg -l | grep linux-image
sudo grub-reboot "gnulinux-3.13.0-32-generic-advanced-e50666ec-3f77-4917-8879-f73368a2a217"
sudo grub-set-default "gnulinux-3.13.0-32-generic-advanced-e50666ec-3f77-4917-8879-f73368a2a217"
sudo update-grub
TL;DR;
cela semble un très bon papier sur les TCP TIME-WAIT
"MultiPath TCP (MPTCP) is an effort towards enabling the simultaneous use of several IP-addresses/interfaces by a modification of TCP that presents a regular TCP interface to applications, while in fact spreading data across several subflows. Benefits of this include better resource utilization, better throughput and smoother reaction to failures."
MPTCP est une extension du protocole TCP qui permet de gérer les connexions de manière agnostique. C'est spécialement utile pour la mobilité, quand on a par exemple 2 connexions actives wifi/3G.
Apple l'a déja implémenté sur iOS7 pour la gestion du traffic généré par Siri. A mon avis c'est "the next big thing" comme ils disent aux states...