Debian / Raspbian でインストールされているパッケージをリストするコマンドの備忘録
APT コマンド
sudo apt list –installed
$ sudo apt list --installed | grep ssh WARNING: apt does not have a stable CLI interface. Use with caution in scripts. libssh-gcrypt-4/oldstable,now 0.7.3-2+deb9u2 armhf [インストール済み、自動] libssh2-1/oldstable,now 1.7.0-1+deb9u1 armhf [インストール済み、自動] openssh-client/oldstable,now 1:7.4p1-10+deb9u7 armhf [インストール済み、自動] openssh-server/oldstable,now 1:7.4p1-10+deb9u7 armhf [インストール済み、自動] openssh-sftp-server/oldstable,now 1:7.4p1-10+deb9u7 armhf [インストール済み、自動] ssh/oldstable,now 1:7.4p1-10+deb9u7 all [インストール済み]
DPKG コマンド
dpkg –get-selections
$ dpkg --get-selections | grep ssh libssh-gcrypt-4:armhf install libssh2-1:armhf install openssh-client install openssh-server install openssh-sftp-server install ssh install
dpkg-query コマンド
dpkg-query -l
$ sudo dpkg-query -l | grep ssh ii libssh-gcrypt-4:armhf 0.7.3-2+deb9u2 armhf tiny C SSH library (gcrypt flavor) ii libssh2-1:armhf 1.7.0-1+deb9u1 armhf SSH2 client-side library ii openssh-client 1:7.4p1-10+deb9u7 armhf secure shell (SSH) client, for secure access to remote machines ii openssh-server 1:7.4p1-10+deb9u7 armhf secure shell (SSH) server, for secure access from remote machines ii openssh-sftp-server 1:7.4p1-10+deb9u7 armhf secure shell (SSH) sftp server module, for SFTP access from remote machines ii ssh 1:7.4p1-10+deb9u7 all secure shell client and server (metapackage)