• I noticed the following errors after the recent update.


    Background fyi. HP machine with i3, must hit F9 to chose file to load due to UEFI(just fyi, Always been this way)

    I do this directly on keyboard attached and viewed on monitor.


    This past Monday, needed to do many updates and the following errors were notice via monitor.

    No arrays found in config file or automatically /dev/sdc2; recovering journal

    {15.0945] i915 0000:00:02.0 firmware: failed to load i915/kbl_dmc_ver1_04.bin (-2)

    It will eventually load and let me log in. Very Slow.


    I seen today more updates are ready. I tried to load:

    Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LC_ALL=C.UTF-8; export LANGUAGE=; export DEBIAN_FRONTEND=noninteractive; apt-get --yes --allow-downgrades --allow-change-held-packages --fix-broken --fix-missing --auto-remove --allow-unauthenticated --show-upgraded --option DPkg::Options::="--force-confold" dist-upgrade 2>&1' with exit code '100': E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem.


    I tried to run dpkg.... at the keyboard . These will not load, and stayed unconfigured.


    I googled and did not see any forum responses.

    Are these errors interelated?

    What are some recommendation?


    Thanks for the help in advance,

    k

  • No arrays found in config file or automatically /dev/sdc2; recovering journal

    The message suggests that there might be some issues with your /dev/sdc2 disk, which could be the cause of the slowness.

    {15.0945] i915 0000:00:02.0 firmware: failed to load i915/kbl_dmc_ver1_04.bin (-2)

    This indicates that the Intel integrated graphics driver failed to load.

    Failed to execute command 'export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export LC_ALL=C.UTF-8; export LANGUAGE=; export DEBIAN_FRONTEND=noninteractive; apt-get --yes --allow-downgrades --allow-change-held-packages --fix-broken --fix-missing --auto-remove --allow-unauthenticated --show-upgraded --option DPkg::Options::="--force-confold" dist-upgrade 2>&1' with exit code '100': E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem.

    This indicates that your last update was interrupted, causing the installed packages to not be properly configured. You need to manually run dpkg --configure -a to fix the issue. Since you've tried running it without success, what is stored on /dev/sdc2?

    OMV 7.x | 6.8 Proxmox Kernel

    GIGABYTE Z370M DS3H Motherboard

    Intel G4560 CPU | 16G×1 Non-ECC RAM

    128G SSD + 1T SSD + 4T×2 HDD

  • Zafkiel

    I am not home, but believe the setup is a=hdd, b=ssd(omv storage), c=12gb usb running omv., d=usb hdd for backup

    What would have changed recently to not load intel graphics driver? Google search shows more than a couple years old for this error.

    Thanks for the response and future help.

    k

  • a=hdd, b=ssd(omv storage), c=12gb usb running omv., d=usb hdd for backup

    If /dev/sdc2 is a USB drive with the OMV system installed, it seems that the USB drive may be damaged, and you might need to replace it.

    What would have changed recently to not load intel graphics driver?

    There doesn't seem to be any, and there haven't been any recent user reports of integrated graphics driver issues on the forum.

    Based on the information you provided, I tend to think that the issue with the USB drive has caused the OMV system files to become corrupted.

    OMV 7.x | 6.8 Proxmox Kernel

    GIGABYTE Z370M DS3H Motherboard

    Intel G4560 CPU | 16G×1 Non-ECC RAM

    128G SSD + 1T SSD + 4T×2 HDD

  • I have successfully updated, no updates available. I still get i915 error. I have googled an forum says regenerate intrafms ie for boot, no change

    Another says to do this:

    Code:
    CONFIG_EXTRA_FIRMWARE="intel-ucode/06-8e-09 i915/kbl_dmc_ver1_04.bin"
    CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware"


    Can anyone let me know if I should do this?

    Any other ideas or Thoughts??


    k

  • Okay, I searched on Google and found this page for the i915 driver in the May 26, 2018 update.


    I calculated the MD5 checksum, and it matches the one in my OMV. I also replaced the file and rebooted for testing, everything is working fine. I think you can try it as well.


    It’s best to connect to OMV using an SSH tool, as it's more convenient to enter commands.

    Here are some commands:

    Code
    sudo curl -o /usr/lib/firmware/i915/kbl_dmc_ver1_04.bin https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/i915/kbl_dmc_ver1_04.bin

    OR

    Code
    sudo wget -O /usr/lib/firmware/i915/kbl_dmc_ver1_04.bin https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/i915/kbl_dmc_ver1_04.bin

    If curl is not installed, you can try wget. I remember one of them wasn't installed, though I might be mistaken. Anyway, as long as it downloads, it's fine.


    Then set the correct permissions. If you're logged in as the root user, you probably don't need this step:

    Code
    sudo chmod 644 /usr/lib/firmware/i915/kbl_dmc_ver1_04.bin
    sudo chown root:root /usr/lib/firmware/i915/kbl_dmc_ver1_04.bin


    Next, you can try reloading the i915 driver:

    Code
    sudo modprobe -r i915
    sudo modprobe i915


    Finally, run dmesg | grep i915 to check if the driver is loaded correctly. It’s also a good idea to reboot and see if there are any errors.

    OMV 7.x | 6.8 Proxmox Kernel

    GIGABYTE Z370M DS3H Motherboard

    Intel G4560 CPU | 16G×1 Non-ECC RAM

    128G SSD + 1T SSD + 4T×2 HDD

  • @Zafkiel

    See below tried a couple of different locations for files, errors with no such directory

    My linux is not very good

    k


    <sudo wget -O /usr/lib/firmware/i915/kbl_dmc_ver1_04.bin https://git.kernel.org/pub/scm…/i915/kbl_dmc_ver1_04.bin

    /usr/lib/firmware/i915/kbl_dmc_ver1_04.bin: No such file or directory

    root@jnas:~# sudo wget -O /usr/lib/firmware/i915/kbl_dmc_ver1_04.bin https://git.kernel.org/pub/scm…/i915/kbl_dmc_ver1_04.bin

    /usr/lib/firmware/i915/kbl_dmc_ver1_04.bin: No such file or directory>

  • Well, It seems more difficult than I expected. This directory is used to store integrated graphics driver files. How can it be missing? :/


    What is the exact model of your CPU? Have you used integrated graphics before?

    I still think it's the damaged USB drive that caused the OMV system files to be lost, or the CPU doesn't have integrated graphics.


    Well, what is the output of these commands:

    Code
    lspci
    Code
    ls /usr/lib/firmware
    Code
    cat /etc/apt/sources.list

    Please paste the output into this code box.

    Clicking "Preview" will allow you to preview the reply.

    OMV 7.x | 6.8 Proxmox Kernel

    GIGABYTE Z370M DS3H Motherboard

    Intel G4560 CPU | 16G×1 Non-ECC RAM

    128G SSD + 1T SSD + 4T×2 HDD

    Edited once, last by Zafkiel: Add the lspci command. ().

  • cat /etc/apt/sources.list

    not found

    sudo omv-aptclean repos

    ls -al /etc/apt/

    cat /etc/apt/sources.list

  • sudo mkdir -p /usr/lib/firmware/i915


    After, follow the instructions from Zafkiel post #7

  • Zafkiel I was able to run the code after Soma code recommendations.

    The error did Not appear on reboot. Thank You :) :)

    Only 2 Newer issues left --- console.service did not load

    Updated to 7.4-15 lost connection, had dpkg --configure -a to run, but still shows update. I even tried to rerun from console, no change.

    k

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!