Instalacja openSUSE na fizycznym serwerze w raid1

  • By :
  • Category : Linux
Linux

W świecie wirtualizacji VMware bądź chmur publicznych rzadko zdarza mi się instalować serwer Linux na fizycznym serwerze. W dodatku na serwerze bez wsparcia HW RAID dla dwóch dysków.

Kiedyś instalacja takiego serwera (na md0) wymagała specjalnego przygotowania ponieważ instalatory nie obsługiwały takie “zaawansowego” procesu instalacji. Czasy jednak się zmieniły i teraz instalacja OpenSUSE Leap 15.1 odbyła się bez żadnego problemu. Instalacja na serwerze z uruchomionym “legacy BIOS” a nie z EFI.

Instalacja przebiega w sposób domyślny, poza krokiem konfiguracji dysków.

W procesie instalacji należy wybrać tryb “advanced partitioning” i dalej na każdym z dysków założyć 2 partycje. Pierwsza partycja typu ‘BIOS boot” Wielkość takiej partycji może być mała (np. 1GB).

Na dalszej części dysku należy założyć drugą partycję typu “Linux RAID“. Partycji tej nie należy formatować.

Uwaga, bez aktywnej partycji typu “bios_grub” i przy wykorzystaniu fs btrfs dostajemy poniższy komunikat.

Kroki w opcji “Exert Prtitioner”

Wybierz “Partition Table” i zmień na ms-dos.

Na obu dyskach utwórz RAID -> raid0, również wyberając partition table: ms-dos jak niżej:

Utwórz minimum 2 dyski, jeden dla root (btrfs) oraz swap.

Po instalacji (można to zrobić w trakcie manipulując na poziomie instalatora grub2) uruchom system z płyty w trybie rescue mode.

W trybie rescue mode zamontuj urządzenie md (ls /dev/md*) do katalogu, np:

mkdir root
mount -o bind /dev/md127p1 root
mount -o bind /sys root/sys
mount -o bind /proc root/proc
mount -o bind /dev root/dev
mount -o bind /dev/pts root/dev/pts

chroot root

https://howtoubuntu.org/how-to-repair-restore-reinstall-grub-2-with-a-ubuntu-live-cd

Wydaj polecenie:
echo “($(sudo grub2-probe -t bios_hints -d /dev/md127)) /dev/md127” | sudo tee -a /boot/grub2/device.map
grub2-mkconfig -o /boot/grub/grub.cfg
grub2-install /dev/md127
grub2-install /dev/sda
grub2-install /dev/sdb

https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1756517

Restart systemu.

No Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Linux
podcast

All podcast applications I have tested were quite OK(ish) – but I have always struggled with organizing podcasts, creating playlists, etc. It has always been challenging. Therefore, for me, it is more convenient to download podcasts as MP3s and manage them myself (in VLC, for example). There are many ways to do that, but my favorite …

Linux
jellyfin configuration in lxc container

Jellyfin is extremely useful software providing home streaming system. I am using it since a while for streaming my old ripped DVD, which I love to watch again and again. Jellyfin is opensource, cross platform as a server and as a client, including client for android and iOS. It is …

Linux
Various helpful Linux commands for file manipulations

Change file name for all files that contains “[any text]” substring to the same name without that.