Install OMV on ASRock H570M-ITX/AC

  • Hello,


    I write this thread just to share my OMV install on my new NAS...

    It was not easy to find a solution!


    The ASRock H570M-ITX/AC:

    - Supports 10th Gen Intel® Core™ Processors and 11th Gen Intel® Core™ Processors

    - Dragon 2.5 Gigabit LAN RTL8125,

    - Intel® Gigabit LAN i219-v

    - Intel® 802.11ac WiFi + BT 4.2


    My problem: 3 network cards, but no one works! =O


    My solution:


    Step 1: install debian

    - create an USB install key with Debian 10 (try directly with OMV ISO, but I have some graphics problem: the root console does not display.

    - add non free intel wireless driver into firmware/ folder (download here: https://packages.debian.org/buster/firmware-iwlwifi)

    - Install Debian, normally it's working!


    Step 2: configure wifi

    - create a configuration file pour your network in folder /etc/network/interfaces.d/

    Code
    allow-hotplug wlp2s0
    iface wlp2s0 inet dhcp
            wpa-ssid ESSID
            wpa-psk PASSWORD


    - start interface, and internet is here!

    Code
    ifup wlp2s0


    Step 3: install OMV

    You can install OMV now if you want or later


    Step 4: install Realtek dragon driver (rtl8125)

    - download driver "2.5G Ethernet LINUX driver r8125 for kernel up to 5.6" (https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabit-ethernet-pci-express-software)

    - uncompress archive, and compile driver

    Code
    make

    - update module

    Code
    depmod

    - Create a configuration file pour your network in folder /etc/network/interfaces.d/

    - Normally it work's!


    Step 5: install intel network driver (i219-v)

    - download driver e1000e (https://downloadcenter.intel.com/fr/download/15817)

    - uncompress archive, and compile driver

    Code
    make

    - create a configuration file pour your network in folder /etc/network/interfaces.d/

    - Normally it work's!


    Everithing is done, and all of your 3 network card work's :*

  • inox42

    Hat das Label gelöst hinzugefügt.
  • inox42

    Hat das Label OMV 5.x hinzugefügt.
  • KM0201

    Hat das Thema freigeschaltet.
  • Hi ! I'm new here :)

    Thanks for your tutorial !


    I buy this motherboard ASRock H570M-ITX/AC for my first NAS (with an Intel i5 11400 CPU, 8GB RAM DDR4 Curcial Ballistix, old power supply Corsair 400w, Fractal Design Node 304 for case and SSD 500GB WD Black SN850 for cache and os installation (with small partition). I know it's completly overkill but I will be quiet for a few years ^^


    I use Windows regularly, but not Linux at all...

    Bad choice of motherboard for a first in my opinion :o


    I hope that I can suceed with your explications, I never compile driver or anything :/


    PS : sorry for my bad english, I speak french.

  • Salut rere130,


    je vois que tu es français, moi aussi !

    j'ai également acheté la même carte mère que toi avec le même processeur et je souhaitais installer OMV sur ce serveur.

    J'arrive à faire l'installation mais au reboot rien ne se passe, un message d'erreur que je n'ai pas le tps de lire

    JE penses que le chipset n'est pas pris en charge par OMV malheureusement.

    Je penses que la carte mère n'est pas compatible avec OMV que j'ai testé.

    As-tu réussit à installer OMV avec cette carte mère/proc ?

    Je suis partis sur Tuenas du coups pour le moment...

  • Salut ! Je ne sais pas si on peut parler en français ici ^^

    J'ai réussi à installer le tout oui, en installant d'abord Debian 11 puis OMV 6 en ligne de commande. Tuto ici : Install OMV6 on Debian 11 (Bullseye)

    En fait certains drivers (carte son et réseau) ne sont pas inclus sur OMV 5.


    Peut-être que maintenant avec la version OMV6 RC1 qui vient de sortir l'installation est possible directement sans passer par Debian. Ca ne fonctionnait pas avec les premiers .iso d'OMV6 non plus en tout cas.


    Je rencontre un autre soucis, ce qui va me faire faire une réinstallation complète (et du coup un test aussi directement avec omv6 RC1) : une surconsommation de la mémoire RAM. Si je redémarre le serveur je consomme 1GB sur les 16, mais après quelques jours ça sature à 98%...

    Aucune idée de la raison, et je n'ai que quelques plugins installés : File Browser, DuckDNS, Jdownloader 2 et Qbittorrent.

  • salut rere130, pour ma part j'avais testé omw sur cette carte mere directement en faisant une clef usb bootable sur le site de omw mais çà bootait pas jme suis dit que cétait a cause du chipset... j'ai alché laffaire et installé truenas a la place bref..*

    je voudrai retourner sur omw donc je vais essayer en insrtallant un linux comme toi rt en installant omw après en ligne de commande

    merci !


    @+

  • Many thanks to inox42, this instruction got my asrock b560m-itx/ac up and running


    But I don't like the idea of installing the i219-v driver from the intel site, because later on you can get a lot of headaches when updating and maintaining, I found another way through the debian 10 backports


    Step 5 another way:

    1. Install new kernel (for me its 5.10.0-0.bpo.9-amd64) with support for our hardware

    Code
    echo "deb http://deb.debian.org/debian buster-backports main" | sudo tee -a /etc/apt/sources.list 
    deb http://deb.debian.org/debian buster-backports main
    Code
    sudo apt-get update
    Code
    sudo apt install -t buster-backports linux-image-amd64

    After all, reboot, and check kernel version by:

    Code
    uname -r

    Linux omv 5.10.0-0.bpo.9-amd64 #1 SMP Debian 5.10.70-1~bpo10+1 (2021-10-10) x86_64 GNU/Linux

    2. Install non free firmware:

    Code
    sudo apt install -t buster-backports firmware-linux

    Reboot (I don't remember, maybe it worked without a reboot)

    3. Configure network:

    See the name of the adapter:

    Code
    ip a

    You will get something like this:

    Change network settings by using the interfaces file:

    Code
    sudo nano /etc/network/interfaces

    For DHCP add lines at the end of file:

    auto enp0s31f6 

    iface enp0s31f6 inet dhcp


    For the static ip:

    auto enp0s31f6 

    iface enp0s31f6 inet static 

    address xxx.xxx.xxx.xxx 

    netmask yyy.yyy.yyy.yyy 

    gateway zzz.zzz.zzz.zzz


    Reboot


    Everything is working

    Debian 11 \\ Linux 6.0.0-0.deb11.2-amd64 \\ 6.0.46-5 (Shaitan)

    Fractal Design Node 304 \\ ASRock H570M-ITX/AC \\ i3-10105 CPU -- 6 bays

  • Hello!
    I dont understand where i must copy firmware-iwlwifi_20190114-2_all.deb file.
    At usb stick with Debian iso?

    I use MB AsRock H570M-ITX/ac
    I disable inside Wifi lan at bios and Debian instaler dont ask driver for wifi adapter.
    I select minimal set without graphic. Only text concole. But after setup and reboot not video signal.
    Alt-F1, Ctrl-F1, Alt-Ctrl-F1 dont work (...
    Where is error at my actions?
    For monitor i use HDMI interface.

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!