To find the version of NetworkManager on a Linux system, you can use the nmcli
command. The nmcli
command is a command-line utility for managing NetworkManager, and it can be used to display information about the version of NetworkManager that is installed on the system.
To find the version of NetworkManager using the nmcli
command, open a terminal and enter the following command:
nmcli --versionSource:www.lautturi.com
This will display the version of NetworkManager that is installed on the system. For example, the output might look something like this:
nmcli tool, version 1.14.0
Alternatively, you can use the dpkg
command to find the version of NetworkManager that is installed on the system. To do this, enter the following command:
dpkg -l network-manager
This will display information about the NetworkManager package, including the version number. For example, the output might look something like this:
ii network-manager 1.4.4-1ubuntu3.1 all network management framework (daemon and userspace tools)
The version number is shown in the second column of the output.
Keep in mind that the exact method for finding the version of NetworkManager may vary depending on the distribution of Linux that you are using. Some distributions may use a different package manager, or may store the version information in a different location.