User Tools

Site Tools


Sidebar

Public
Internal
public:it:hardware:zotac

This is an old revision of the document!


ZOTAC

ZBOX-MI549NANO

Bugs

ethernet firmware bug?

Disable TCP Checksum offloading worked

https://forum.proxmox.com/threads/e1000e-eno1-detected-hardware-unit-hang.59928/#post-378352

I did run this:

ethtool -K enp0s31f6 tx off rx off

2021-05-05: After 40 days of uptime, I think I can conclude that this did at least work around the issue.

#!/bin/bash

# Disabling TCP checksum offloading worked for me
#   https://forum.proxmox.com/threads/e1000e-eno1-detected-hardware-unit-hang.59928/post-378352

# disable tcp segmentation offload and generic segmentation offload
#   https://forum.proxmox.com/threads/e1000-driver-hang.58284/post-279338
#   ethtool -K enp0s31f6 tso off gso off

# Turn ON the workaround
if [ "$1" == 'on' ]; then
  ethtool -K enp0s31f6 tx off rx off
elif [  "$1" == 'off' ]; then
  ethtool -K enp0s31f6 tx on rx on
else
  echo "Specify 'on' or 'off'. You are toggling the workaround."
fi

2021-10-19: This issue popped up again.

Update-grub finds non-existent devices

  • update-grub find non-existent devices
    root@gw:~# lsblk
    NAME                MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
    sda                   8:0    0 745.2G  0 disk 
    |-sda1                8:1    0   512M  0 part /boot/efi
    `-sda2                8:2    0 744.7G  0 part 
      |-vgubuntu-root   253:0    0 743.7G  0 lvm  /
      `-vgubuntu-swap_1 253:1    0   976M  0 lvm  [SWAP]
    
    root@gw:~# grep -Fn "global_filter" /etc/lvm/lvm.conf
    158:	# Configuration option devices/global_filter.
    162:	# Use global_filter to hide devices from these LVM system components.
    164:	# global_filter are not opened by LVM.
    166:	# global_filter = [ "a|.*|" ]
    167:    global_filter = [ "r|/dev/sdb|" ]
    
    
    root@gw:~# update-grub
    Sourcing file `/etc/default/grub'
    Sourcing file `/etc/default/grub.d/init-select.cfg'
    Generating grub configuration file ...
    Found linux image: /boot/vmlinuz-5.4.0-66-generic
    Found initrd image: /boot/initrd.img-5.4.0-66-generic
    Found linux image: /boot/vmlinuz-5.4.0-65-generic
    Found initrd image: /boot/initrd.img-5.4.0-65-generic
    Found linux image: /boot/vmlinuz-5.4.0-62-generic
    Found initrd image: /boot/initrd.img-5.4.0-62-generic
    Adding boot menu entry for UEFI Firmware Settings
    done
public/it/hardware/zotac.1635009929.txt.gz ยท Last modified: 2021/10/23 12:25 by phil