/dev/
. Depuis Debian Squeeze, le schéma de nommage a été unifié et tous les disques durs (IDE/PATA, SATA, SCSI, USB, IEEE 1394) sont dorénavant représentés par des /dev/sd*
.
/dev/sda1
est donc la première partition du premier disque et /dev/sdb3
la troisième partition du deuxième disque.
/dev/sda5
, suivie de /dev/sda6
, etc.
udev
crée, en plus des /dev/sd*
, des liens symboliques de nom fixe, qu'on pourra alors utiliser si l'on souhaite identifier de manière non ambiguë l'un ou l'autre disque. Ces liens symboliques sont stockés dans /dev/disk/by-id/
. Sur une machine à deux disques physiques, on a par exemple :
mirexpress:/dev/disk/by-id#
ls -l
total 0 lrwxrwxrwx 1 root root 9 23 juil. 08:58 ata-STM3500418AS_9VM3L3KP -> ../../sda lrwxrwxrwx 1 root root 10 23 juil. 08:58 ata-STM3500418AS_9VM3L3KP-part1 -> ../../sda1 lrwxrwxrwx 1 root root 10 23 juil. 08:58 ata-STM3500418AS_9VM3L3KP-part2 -> ../../sda2 [...] lrwxrwxrwx 1 root root 9 23 juil. 08:58 ata-WDC_WD5001AALS-00L3B2_WD-WCAT00241697 -> ../../sdb lrwxrwxrwx 1 root root 10 23 juil. 08:58 ata-WDC_WD5001AALS-00L3B2_WD-WCAT00241697-part1 -> ../../sdb1 lrwxrwxrwx 1 root root 10 23 juil. 08:58 ata-WDC_WD5001AALS-00L3B2_WD-WCAT00241697-part2 -> ../../sdb2 [...] lrwxrwxrwx 1 root root 9 23 juil. 08:58 scsi-SATA_STM3500418AS_9VM3L3KP -> ../../sda lrwxrwxrwx 1 root root 10 23 juil. 08:58 scsi-SATA_STM3500418AS_9VM3L3KP-part1 -> ../../sda1 lrwxrwxrwx 1 root root 10 23 juil. 08:58 scsi-SATA_STM3500418AS_9VM3L3KP-part2 -> ../../sda2 [...] lrwxrwxrwx 1 root root 9 23 juil. 08:58 scsi-SATA_WDC_WD5001AALS-_WD-WCAT00241697 -> ../../sdb lrwxrwxrwx 1 root root 10 23 juil. 08:58 scsi-SATA_WDC_WD5001AALS-_WD-WCAT00241697-part1 -> ../../sdb1 lrwxrwxrwx 1 root root 10 23 juil. 08:58 scsi-SATA_WDC_WD5001AALS-_WD-WCAT00241697-part2 -> ../../sdb2 [...] lrwxrwxrwx 1 root root 9 23 juil. 16:48 usb-LaCie_iamaKey_3ed00e26ccc11a-0:0 -> ../../sdc lrwxrwxrwx 1 root root 10 23 juil. 16:48 usb-LaCie_iamaKey_3ed00e26ccc11a-0:0-part1 -> ../../sdc1 lrwxrwxrwx 1 root root 10 23 juil. 16:48 usb-LaCie_iamaKey_3ed00e26ccc11a-0:0-part2 -> ../../sdc2 [...] lrwxrwxrwx 1 root root 9 23 juil. 08:58 wwn-0x5000c50015c4842f -> ../../sda lrwxrwxrwx 1 root root 10 23 juil. 08:58 wwn-0x5000c50015c4842f-part1 -> ../../sda1 [...] mirexpress:/dev/disk/by-id#
lilo
. L'oublier produira un système incapable de démarrer si l'ancien noyau a été supprimé ou remplacé, puisque le nouveau ne sera pas au même emplacement sur le disque.
/etc/lilo.conf
; un fichier simple pour une configuration standard est illustré par l'exemple ci-dessous.
Exemple 8.4. Fichier de configuration de LILO
# Le disque sur lequel LILO doit s'installer. # En indiquant le disque et non pas une partition, # on ordonne à LILO de s'installer sur le MBR. boot=/dev/sda # la partition qui contient Debian root=/dev/sda2 # l'élément à charger par défaut default=Linux # Noyau le plus récent image=/vmlinuz label=Linux initrd=/initrd.img read-only # Ancien noyau (si le noyau nouvellement installé ne démarre pas) image=/vmlinuz.old label=LinuxOLD initrd=/initrd.img.old read-only optional # Seulement pour un double amorçage Linux/Windows other=/dev/sda1 label=Windows
grub-install /dev/sda
.
/boot/grub/grub.cfg
, but this file (in Debian) is generated from others. Be careful not to modify it by hand, since such local modifications will be lost the next time update-grub
is run (which may occur upon update of various packages). The most common modifications of the /boot/grub/grub.cfg
file (to add command line parameters to the kernel or change the duration that the menu is displayed, for example) are made through the variables in /etc/default/grub
. To add entries to the menu, you can either create a /boot/grub/custom.cfg
file or modify the /etc/grub.d/40_custom
file. For more complex configurations, you can modify other files in /etc/grub.d
, or add to them; these scripts should return configuration snippets, possibly by making use of external programs. These scripts are the ones that will update the list of kernels to boot: 10_linux
takes into consideration the installed Linux kernels; 20_linux_xen
takes into account Xen virtual systems, and 30_os-prober
lists other operating systems (Windows, OS X, Hurd).
ybin
installe yaboot
et son fichier de configuration. On n'exécutera à nouveau cette commande qu'en cas de modification du fichier /etc/yaboot.conf
(il est en effet dupliqué sur la partition de bootstrap et yaboot
sait retrouver la position des noyaux sur les disques).
ybin
, il faut disposer d'un fichier /etc/yaboot.conf
valide. L'exemple ci-dessous pourrait constituer un fichier minimal.
Exemple 8.5. Fichier de configuration de Yaboot
# La partition de bootstrap boot=/dev/sda2 # Le disque device=hd: # La partition Linux partition=3 root=/dev/sda3 # Démarre après 3 sec. d'inactivité # (timeout est en dixièmes de secondes) timeout=30 install=/usr/lib/yaboot/yaboot magicboot=/usr/lib/yaboot/ofboot enablecdboot # Dernier noyau installé image=/vmlinux label=linux initrd=/initrd.img read-only # Ancien noyau image=/vmlinux.old label=old initrd=/initrd.img.old read-only # Uniquement pour un double amorçage Linux/Mac OS X macosx=/dev/sda5 # bsd=/dev/sdaX et macos=/dev/sdaX # sont également possibles