Cheatsheet - shuwens/NetBricks GitHub Wiki
Transmission config
https://forums.sonarr.tv/t/getting-nowhere-with-transmission-setup/3795/3
Cargo tools
https://github.com/crev-dev/cargo-crev
https://github.com/RustSec/cargo-audit
https://github.com/xd009642/tarpaulin
https://github.com/sfackler/cargo-tree
https://github.com/kbknapp/cargo-outdated
https://github.com/EmbarkStudios/cargo-deny
https://github.com/est31/cargo-udeps
https://github.com/holmgr/cargo-sweep
DPDK related
Hardware check cheatsheet
-
To see a list of devices:
lspci –nn -
You can check the memory configuration using dmidecode as follows:
dmidecode -t memory | grep Locator -
to check the speed of a PCI slot
sudo lspci -s 01:00.1 -vv | grep LnkSta -
List of NUMA nodes
ls /sys/devices/system/node/ -
List of CPU cores associated with each NUMA node
cat /sys/devices/system/node/node0/cpu0/topology/core_id -
List of thread_siblings for each core
cat /sys/devices/system/node/node0/cpu0/topology/core_siblings_list -
NUMA Node ID for network interfaces
- Extract the numa node for the NIC from /sys/class/net//device/numa_node
- RAM available for each NUMA node
cat /sys/class/net/eno1/device/numa_node
Reference
10. How to get best performance with NICs on Intel platforms