Ubuntu

如何在 ubuntu 20.04 中執行 bandwidthD 的靜默安裝

  • August 5, 2021

如何執行頻寬的靜默安裝以避免 windows 並通過命令行監控 IP 和介面(適用於 ubuntu 20.04)

sudo apt-get install bandwidthd # with what parameters

重要的:

沒有help bandwidthd。只有幫助:

bandwidthd --help

Usage: bandwidthd [OPTION]

Options:
   -D      Do not fork to background
   -l      List detected devices
   -c filename Alternate configuration file
   --help      Show this help

謝謝

更新:

我找到了一種解決方法,並在@muru 的建議下將其發佈為答案。如果有更好的答案,請隨時發布,我會選擇它作為最佳答案。

解決方法:

sudo DEBIAN_FRONTEND=noninteractive apt-get -y install bandwidthd

安裝後,如有必要,編輯配置文件並更改預設參數。

# default parameters:
sudo debconf-show bandwidthd
 bandwidthd-pgsql/sensorid:
 bandwidthd/dev: any
 bandwidthd/promisc: false
 bandwidthd/metarefresh:
 bandwidthd/subnet: 169.254.0.0/16, 192.168.1.0/24, 192.168.122.0/24
 bandwidthd/outputcdf: true
 bandwidthd/recovercdf: true

sudo nano /etc/bandwidthd/bandwidthd.conf
# change default parameters. Example:

subnet 192.168.0.0/16
dev "wlp1s0"

# save the changes and...

sudo /etc/init.d/bandwidthd restart

使用權:

http://localhost/bandwidthd/

引用自:https://unix.stackexchange.com/questions/662527