Hallo,
mein Setup sieht so aus:
>>> cfdisk -Ps /dev/sda
Partitionstabelle von /dev/sda
Erster Letzter
# Typ Sektor Sektor Offset Länge Dateisystemtyp (ID) Flags
-- ------- ----------- ----------- ------ ----------- -------------------- -----
1 Primär 0 60002774 63 60002775 Linux (83) Boot
2 Primär 60002775 64002959 0 4000185 Linux Swap / So (82) Kein
3 Primär 64002960 312581807* 0 248578848*Linux (83) Kein
>>> df -h --type=ext4
Dateisystem Größe Benutzt Verf. Verw% Eingehängt auf
/dev/sda1 29G 6,9G 20G 26% /
/dev/sda3 117G 58G 54G 52% /home
>>> sudo blkid
/dev/sda1: LABEL="arch" UUID="adda2fd3-ec76-4b87-87f1-9a00130cd85c" TYPE="ext4"
/dev/sda2: LABEL="swap" UUID="d376524e-50c4-43b6-a92b-8999a57ff322" TYPE="swap"
/dev/sda3: LABEL="Daten" UUID="f60b35c8-ca62-4fe5-9991-d88f2c89921e" TYPE="ext4"
>>> cat /boot/grub/grub.cfg
insmod vbe
set timeout=5
set default=0
set menu_color_normal=light-blue/black
set menu_color_highlight=light-cyan/blue
menuentry "Arch Linux" {
set root=(hd0,msdos1)
gfxpayload=1024x768x32
linux /boot/vmlinuz-linux root=UUID=adda2fd3-ec76-4b87-87f1-9a00130cd85c ro quiet
initrd /boot/initramfs-linux.img
}
menuentry "Arch Linux Fallback" {
set root=(hd0,msdos1)
gfxpayload=1024x768x32
linux /boot/vmlinuz-linux root=UUID=adda2fd3-ec76-4b87-87f1-9a00130cd85c ro quiet
initrd /boot/initramfs-linux-fallback.img
}
menuentry "Memtest86+" {
set root=(hd0,msdos1)
linux16 /boot/memtest86+/memtest.bin
}
>>> cat /etc/fstab
# <file system> <dir> <type> <options> <dump> <pass>
tmpfs /tmp tmpfs nodev,nosuid 0 0
/dev/sda1 / ext4 rw,relatime,data=ordered 0 1
/dev/sda3 /home ext4 rw,relatime,data=ordered 0 2
/dev/sda2 none swap defaults 0 0
/dev/sr0 /media/dvd auto rw,user,noauto,unhide 0 0
Ich verwende demnach also keine extra Boot-Partition (man braucht sie nicht, und ich habe sie nie vermisst). Für die root-Partition, reichen locker 20 GB (wobei Du bei so einer Riesenfestplatte auch mehr nehmen kannst, wenn Du den pacman-Cache nicht oft leeren möchtest). Außerdem verwende ich grub, mit obiger Konfiguration. Syslinux habe ich nie getestet, aber grub hat mir auch noch nie Anlass dazu gegeben.