This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
public:it:hardware:zotac [2021/09/13 14:43] – external edit 127.0.0.1 | public:it:hardware:zotac [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== ZOTAC ====== | ||
- | ===== ZBOX-MI549NANO ===== | ||
- | |||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | ===== Bugs ===== | ||
- | |||
- | ==== ethernet firmware bug? ==== | ||
- | |||
- | === Disable TCP Checksum offloading worked === | ||
- | |||
- | https:// | ||
- | |||
- | 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 | ||
- | # | ||
- | |||
- | # disable tcp segmentation offload and generic segmentation offload | ||
- | # | ||
- | # | ||
- | |||
- | # Turn ON the workaround | ||
- | if [ " | ||
- | ethtool -K enp0s31f6 tx off rx off | ||
- | elif [ " | ||
- | ethtool -K enp0s31f6 tx on rx on | ||
- | else | ||
- | echo " | ||
- | fi | ||
- | </ | ||
- | ==== Update-grub finds non-existent devices ==== | ||
- | * [[https:// | ||
- | root@gw:~# lsblk | ||
- | NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT | ||
- | sda | ||
- | |-sda1 | ||
- | `-sda2 | ||
- | |-vgubuntu-root | ||
- | `-vgubuntu-swap_1 253:1 0 | ||
- | |||
- | root@gw:~# grep -Fn " | ||
- | 158: # Configuration option devices/ | ||
- | 162: # Use global_filter to hide devices from these LVM system components. | ||
- | 164: # global_filter are not opened by LVM. | ||
- | 166: # global_filter = [ " | ||
- | 167: global_filter = [ " | ||
- | |||
- | |||
- | root@gw:~# update-grub | ||
- | Sourcing file `/ | ||
- | Sourcing file `/ | ||
- | Generating grub configuration file ... | ||
- | Found linux image: / | ||
- | Found initrd image: / | ||
- | Found linux image: / | ||
- | Found initrd image: / | ||
- | Found linux image: / | ||
- | Found initrd image: / | ||
- | Adding boot menu entry for UEFI Firmware Settings | ||
- | done | ||
- | </ |