【FreeBSD】FreeBSD 管理

Posted by 西维蜀黍 on 2021-03-04, Last Modified on 2021-10-17

Operation

Check FreeBSD Version

# Display the FreeBSD version and patch level of the installed system
$ freebsd-version

# Get information about the system including FreeBSD version
$ uname -mrs

Installation

iperf3

# wget http://downloads.es.net/pub/iperf/iperf-3.0.6.tar.gz
# tar zxvf iperf-3.0.6.tar.gz

Then you just need to configure it and compile it like this:

# cd iperf-3.0.6
# ./configure
# make
# make install
# To install the port: 
$ cd /usr/ports/benchmarks/iperf3/ && make install clean

# To add the package: 
$ pkg install iperf3

Reference

Misc