linux - CLI command to list only the third party softwares installed on Ubuntu and FreeBSD -
is there cli command list third party softwares installed on ubuntu , freebsd?
i need compare softwares installed on linux(ubuntu) on freebsd.
any or clue appreciated.
you can use rpm command display installed packages in linux.
red hat/fedora core/centos linux
rpm -qa | less
debian linux
dpkg --get-selections
ubuntu linux
sudo dpkg --get-selections
freebsd
pkg_info | less pkg_info apache
use pkg_version command summarizes versions of installed packages:
pkg_version | less pkg_version | grep 'lsof'
openbsd - openbsd use pkg_info command display list of installed packages or software:
pkg_info | less pkg_info apache
Comments
Post a Comment