this post was submitted on 22 Jun 2023
1 points (100.0% liked)

Skate Park

82 readers
3 users here now

So it goes that if one were to learn a kick flip alone it would take much longer than if they went to the skate park.

This community is for asking questions, sharing recommendations and experiences, and helping each other figure things out and get stuff done.

founded 1 year ago
MODERATORS
 

iperf3 is installable via scoop and yay. You simply run the server on one computer and point the client at that IP from another computer.

# On one computer
iperf3 --server
# On another computer
iperf3 --client <ip>

You can get your IP address on Linux like this. For Ethernet look under (probably) end0 and for wifi (probably) wlan0.

ip addr

On Windows you can use Get-NetIPAddress.

# For Ethernet
Get-NetIPAddress -InterfaceAlias Ethernet*
# For Wi-Fi
Get-NetIPAddress -InterfaceAlias Wi-Fi

If you're diligent about firewalling then you'll probably need to open up the port (default is 5201)

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here