I'm thinking to install hylafax+ version 5.5.4 which was release last month on my Debian PC.
I checked dpkg -l | grep "hylafax"
and found out that the current version is 5.5.3. Then I checked apt-cache search hylafax
and saw the packages are available, but I can't see any version number.
How can I find the version of packages available in the apt-get
?
apt-cache policy <package-name>
apt-get install -s <package-name>
apt-cache show <package-name>
dpkg -l <package-name>
As posted somewhere else, this works, too:
apt-cache madison <package_name>
Also, the apt-show-versions package (installed separately) parses dpkg information about what is installed and tells you if packages are up to date.
Example..