User Tools


root:void

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
root:void [2025/11/18 10:51] marlonivoroot:void [2025/11/18 11:29] (current) marlonivo
Line 27: Line 27:
  
 <code> <code>
-tar -xpf void-x86_64-ROOTFS.tar.xz -C /mnt/sysroot+tar -xpf void-x86_64-ROOTFS-20250202.tar.xz -C /mnt/sysroot
 </code> </code>
  
---- 
  
 ### **6. Chroot vorbereiten** ### **6. Chroot vorbereiten**
Line 38: Line 37:
 mount -t sysfs sys /mnt/sysroot/sys mount -t sysfs sys /mnt/sysroot/sys
 mount -o bind /dev /mnt/sysroot/dev mount -o bind /dev /mnt/sysroot/dev
 +mount -o bind /run /mnt/sysroot/run
 </code> </code>
  
---- 
  
 ### **7. In das ROOTFS chrooten** ### **7. In das ROOTFS chrooten**
Line 48: Line 47:
 </code> </code>
  
---- 
  
 ### **8. Basis installieren** ### **8. Basis installieren**
  
 <code> <code>
-xbps-install -Suy xbps +xbps-install -xbps 
-xbps-install -y base-system +xbps-install -y base-system syslinux
-</code> +
- +
---- +
- +
-### **9. Kernel installieren** +
- +
-<code> +
-xbps-install -y linux +
-</code> +
- +
---- +
- +
-### **10. Syslinux installieren (SeaBIOS)** +
- +
-<code> +
-xbps-install -y syslinux+
 extlinux --install /boot extlinux --install /boot
 </code> </code>
- 
---- 
  
 ### **11. syslinux.cfg erstellen** ### **11. syslinux.cfg erstellen**
Line 82: Line 62:
 DEFAULT void DEFAULT void
 LABEL void LABEL void
-LINUX /boot/vmlinuz +LINUX /boot/vmlinuz-VERSION 
-INITRD /boot/initramfs-linux.img+INITRD /boot/initramfs-VERSION.img
 APPEND root=/dev/sda1 rw APPEND root=/dev/sda1 rw
 EOF EOF
 </code> </code>
  
---- 
  
 ### **12. Syslinux-MBR schreiben** ### **12. Syslinux-MBR schreiben**
Line 96: Line 75:
 </code> </code>
  
---- 
  
 ### **13. Chroot verlassen** ### **13. Chroot verlassen**
Line 104: Line 82:
 </code> </code>
  
---- 
  
 ### **14. Aushängen** ### **14. Aushängen**
Line 113: Line 90:
 </code> </code>
  
---- 
  
 ### **15. Reboot** ### **15. Reboot**
Line 120: Line 96:
 reboot reboot
 </code> </code>
- 
---- 
- 
 **SeaBIOS lädt jetzt direkt Syslinux, Syslinux lädt Kernel+Initramfs, Void bootet — ohne USB, ohne GRUB.** **SeaBIOS lädt jetzt direkt Syslinux, Syslinux lädt Kernel+Initramfs, Void bootet — ohne USB, ohne GRUB.**