How to Install and Uninstall python310-port-for Package on openSuSE Tumbleweed

Last updated: July 04,2024

1. Install "python310-port-for" package

Learn how to install python310-port-for on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python310-port-for

2. Uninstall "python310-port-for" package

Please follow the guidance below to uninstall python310-port-for on openSuSE Tumbleweed:

$ sudo zypper remove python310-port-for

3. Information about the python310-port-for package on openSuSE Tumbleweed

Information for package python310-port-for:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python310-port-for
Version : 0.7.2-1.5
Arch : noarch
Vendor : openSUSE
Installed Size : 125.1 KiB
Installed : No
Status : not installed
Source package : python-port-for-0.7.2-1.5.src
Upstream URL : https://github.com/kmike/port-for/
Summary : Utility that helps with local TCP ports managment
Description :
port-for is a command-line utility and a python library that
helps with local TCP ports management.
It can find an unused TCP localhost port and remember the association::
$ sudo port-for foo
37987
This can be useful when you are installing a stack of software
with multiple parts needing port numbers.
There are several rules port-for is trying to follow to find and
return a new unused port:
1) Port must be unused: port-for checks this by trying to connect
to the port and to bind to it.
2) Port must be IANA unassigned and otherwise not well-known:
this is acheived by maintaining unassigned ports list
(parsed from IANA and Wikipedia).
3) Port shouldn't be inside ephemeral port range.
This is important because ports from ephemeral port range can
be assigned temporary by OS (e.g. by machine's IP stack) and
this may prevent service restart in some circumstances.
``port-for`` doesn't return ports from ephemeral port ranges
configured at the current machine.
4) Other heuristics are also applied: ``port-for`` tries to return
a port from larger port ranges; it also doesn't return ports that are
too close to well-known ports.