neofetch is a Terminal-based tools to displays information about your operating system, software and hardware in visual way.
To install neofetch to Raspberry Pi OS, enter the command:
$ sudo apt install neofetch
neofetch is a Terminal-based tools to displays information about your operating system, software and hardware in visual way.
To install neofetch to Raspberry Pi OS, enter the command:
$ sudo apt install neofetch
iPerf3 is a tool for active measurements of the maximum achievable bandwidth on IP networks. It supports tuning of various parameters related to timing, buffers and protocols (TCP, UDP, SCTP with IPv4 and IPv6). For each test it reports the bandwidth, loss, and other parameters.
This post show how to run iPerf3 on two Raspberry Pi to check the network speed between.
On both Raspberry Pi, install iPerf3 by entering command in Terminal:
$ sudo apt install iperf3
$ iperf3 -s
$ iperf3 -c <server ip>
To list all installed packages, enter the command in Terminal:
$ dpkg -l
or
$ dpkg-query -l
To list about a specified package:
$ dpkg -l package-name-pattern
or
$ dpkg-query -l package-name-pattern
$ ldd --version
import os
uptime = os.popen("awk '{print $1}' /proc/uptime").readline()
print("uptime(sec) = "+uptime)