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.

Free(BSD)
yt-dlp – download your data from youtube

Hi, this short article only to mention that there is a wonderful application that exists for a years for the purpose to download YOUR or maybe some other movies from youtube. I don’t want to go in to legal aspect too much, what can be downloaded from youtube, what not …

Linux
Migrate WordPress site to another hosting service.

IntroductionThis article details the migration of WordPress site (exactly this site you are now on) from one service provider to Amazon Lightsail. There might be various reason to do that (mine is outlined below) but in general I hope to share the message that especially with WordPress, migration can be …

Free(BSD)
Convert pdf file to jpeg – with imagemagic

Short article just to write down not-so frequently (for me) task: remove /opt/homebrew/bin from that command where using on other system than macOs Options: cheers