« Gestion des ressources allouées » Gérer la mémoire allouée à un VE # vzctl set {id} –privvmpages $((65536*2)):$((69632*2)) –save Cette commande permet de limiter l’utilisation du cpu à hauteur de 15% de la totalité des cpu physiquements présents. # vzctl set {id} –cpulimit 15 –save Ne pas mettre à jour la date du dernier […]
Change Hostname Permanently on Debian or Ubuntu « AdminUser.wOrdpress.cOm
Change Hostname Permanently on Debian or Ubuntu Posted February 10, 2008 by SiiN in debian, ubuntu. Tagged: debian, Linux, ubuntu. 4 Comments Debian based systems use the file /etc/hostname to read the hostname of the computer at boot time and set it up using the init script /etc/init.d/hostname.sh We can edit the file /etc/hostname and […]
Admin Linux » Blog Archive » Installation Debian sur DELL R710, R410, RXXX
Comment installer Debian sur un serveur DELL R710 ou RXXX ? Menu * Introduction * Carte réseau « Broadcom Corporation NetXtreme II » * Charger le firmware pour l’installation * Installer le firmware sur le futur système * Le contrôleur PERC H700, H200 (HXXX) * Préparation du futur noyau * Préparation de l’installation * Fin de préparation […]
tgharold.com: Tech Blog: Creating a 4-disk RAID10 using mdadm
Creating a 4-disk RAID10 using mdadm Since I can’t seem to find instructions on how to do this (yet)… I’m going to create a 4-disk RAID10 array using Linux Software RAID and mdadm. The old way is to create individual RAID1 volumes and then stripe a RAID0 volume over the RAID1 arrays. That requires creating […]
mdadm delete linux raid – Linux/BSD
Fail all the devices, then remove them, then stop the raid. eg mdadm –manage /dev/mdfoo –fail /dev/sdfoo mdadm –manage /dev/mdfoo –remove /dev/sdfoo mdadm –manage –stop /dev/mdfoo mdadm –zero-superblock /dev/mdfoo viamdadm delete linux raid – Linux/BSD.
debian | David Mercereau
Après installation d’une debian sur un linutop2 il s’avère que la carte flash de 1Go est un peu petite.. Un peut de ménage s’impose donc parmi les docs, man, langue et autres choses non vitale du système aptitude purge man man-db doc-debian doc-debian-fr doc-linux-fr-text doc-linux-text xorg-docs debian-faq info manpages manpages-fr manpages-fr-extra viadebian | David Mercereau.
Raid 10 ou raid 0+1 ? – Linux Attitude
Lorsqu’on parle de redondance, de haute disponibilité et de disque, on parle de Raid. J’en ai déjà parlé Voici un petit aperçu des différents types de RAID, le but est ici de trouver les qualités de chacun. Un tableau final récapitule les avantage et les inconvénients qu’il y a à choisir un type de raid […]
Faire disparaître son historique – Linux Attitude
Article court mais efficace. Supposons que vous soyez en train de triturer une machine et que vous ne vouliez pas qu’on sache ce que vous faites. Vous voudriez évidemment ne pas laisser de traces. Malheureusement, tout ce que vous faites est enregistré dans le fichier de log du shell. Ce fichier étant enregistré uniquement à […]
Faire une debian miniature – Linux Attitude
Tentons d’installer une debian miniature. Voyons jusqu’à quelle taille nous pouvons descendre. Commençons par le commencement : $ debootstrap etch /toto Voila on commence déjà à 140Mo. Supprimons quelques trucs inutiles $ chroot /toto $ export LANG=C $ dpkg –get-selections | more $ apt-get remove –purge cron logrotate aptitude tasksel tasksel-data dmidecode laptop-detect $ rm […]
Mdadm – How can i destroy or delete an array : Memory, Storage, Backup and Filesystems
So, you created an array and you messed up something? Now you would like to delete it? Please note: all data will be lost with this operation! 1. Stop the array Code: Select all # mdadm -S /dev/md0 2. Remove the disks from the array (in my example md0 is a raid5 array with 3 […]