I have Ubuntu 22.04 installed. I kept getting dropped packets warning from Netdata. After running;
ethtool -g eno1 Ring parameters for eno1:Pre-set maximums:RX: 4096RX Mini: n/aRX Jumbo: n/aTX: 4096Current hardware settings:RX: 256RX Mini: n/aRX Jumbo: n/aTX: 256
I changed the network settings with;
sudo ethtool -G eno1 rx 4096 && sudo ethtool -G eno1 tx 4096
This appears to have solved the issue, but ethtool
is not persistent over a reboot. I cannot find the Ubuntu 22.04 file I need to change in order to make the changes persistent.
Please advise