Ubuntu 22.04 Jammy Jellyfish のEC2インスタンスを作ってみた

Ubuntu 22.04 Jammy Jellyfish のEC2インスタンスを作ってニヤニヤしました
2022.04.30

この記事は公開されてから1年以上経過しています。情報が古い可能性がありますので、ご注意ください。

Ubuntu 22.04 Jammy Jellyfish のEC2インスタンスはもう作れるぞ

こんにちは、のんピ(@non____97)です。

Ubuntu 22.04 Jammy Jellyfish (以降 Ubuntu 22.04)が2022/4/21にリリースされました。

以下リリースノートを確認すると、色々と変更が加えられているようです。

AMI一覧を見てみると、Ubuntu 22.04のものがあったので、Ubuntu 22.04のEC2インスタンスを作って眺めてみます。

EC2インスタンスの作成

早速のEC2インスタンスの作成を行います。

AMIの選択でその他のAMIを閲覧するをクリックします。

その他のAMIを閲覧する

Ubuntu 22.04で検索してAWS Marketplace AMIタブを確認すると、いくつかUbuntu 22.04のAMIが見つかりました。

今回はUbuntu 22.04 LTS - Jammyを選択します。

Ubuntu 22.04 LTS - Jammy

ちなみに一つ下のUbuntu Pro 22.04 LTSはUbuntu Advantageが組み込まれたAMIです。10年間のパッケージアップデートとセキュリティメンテナンスやカーネルライブパッチの機能が一般的なAMIと比べて異なります。

詳細な内容は以下記事をご覧ください。

AMIを選択すると、確認画面が表示されます。問題なければ続行をクリックします。

Ubuntu 22.04 LTS - Jammyの確認

ubuntu/images-testing/hvm-ssd/ubuntu-jammy-daily-amd64-server-20220419-47489723-7305-4e22-8b22-b0d57054f216というAMIの名前のようですね。

ubuntu/images-testing/hvm-ssd/ubuntu-jammy-daily-amd64-server-20220419-47489723-7305-4e22-8b22-b0d57054f216

ubuntu/images-testing/hvm-ssd/ubuntu-jammy-daily-arm64で検索するとArmアーキテクチャのAMIが表示されるので、Graviton のインスタンスタイプ選択するときも問題なさそうですね。

ubuntu/images-testing/hvm-ssd/ubuntu-jammy-daily-arm64

続いて、EC2インスタンスの各種設定を行います。設定変更した箇所は赤枠の箇所です。

EC2インスタンスの各種設定

インスタンスプロファイルはSSMのクイックセットアップで作成されたIAMロールのインスタンスプロファイルを指定します。

SMのクイックセットアップで作成されたIAMロールのインスタンスプロファイル

設定を確認して問題がなければインスタンスを起動をクリックします。

インスタンスを起動

しばらくすると、EC2インスタンスが作成されました。

EC2インスタンスの作成完了確認

今回はマネージメントコンソールからEC2インスタンスを作成しましたが、AWS CLIで最新のAMIを使ってEC2インスタンスを作成する場合は、SSM Public Parametersを使うと良いと思います。

マネージメントコンソールからUbuntu 22.04のパブリックパラメーターを確認すると、5つありました。

SSM Public Parameters

AWS CLIからAMI IDを取得する場合は以下のようなコマンドを実行します。

aws ssm get-parameters \
  --names /aws/service/canonical/ubuntu/server/22.04/stable/current/amd64/hvm/ebs-gp2/ami-id
{
    "Parameters": [
        {
            "Name": "/aws/service/canonical/ubuntu/server/22.04/stable/current/amd64/hvm/ebs-gp2/ami-id",
            "Type": "String",
            "Value": "ami-09d56f8956ab235b3",
            "Version": 1,
            "LastModifiedDate": "2022-04-21T15:15:01.662000+00:00",
            "ARN": "arn:aws:ssm:us-east-1::parameter/aws/service/canonical/ubuntu/server/22.04/stable/current/amd64/hvm/ebs-gp2/ami-id",
            "DataType": "aws:ec2:image"
        }
    ],
    "InvalidParameters": []
}

OS探検

シェルの変更

それではEC2インスタンスに接続してOSを探検してみます。

作成したEC2インスタンスを選択して接続-セッションマネージャータブをクリックすると、SSMセッションマネージャーで接続出来そうなので、こちらで接続します。

SSMセッションマネージャーで接続

現在のユーザーやディレクトリ、ログインシェルを確認します。

# 現在のユーザー確認
$ whoami
ssm-user

# 現在のディレクトリ確認
$ pwd
/var/snap/amazon-ssm-agent/5163

# ログインシェルを確認
$ echo $SHELL

ログインシェルの環境変数が空になっていたので、shのようです。

私はshを使いこなせる自信がないので、bashに変更します。

# 使用できるシェルの一覧を確認
$ cat /etc/shells
# /etc/shells: valid login shells
/bin/sh
/bin/bash
/usr/bin/bash
/bin/rbash
/usr/bin/rbash
/usr/bin/sh
/bin/dash
/usr/bin/dash
/usr/bin/tmux
/usr/bin/screen

# bashに変更
$ bash
ssm-user@ip-172-31-88-32:/var/snap/amazon-ssm-agent/5163$

bashに変更するとプロンプトも変わり、一気に華やかになりますね。

bashターミナル

ただ、プロンプトがちょっと長すぎるので以降はプロンプトのssm-user@ip-172-31-88-32:/var/snap/amazon-ssm-agent/5163は省略します。

OSとカーネルのバージョン確認

# OSのバージョン確認
$ cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04 (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy

# カーネルのバージョン確認
$ uname  -r
5.15.0-1004-aws

インストールされているパッケージ一覧

aptとsnapどちらも確認します。

$ apt list --installed
Listing... Done
acpid/jammy,now 1:2.0.33-1ubuntu1 amd64 [installed]
adduser/jammy,now 3.118ubuntu5 all [installed,automatic]
amd64-microcode/jammy,now 3.20191218.1ubuntu2 amd64 [installed]
apparmor/jammy,now 3.0.4-2ubuntu2 amd64 [installed,automatic]
apport-symptoms/jammy,now 0.24 all [installed,automatic]
apport/jammy,now 2.20.11-0ubuntu82 all [installed,automatic]
apt-utils/jammy,now 2.4.5 amd64 [installed,automatic]
apt/jammy,now 2.4.5 amd64 [installed,automatic]
base-files/jammy,now 12ubuntu4 amd64 [installed]
base-passwd/jammy,now 3.5.52build1 amd64 [installed]
bash-completion/jammy,now 1:2.11-5ubuntu1 all [installed,automatic]
bash/jammy,now 5.1-6ubuntu1 amd64 [installed]
bc/jammy,now 1.07.1-3build1 amd64 [installed,automatic]
bcache-tools/jammy,now 1.0.8-4ubuntu3 amd64 [installed,automatic]
bind9-dnsutils/jammy,now 1:9.18.1-1ubuntu1 amd64 [installed,automatic]
bind9-host/jammy,now 1:9.18.1-1ubuntu1 amd64 [installed,automatic]
bind9-libs/jammy,now 1:9.18.1-1ubuntu1 amd64 [installed,automatic]
binutils-common/jammy,now 2.38-3ubuntu1 amd64 [installed,automatic]
binutils-x86-64-linux-gnu/jammy,now 2.38-3ubuntu1 amd64 [installed,automatic]
binutils/jammy,now 2.38-3ubuntu1 amd64 [installed,automatic]
bolt/jammy,now 0.9.2-1 amd64 [installed,automatic]
bsdextrautils/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
bsdutils/jammy,now 1:2.37.2-4ubuntu3 amd64 [installed]
btrfs-progs/jammy,now 5.16.2-1 amd64 [installed,automatic]
busybox-initramfs/jammy,now 1:1.30.1-7ubuntu3 amd64 [installed,automatic]
busybox-static/jammy,now 1:1.30.1-7ubuntu3 amd64 [installed,automatic]
byobu/jammy,now 5.133-1 all [installed,automatic]
ca-certificates/jammy,now 20211016 all [installed,automatic]
chrony/jammy,now 4.2-2ubuntu2 amd64 [installed]
cloud-guest-utils/jammy,now 0.32-22-g45fe84a5-0ubuntu1 all [installed,automatic]
cloud-init/jammy,now 22.1-14-g2e17a0d6-0ubuntu1~22.04.5 all [installed]
cloud-initramfs-copymods/jammy,now 0.47ubuntu1 all [installed,automatic]
cloud-initramfs-dyn-netconf/jammy,now 0.47ubuntu1 all [installed,automatic]
command-not-found/jammy,now 22.04.0 all [installed,automatic]
console-setup-linux/jammy,now 1.205ubuntu3 all [installed,automatic]
console-setup/jammy,now 1.205ubuntu3 all [installed,automatic]
coreutils/jammy,now 8.32-4.1ubuntu1 amd64 [installed,automatic]
cpio/jammy,now 2.13+dfsg-7 amd64 [installed,automatic]
cron/jammy,now 3.0pl1-137ubuntu3 amd64 [installed,automatic]
cryptsetup-bin/jammy,now 2:2.4.3-1ubuntu1 amd64 [installed,automatic]
cryptsetup-initramfs/jammy,now 2:2.4.3-1ubuntu1 all [installed,automatic]
cryptsetup/jammy,now 2:2.4.3-1ubuntu1 amd64 [installed,automatic]
curl/jammy,now 7.81.0-1 amd64 [installed,automatic]
dash/jammy,now 0.5.11+git20210903+057cd650a4ed-3build1 amd64 [installed]
dbus-user-session/jammy,now 1.12.20-2ubuntu4 amd64 [installed,automatic]
dbus/jammy,now 1.12.20-2ubuntu4 amd64 [installed,automatic]
debconf-i18n/jammy,now 1.5.79ubuntu1 all [installed,automatic]
debconf/jammy,now 1.5.79ubuntu1 all [installed,automatic]
debianutils/jammy,now 5.5-1ubuntu2 amd64 [installed,automatic]
diffutils/jammy,now 1:3.8-0ubuntu2 amd64 [installed]
dirmngr/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
distro-info-data/jammy,now 0.52 all [installed,automatic]
distro-info/jammy,now 1.1build1 amd64 [installed,automatic]
dmeventd/jammy,now 2:1.02.175-2.1ubuntu4 amd64 [installed,automatic]
dmidecode/jammy,now 3.3-3 amd64 [installed,automatic]
dmsetup/jammy,now 2:1.02.175-2.1ubuntu4 amd64 [installed,automatic]
dosfstools/jammy,now 4.2-1build3 amd64 [installed,automatic]
dpkg/jammy,now 1.21.1ubuntu2 amd64 [installed,automatic]
e2fsprogs/jammy,now 1.46.5-2ubuntu1 amd64 [installed,automatic]
eatmydata/jammy,now 130-2build1 all [installed]
ec2-hibinit-agent/jammy,now 1.0.0-0ubuntu11 all [installed]
ec2-instance-connect/jammy,now 1.1.14-0ubuntu1 all [installed]
ed/jammy,now 1.18-1 amd64 [installed,automatic]
efibootmgr/jammy,now 17-1ubuntu2 amd64 [installed]
eject/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
ethtool/jammy,now 1:5.16-1 amd64 [installed,automatic]
fdisk/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
file/jammy,now 1:5.41-3 amd64 [installed,automatic]
finalrd/jammy,now 9build1 all [installed,automatic]
findutils/jammy,now 4.8.0-1ubuntu3 amd64 [installed]
fonts-ubuntu-console/jammy,now 0.83-6ubuntu1 all [installed,automatic]
friendly-recovery/jammy,now 0.2.42 all [installed,automatic]
ftp/jammy,now 20210827-4build1 all [installed,automatic]
fuse3/jammy,now 3.10.5-1build1 amd64 [installed,automatic]
fwupd-signed/jammy,now 1.44+1.2-3 amd64 [installed,automatic]
fwupd/jammy,now 1.7.5-3 amd64 [installed,automatic]
gawk/jammy,now 1:5.1.0-1build3 amd64 [installed,automatic]
gcc-12-base/jammy,now 12-20220319-1ubuntu1 amd64 [installed,automatic]
gdisk/jammy,now 1.0.8-4build1 amd64 [installed,automatic]
gettext-base/jammy,now 0.21-4ubuntu4 amd64 [installed,automatic]
gir1.2-glib-2.0/jammy,now 1.72.0-1 amd64 [installed,automatic]
gir1.2-packagekitglib-1.0/jammy,now 1.2.5-2ubuntu2 amd64 [installed,automatic]
git-man/jammy,now 1:2.34.1-1ubuntu1 all [installed,automatic]
git/jammy,now 1:2.34.1-1ubuntu1 amd64 [installed,automatic]
gnupg-l10n/jammy,now 2.2.27-3ubuntu2 all [installed,automatic]
gnupg-utils/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
gnupg/jammy,now 2.2.27-3ubuntu2 all [installed,automatic]
gpg-agent/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
gpg-wks-client/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
gpg-wks-server/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
gpg/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
gpgconf/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
gpgsm/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
gpgv/jammy,now 2.2.27-3ubuntu2 amd64 [installed,automatic]
grep/jammy,now 3.7-1build1 amd64 [installed]
groff-base/jammy,now 1.22.4-8build1 amd64 [installed,automatic]
grub-common/jammy,now 2.06-2ubuntu7 amd64 [installed,automatic]
grub-efi-amd64-bin/jammy,now 2.06-2ubuntu7 amd64 [installed]
grub-efi-amd64-signed/jammy,now 1.180+2.06-2ubuntu7 amd64 [installed]
grub-gfxpayload-lists/jammy,now 0.7 amd64 [installed,automatic]
grub-pc-bin/jammy,now 2.06-2ubuntu7 amd64 [installed,automatic]
grub-pc/jammy,now 2.06-2ubuntu7 amd64 [installed,automatic]
grub2-common/jammy,now 2.06-2ubuntu7 amd64 [installed,automatic]
gzip/jammy,now 1.10-4ubuntu4 amd64 [installed]
hdparm/jammy,now 9.60+ds-1build3 amd64 [installed,automatic]
hibagent/jammy,now 1.0.1-0ubuntu2 all [installed]
hostname/jammy,now 3.23ubuntu2 amd64 [installed]
htop/jammy,now 3.0.5-7build2 amd64 [installed,automatic]
info/jammy,now 6.8-4build1 amd64 [installed,automatic]
init-system-helpers/jammy,now 1.62 all [installed,automatic]
init/jammy,now 1.62 amd64 [installed]
initramfs-tools-bin/jammy,now 0.140ubuntu13 amd64 [installed,automatic]
initramfs-tools-core/jammy,now 0.140ubuntu13 all [installed,automatic]
initramfs-tools/jammy,now 0.140ubuntu13 all [installed,automatic]
install-info/jammy,now 6.8-4build1 amd64 [installed,automatic]
intel-microcode/jammy,now 3.20210608.2ubuntu1 amd64 [installed]
iproute2/jammy,now 5.15.0-1ubuntu2 amd64 [installed,automatic]
iptables/jammy,now 1.8.7-1ubuntu5 amd64 [installed,automatic]
iputils-ping/jammy,now 3:20211215-1 amd64 [installed,automatic]
iputils-tracepath/jammy,now 3:20211215-1 amd64 [installed,automatic]
irqbalance/jammy,now 1.8.0-1build1 amd64 [installed,automatic]
isc-dhcp-client/jammy,now 4.4.1-2.3ubuntu2 amd64 [installed,automatic]
isc-dhcp-common/jammy,now 4.4.1-2.3ubuntu2 amd64 [installed,automatic]
iso-codes/jammy,now 4.9.0-1 all [installed,automatic]
iucode-tool/jammy,now 2.3.1-1build1 amd64 [installed]
kbd/jammy,now 2.3.0-3ubuntu4 amd64 [installed,automatic]
keyboard-configuration/jammy,now 1.205ubuntu3 all [installed,automatic]
klibc-utils/jammy,now 2.0.10-4 amd64 [installed,automatic]
kmod/jammy,now 29-1ubuntu1 amd64 [installed,automatic]
kpartx/jammy,now 0.8.8-1ubuntu1 amd64 [installed,automatic]
landscape-common/jammy,now 19.12-0ubuntu13 amd64 [installed,automatic]
less/jammy,now 590-1build1 amd64 [installed,automatic]
libacl1/jammy,now 2.3.1-1 amd64 [installed,automatic]
libaio1/jammy,now 0.3.112-13build1 amd64 [installed,automatic]
libapparmor1/jammy,now 3.0.4-2ubuntu2 amd64 [installed,automatic]
libappstream4/jammy,now 0.15.2-2 amd64 [installed,automatic]
libapt-pkg6.0/jammy,now 2.4.5 amd64 [installed,automatic]
libarchive13/jammy,now 3.6.0-1ubuntu1 amd64 [installed,automatic]
libargon2-1/jammy,now 0~20171227-0.3 amd64 [installed,automatic]
libassuan0/jammy,now 2.5.5-1build1 amd64 [installed,automatic]
libatasmart4/jammy,now 0.19-5build2 amd64 [installed,automatic]
libatm1/jammy,now 1:2.5.1-4build2 amd64 [installed,automatic]
libattr1/jammy,now 1:2.5.1-1build1 amd64 [installed,automatic]
libaudit-common/jammy,now 1:3.0.7-1build1 all [installed,automatic]
libaudit1/jammy,now 1:3.0.7-1build1 amd64 [installed,automatic]
libbinutils/jammy,now 2.38-3ubuntu1 amd64 [installed,automatic]
libblkid1/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
libblockdev-crypto2/jammy,now 2.26-1 amd64 [installed,automatic]
libblockdev-fs2/jammy,now 2.26-1 amd64 [installed,automatic]
libblockdev-loop2/jammy,now 2.26-1 amd64 [installed,automatic]
libblockdev-part-err2/jammy,now 2.26-1 amd64 [installed,automatic]
libblockdev-part2/jammy,now 2.26-1 amd64 [installed,automatic]
libblockdev-swap2/jammy,now 2.26-1 amd64 [installed,automatic]
libblockdev-utils2/jammy,now 2.26-1 amd64 [installed,automatic]
libblockdev2/jammy,now 2.26-1 amd64 [installed,automatic]
libbpf0/jammy,now 1:0.5.0-1 amd64 [installed,automatic]
libbrotli1/jammy,now 1.0.9-2build6 amd64 [installed,automatic]
libbsd0/jammy,now 0.11.5-1 amd64 [installed,automatic]
libbz2-1.0/jammy,now 1.0.8-5build1 amd64 [installed,automatic]
libc-bin/jammy,now 2.35-0ubuntu3 amd64 [installed,automatic]
libc6/jammy,now 2.35-0ubuntu3 amd64 [installed,automatic]
libcap-ng0/jammy,now 0.7.9-2.2build3 amd64 [installed,automatic]
libcap2-bin/jammy,now 1:2.44-1build3 amd64 [installed,automatic]
libcap2/jammy,now 1:2.44-1build3 amd64 [installed,automatic]
libcbor0.8/jammy,now 0.8.0-2ubuntu1 amd64 [installed,automatic]
libcom-err2/jammy,now 1.46.5-2ubuntu1 amd64 [installed,automatic]
libcrypt1/jammy,now 1:4.4.27-1 amd64 [installed,automatic]
libcryptsetup12/jammy,now 2:2.4.3-1ubuntu1 amd64 [installed,automatic]
libctf-nobfd0/jammy,now 2.38-3ubuntu1 amd64 [installed,automatic]
libctf0/jammy,now 2.38-3ubuntu1 amd64 [installed,automatic]
libcurl3-gnutls/jammy,now 7.81.0-1 amd64 [installed,automatic]
libcurl4/jammy,now 7.81.0-1 amd64 [installed,automatic]
libdb5.3/jammy,now 5.3.28+dfsg1-0.8ubuntu3 amd64 [installed,automatic]
libdbus-1-3/jammy,now 1.12.20-2ubuntu4 amd64 [installed,automatic]
libdebconfclient0/jammy,now 0.261ubuntu1 amd64 [installed]
libdevmapper-event1.02.1/jammy,now 2:1.02.175-2.1ubuntu4 amd64 [installed,automatic]
libdevmapper1.02.1/jammy,now 2:1.02.175-2.1ubuntu4 amd64 [installed,automatic]
libdns-export1110/jammy,now 1:9.11.19+dfsg-2.1ubuntu3 amd64 [installed,automatic]
libdrm-common/jammy,now 2.4.110-1ubuntu1 all [installed,automatic]
libdrm2/jammy,now 2.4.110-1ubuntu1 amd64 [installed,automatic]
libdw1/jammy,now 0.186-1build1 amd64 [installed,automatic]
libeatmydata1/jammy,now 130-2build1 amd64 [installed]
libedit2/jammy,now 3.1-20210910-1build1 amd64 [installed,automatic]
libefiboot1/jammy,now 37-6ubuntu2 amd64 [installed,automatic]
libefivar1/jammy,now 37-6ubuntu2 amd64 [installed,automatic]
libelf1/jammy,now 0.186-1build1 amd64 [installed,automatic]
liberror-perl/jammy,now 0.17029-1 all [installed,automatic]
libestr0/jammy,now 0.1.10-2.1build3 amd64 [installed,automatic]
libevent-core-2.1-7/jammy,now 2.1.12-stable-1build3 amd64 [installed,automatic]
libexpat1/jammy,now 2.4.7-1 amd64 [installed,automatic]
libext2fs2/jammy,now 1.46.5-2ubuntu1 amd64 [installed,automatic]
libfastjson4/jammy,now 0.99.9-1build2 amd64 [installed,automatic]
libfdisk1/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
libffi8/jammy,now 3.4.2-4 amd64 [installed,automatic]
libfido2-1/jammy,now 1.10.0-1 amd64 [installed,automatic]
libflashrom1/jammy,now 1.2-5build1 amd64 [installed,automatic]
libfreetype6/jammy,now 2.11.1+dfsg-1build1 amd64 [installed,automatic]
libfribidi0/jammy,now 1.0.8-2ubuntu3 amd64 [installed,automatic]
libftdi1-2/jammy,now 1.5-5build3 amd64 [installed,automatic]
libfuse3-3/jammy,now 3.10.5-1build1 amd64 [installed,automatic]
libfwupd2/jammy,now 1.7.5-3 amd64 [installed,automatic]
libfwupdplugin5/jammy,now 1.7.5-3 amd64 [installed,automatic]
libgcab-1.0-0/jammy,now 1.4-3build2 amd64 [installed,automatic]
libgcc-s1/jammy,now 12-20220319-1ubuntu1 amd64 [installed,automatic]
libgcrypt20/jammy,now 1.9.4-3ubuntu3 amd64 [installed,automatic]
libgdbm-compat4/jammy,now 1.23-1 amd64 [installed,automatic]
libgdbm6/jammy,now 1.23-1 amd64 [installed,automatic]
libgirepository-1.0-1/jammy,now 1.72.0-1 amd64 [installed,automatic]
libglib2.0-0/jammy,now 2.72.1-1 amd64 [installed,automatic]
libglib2.0-bin/jammy,now 2.72.1-1 amd64 [installed,automatic]
libglib2.0-data/jammy,now 2.72.1-1 all [installed,automatic]
libgmp10/jammy,now 2:6.2.1+dfsg-3ubuntu1 amd64 [installed,automatic]
libgnutls30/jammy,now 3.7.3-4ubuntu1 amd64 [installed,automatic]
libgpg-error0/jammy,now 1.43-3 amd64 [installed,automatic]
libgpgme11/jammy,now 1.16.0-1.2ubuntu4 amd64 [installed,automatic]
libgpm2/jammy,now 1.20.7-10build1 amd64 [installed,automatic]
libgssapi-krb5-2/jammy,now 1.19.2-2 amd64 [installed,automatic]
libgstreamer1.0-0/jammy,now 1.20.1-1 amd64 [installed,automatic]
libgudev-1.0-0/jammy,now 1:237-2build1 amd64 [installed,automatic]
libgusb2/jammy,now 0.3.10-1 amd64 [installed,automatic]
libhogweed6/jammy,now 3.7.3-1build2 amd64 [installed,automatic]
libicu70/jammy,now 70.1-2 amd64 [installed,automatic]
libidn2-0/jammy,now 2.3.2-2build1 amd64 [installed,automatic]
libinih1/jammy,now 53-1ubuntu3 amd64 [installed,automatic]
libintl-perl/jammy,now 1.26-3build2 all [installed,automatic]
libintl-xs-perl/jammy,now 1.26-3build2 amd64 [installed,automatic]
libip4tc2/jammy,now 1.8.7-1ubuntu5 amd64 [installed,automatic]
libip6tc2/jammy,now 1.8.7-1ubuntu5 amd64 [installed,automatic]
libisc-export1105/jammy,now 1:9.11.19+dfsg-2.1ubuntu3 amd64 [installed,automatic]
libisns0/jammy,now 0.101-0ubuntu2 amd64 [installed,automatic]
libjansson4/jammy,now 2.13.1-1.1build3 amd64 [installed,automatic]
libjcat1/jammy,now 0.1.9-1 amd64 [installed,automatic]
libjson-c5/jammy,now 0.15-2build4 amd64 [installed,automatic]
libjson-glib-1.0-0/jammy,now 1.6.6-1build1 amd64 [installed,automatic]
libjson-glib-1.0-common/jammy,now 1.6.6-1build1 all [installed,automatic]
libk5crypto3/jammy,now 1.19.2-2 amd64 [installed,automatic]
libkeyutils1/jammy,now 1.6.1-2ubuntu3 amd64 [installed,automatic]
libklibc/jammy,now 2.0.10-4 amd64 [installed,automatic]
libkmod2/jammy,now 29-1ubuntu1 amd64 [installed,automatic]
libkrb5-3/jammy,now 1.19.2-2 amd64 [installed,automatic]
libkrb5support0/jammy,now 1.19.2-2 amd64 [installed,automatic]
libksba8/jammy,now 1.6.0-2build1 amd64 [installed,automatic]
libldap-2.5-0/jammy,now 2.5.11+dfsg-1~exp1ubuntu3 amd64 [installed,automatic]
libldap-common/jammy,now 2.5.11+dfsg-1~exp1ubuntu3 all [installed,automatic]
liblmdb0/jammy,now 0.9.24-1build2 amd64 [installed,automatic]
liblocale-gettext-perl/jammy,now 1.07-4build3 amd64 [installed,automatic]
liblvm2cmd2.03/jammy,now 2.03.11-2.1ubuntu4 amd64 [installed,automatic]
liblz4-1/jammy,now 1.9.3-2build2 amd64 [installed,automatic]
liblzma5/jammy,now 5.2.5-2ubuntu1 amd64 [installed,automatic]
liblzo2-2/jammy,now 2.10-2build3 amd64 [installed,automatic]
libmagic-mgc/jammy,now 1:5.41-3 amd64 [installed,automatic]
libmagic1/jammy,now 1:5.41-3 amd64 [installed,automatic]
libmaxminddb0/jammy,now 1.5.2-1build2 amd64 [installed,automatic]
libmbim-glib4/jammy,now 1.26.2-1build1 amd64 [installed,automatic]
libmbim-proxy/jammy,now 1.26.2-1build1 amd64 [installed,automatic]
libmd0/jammy,now 1.0.4-1build1 amd64 [installed,automatic]
libmm-glib0/jammy,now 1.18.6-1 amd64 [installed,automatic]
libmnl0/jammy,now 1.0.4-3build2 amd64 [installed,automatic]
libmodule-find-perl/jammy,now 0.15-1 all [installed,automatic]
libmodule-scandeps-perl/jammy,now 1.31-1 all [installed,automatic]
libmount1/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
libmpdec3/jammy,now 2.5.1-2build2 amd64 [installed,automatic]
libmpfr6/jammy,now 4.1.0-3build3 amd64 [installed,automatic]
libmspack0/jammy,now 0.10.1-2build2 amd64 [installed,automatic]
libncurses6/jammy,now 6.3-2 amd64 [installed,automatic]
libncursesw6/jammy,now 6.3-2 amd64 [installed,automatic]
libnetfilter-conntrack3/jammy,now 1.0.9-1 amd64 [installed,automatic]
libnetplan0/jammy,now 0.104-0ubuntu2 amd64 [installed,automatic]
libnettle8/jammy,now 3.7.3-1build2 amd64 [installed,automatic]
libnewt0.52/jammy,now 0.52.21-5ubuntu2 amd64 [installed,automatic]
libnfnetlink0/jammy,now 1.0.1-3build3 amd64 [installed,automatic]
libnftables1/jammy,now 1.0.2-1ubuntu2 amd64 [installed,automatic]
libnftnl11/jammy,now 1.2.1-1build1 amd64 [installed,automatic]
libnghttp2-14/jammy,now 1.43.0-1build3 amd64 [installed,automatic]
libnl-3-200/jammy,now 3.5.0-0.1 amd64 [installed,automatic]
libnl-genl-3-200/jammy,now 3.5.0-0.1 amd64 [installed,automatic]
libnpth0/jammy,now 1.6-3build2 amd64 [installed,automatic]
libnsl2/jammy,now 1.3.0-2build2 amd64 [installed,automatic]
libnspr4/jammy,now 2:4.32-3build1 amd64 [installed,automatic]
libnss-systemd/jammy,now 249.11-0ubuntu3 amd64 [installed,automatic]
libnss3/jammy,now 2:3.68.2-0ubuntu1 amd64 [installed,automatic]
libntfs-3g89/jammy,now 1:2021.8.22-3ubuntu1 amd64 [installed,automatic]
libnuma1/jammy,now 2.0.14-3ubuntu2 amd64 [installed,automatic]
libopeniscsiusr/jammy,now 2.1.5-1ubuntu1 amd64 [installed,automatic]
libp11-kit0/jammy,now 0.24.0-6build1 amd64 [installed,automatic]
libpackagekit-glib2-18/jammy,now 1.2.5-2ubuntu2 amd64 [installed,automatic]
libpam-cap/jammy,now 1:2.44-1build3 amd64 [installed,automatic]
libpam-modules-bin/jammy,now 1.4.0-11ubuntu2 amd64 [installed,automatic]
libpam-modules/jammy,now 1.4.0-11ubuntu2 amd64 [installed,automatic]
libpam-runtime/jammy,now 1.4.0-11ubuntu2 all [installed,automatic]
libpam-systemd/jammy,now 249.11-0ubuntu3 amd64 [installed,automatic]
libpam0g/jammy,now 1.4.0-11ubuntu2 amd64 [installed,automatic]
libparted-fs-resize0/jammy,now 3.4-2build1 amd64 [installed,automatic]
libparted2/jammy,now 3.4-2build1 amd64 [installed,automatic]
libpcap0.8/jammy,now 1.10.1-4build1 amd64 [installed,automatic]
libpci3/jammy,now 1:3.7.0-6 amd64 [installed,automatic]
libpcre2-8-0/jammy,now 10.39-3build1 amd64 [installed,automatic]
libpcre3/jammy,now 2:8.39-13build5 amd64 [installed,automatic]
libperl5.34/jammy,now 5.34.0-3ubuntu1 amd64 [installed,automatic]
libpipeline1/jammy,now 1.5.5-1 amd64 [installed,automatic]
libplymouth5/jammy,now 0.9.5+git20211018-1ubuntu3 amd64 [installed,automatic]
libpng16-16/jammy,now 1.6.37-3build5 amd64 [installed,automatic]
libpolkit-agent-1-0/jammy,now 0.105-33 amd64 [installed,automatic]
libpolkit-gobject-1-0/jammy,now 0.105-33 amd64 [installed,automatic]
libpopt0/jammy,now 1.18-3build1 amd64 [installed,automatic]
libproc-processtable-perl/jammy,now 0.634-1build1 amd64 [installed,automatic]
libprocps8/jammy,now 2:3.3.17-6ubuntu2 amd64 [installed,automatic]
libpsl5/jammy,now 0.21.0-1.2build2 amd64 [installed,automatic]
libpython3-stdlib/jammy,now 3.10.4-0ubuntu2 amd64 [installed,automatic]
libpython3.10-minimal/jammy,now 3.10.4-3 amd64 [installed,automatic]
libpython3.10-stdlib/jammy,now 3.10.4-3 amd64 [installed,automatic]
libpython3.10/jammy,now 3.10.4-3 amd64 [installed,automatic]
libqmi-glib5/jammy,now 1.30.4-1 amd64 [installed,automatic]
libqmi-proxy/jammy,now 1.30.4-1 amd64 [installed,automatic]
libreadline8/jammy,now 8.1.2-1 amd64 [installed,automatic]
librtmp1/jammy,now 2.4+20151223.gitfa8646d.1-2build4 amd64 [installed,automatic]
libsasl2-2/jammy,now 2.1.27+dfsg2-3ubuntu1 amd64 [installed,automatic]
libsasl2-modules-db/jammy,now 2.1.27+dfsg2-3ubuntu1 amd64 [installed,automatic]
libsasl2-modules/jammy,now 2.1.27+dfsg2-3ubuntu1 amd64 [installed,automatic]
libseccomp2/jammy,now 2.5.3-2ubuntu2 amd64 [installed,automatic]
libselinux1/jammy,now 3.3-1build2 amd64 [installed,automatic]
libsemanage-common/jammy,now 3.3-1build2 all [installed,automatic]
libsemanage2/jammy,now 3.3-1build2 amd64 [installed,automatic]
libsepol2/jammy,now 3.3-1build1 amd64 [installed,automatic]
libsgutils2-2/jammy,now 1.46-1build1 amd64 [installed,automatic]
libsigsegv2/jammy,now 2.13-1ubuntu3 amd64 [installed,automatic]
libslang2/jammy,now 2.3.2-5build4 amd64 [installed,automatic]
libsmartcols1/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
libsmbios-c2/jammy,now 2.4.3-1build1 amd64 [installed,automatic]
libsodium23/jammy,now 1.0.18-1build2 amd64 [installed,automatic]
libsort-naturally-perl/jammy,now 1.03-2 all [installed,automatic]
libsqlite3-0/jammy,now 3.37.2-2 amd64 [installed,automatic]
libss2/jammy,now 1.46.5-2ubuntu1 amd64 [installed,automatic]
libssh-4/jammy,now 0.9.6-2build1 amd64 [installed,automatic]
libssl3/jammy,now 3.0.2-0ubuntu1 amd64 [installed,automatic]
libstdc++6/jammy,now 12-20220319-1ubuntu1 amd64 [installed,automatic]
libstemmer0d/jammy,now 2.2.0-1build1 amd64 [installed,automatic]
libsystemd0/jammy,now 249.11-0ubuntu3 amd64 [installed,automatic]
libtasn1-6/jammy,now 4.18.0-4build1 amd64 [installed,automatic]
libtcl8.6/jammy,now 8.6.12+dfsg-1build1 amd64 [installed,automatic]
libterm-readkey-perl/jammy,now 2.38-1build4 amd64 [installed,automatic]
libtext-charwidth-perl/jammy,now 0.04-10build3 amd64 [installed,automatic]
libtext-iconv-perl/jammy,now 1.7-7build3 amd64 [installed,automatic]
libtext-wrapi18n-perl/jammy,now 0.06-9 all [installed,automatic]
libtinfo6/jammy,now 6.3-2 amd64 [installed,automatic]
libtirpc-common/jammy,now 1.3.2-2build1 all [installed,automatic]
libtirpc3/jammy,now 1.3.2-2build1 amd64 [installed,automatic]
libtss2-esys-3.0.2-0/jammy,now 3.2.0-1ubuntu1 amd64 [installed,automatic]
libtss2-mu0/jammy,now 3.2.0-1ubuntu1 amd64 [installed,automatic]
libtss2-sys1/jammy,now 3.2.0-1ubuntu1 amd64 [installed,automatic]
libtss2-tcti-cmd0/jammy,now 3.2.0-1ubuntu1 amd64 [installed,automatic]
libtss2-tcti-device0/jammy,now 3.2.0-1ubuntu1 amd64 [installed,automatic]
libtss2-tcti-mssim0/jammy,now 3.2.0-1ubuntu1 amd64 [installed,automatic]
libtss2-tcti-swtpm0/jammy,now 3.2.0-1ubuntu1 amd64 [installed,automatic]
libuchardet0/jammy,now 0.0.7-1build2 amd64 [installed,automatic]
libudev1/jammy,now 249.11-0ubuntu3 amd64 [installed,automatic]
libudisks2-0/jammy,now 2.9.4-1ubuntu2 amd64 [installed,automatic]
libunistring2/jammy,now 1.0-1 amd64 [installed,automatic]
libunwind8/jammy,now 1.3.2-2build2 amd64 [installed,automatic]
liburcu8/jammy,now 0.13.1-1 amd64 [installed,automatic]
libusb-1.0-0/jammy,now 2:1.0.25-1ubuntu1 amd64 [installed,automatic]
libutempter0/jammy,now 1.2.1-2build2 amd64 [installed,automatic]
libuuid1/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
libuv1/jammy,now 1.43.0-1 amd64 [installed,automatic]
libvolume-key1/jammy,now 0.3.12-3.1build3 amd64 [installed,automatic]
libwrap0/jammy,now 7.6.q-31build2 amd64 [installed]
libx11-6/jammy,now 2:1.7.5-1 amd64 [installed,automatic]
libx11-data/jammy,now 2:1.7.5-1 all [installed,automatic]
libxau6/jammy,now 1:1.0.9-1build5 amd64 [installed,automatic]
libxcb1/jammy,now 1.14-3ubuntu3 amd64 [installed,automatic]
libxdmcp6/jammy,now 1:1.1.3-0ubuntu5 amd64 [installed,automatic]
libxext6/jammy,now 2:1.3.4-1build1 amd64 [installed,automatic]
libxml2/jammy,now 2.9.13+dfsg-1build1 amd64 [installed,automatic]
libxmlb2/jammy,now 0.3.6-2build1 amd64 [installed,automatic]
libxmlsec1-openssl/jammy,now 1.2.33-1build2 amd64 [installed,automatic]
libxmlsec1/jammy,now 1.2.33-1build2 amd64 [installed,automatic]
libxmuu1/jammy,now 2:1.1.3-3 amd64 [installed,automatic]
libxslt1.1/jammy,now 1.1.34-4build2 amd64 [installed,automatic]
libxtables12/jammy,now 1.8.7-1ubuntu5 amd64 [installed,automatic]
libxxhash0/jammy,now 0.8.1-1 amd64 [installed,automatic]
libyaml-0-2/jammy,now 0.2.2-1build2 amd64 [installed,automatic]
libzstd1/jammy,now 1.4.8+dfsg-3build1 amd64 [installed,automatic]
linux-aws-headers-5.15.0-1004/jammy,now 5.15.0-1004.6 all [installed]
linux-aws/jammy,now 5.15.0.1004.6 amd64 [installed]
linux-base/jammy,now 4.5ubuntu9 all [installed,automatic]
linux-headers-5.15.0-1004-aws/jammy,now 5.15.0-1004.6 amd64 [installed]
linux-headers-aws/jammy,now 5.15.0.1004.6 amd64 [installed]
linux-image-5.15.0-1004-aws/jammy,now 5.15.0-1004.6 amd64 [installed]
linux-image-aws/jammy,now 5.15.0.1004.6 amd64 [installed]
linux-modules-5.15.0-1004-aws/jammy,now 5.15.0-1004.6 amd64 [installed]
locales/jammy,now 2.35-0ubuntu3 all [installed,automatic]
login/jammy,now 1:4.8.1-2ubuntu2 amd64 [installed]
logrotate/jammy,now 3.19.0-1ubuntu1 amd64 [installed,automatic]
logsave/jammy,now 1.46.5-2ubuntu1 amd64 [installed,automatic]
lsb-base/jammy,now 11.1.0ubuntu4 all [installed,automatic]
lsb-release/jammy,now 11.1.0ubuntu4 all [installed,automatic]
lshw/jammy,now 02.19.git.2021.06.19.996aaad9c7-2build1 amd64 [installed,automatic]
lsof/jammy,now 4.93.2+dfsg-1.1build2 amd64 [installed,automatic]
lvm2/jammy,now 2.03.11-2.1ubuntu4 amd64 [installed,automatic]
lxd-agent-loader/jammy,now 0.5 all [installed,automatic]
man-db/jammy,now 2.10.2-1 amd64 [installed,automatic]
manpages/jammy,now 5.10-1ubuntu1 all [installed,automatic]
mawk/jammy,now 1.3.4.20200120-3 amd64 [installed,automatic]
mdadm/jammy,now 4.2-0ubuntu1 amd64 [installed,automatic]
media-types/jammy,now 7.0.0 all [installed,automatic]
microcode-initrd/jammy,now 2build1 amd64 [installed]
modemmanager/jammy,now 1.18.6-1 amd64 [installed,automatic]
mokutil/jammy,now 0.4.0-1ubuntu2 amd64 [installed]
motd-news-config/jammy,now 12ubuntu4 all [installed,automatic]
mount/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
mtr-tiny/jammy,now 0.95-1 amd64 [installed,automatic]
multipath-tools/jammy,now 0.8.8-1ubuntu1 amd64 [installed,automatic]
nano/jammy,now 6.2-1 amd64 [installed,automatic]
ncurses-base/jammy,now 6.3-2 all [installed]
ncurses-bin/jammy,now 6.3-2 amd64 [installed]
ncurses-term/jammy,now 6.3-2 all [installed]
needrestart/jammy,now 3.5-5ubuntu2 all [installed,automatic]
netbase/jammy,now 6.3 all [installed,automatic]
netcat-openbsd/jammy,now 1.218-4ubuntu1 amd64 [installed,automatic]
netplan.io/jammy,now 0.104-0ubuntu2 amd64 [installed,automatic]
networkd-dispatcher/jammy,now 2.1-2 all [installed,automatic]
nftables/jammy,now 1.0.2-1ubuntu2 amd64 [installed,automatic]
ntfs-3g/jammy,now 1:2021.8.22-3ubuntu1 amd64 [installed,automatic]
open-iscsi/jammy,now 2.1.5-1ubuntu1 amd64 [installed,automatic]
open-vm-tools/jammy,now 2:11.3.5-1ubuntu4 amd64 [installed,automatic]
openssh-client/jammy,now 1:8.9p1-3 amd64 [installed,automatic]
openssh-server/jammy,now 1:8.9p1-3 amd64 [installed]
openssh-sftp-server/jammy,now 1:8.9p1-3 amd64 [installed]
openssl/jammy,now 3.0.2-0ubuntu1 amd64 [installed,automatic]
os-prober/jammy,now 1.79ubuntu2 amd64 [installed,automatic]
overlayroot/jammy,now 0.47ubuntu1 all [installed,automatic]
packagekit-tools/jammy,now 1.2.5-2ubuntu2 amd64 [installed,automatic]
packagekit/jammy,now 1.2.5-2ubuntu2 amd64 [installed,automatic]
parted/jammy,now 3.4-2build1 amd64 [installed,automatic]
passwd/jammy,now 1:4.8.1-2ubuntu2 amd64 [installed,automatic]
pastebinit/jammy,now 1.5.1-1ubuntu1 all [installed,automatic]
patch/jammy,now 2.7.6-7build2 amd64 [installed,automatic]
pci.ids/jammy,now 0.0~2022.01.22-1 all [installed,automatic]
pciutils/jammy,now 1:3.7.0-6 amd64 [installed,automatic]
perl-base/jammy,now 5.34.0-3ubuntu1 amd64 [installed,automatic]
perl-modules-5.34/jammy,now 5.34.0-3ubuntu1 all [installed,automatic]
perl/jammy,now 5.34.0-3ubuntu1 amd64 [installed,automatic]
pinentry-curses/jammy,now 1.1.1-1build2 amd64 [installed,automatic]
pkexec/jammy,now 0.105-33 amd64 [installed,automatic]
plymouth-theme-ubuntu-text/jammy,now 0.9.5+git20211018-1ubuntu3 amd64 [installed,automatic]
plymouth/jammy,now 0.9.5+git20211018-1ubuntu3 amd64 [installed,automatic]
policykit-1/jammy,now 0.105-33 amd64 [installed,automatic]
polkitd/jammy,now 0.105-33 amd64 [installed,automatic]
pollinate/jammy,now 4.33-3ubuntu2 all [installed,automatic]
powermgmt-base/jammy,now 1.36 all [installed,automatic]
procps/jammy,now 2:3.3.17-6ubuntu2 amd64 [installed,automatic]
psmisc/jammy,now 23.4-2build3 amd64 [installed,automatic]
publicsuffix/jammy,now 20211207.1025-1 all [installed,automatic]
python-apt-common/jammy,now 2.3.0ubuntu2 all [installed,automatic]
python-babel-localedata/jammy,now 2.8.0+dfsg.1-7 all [installed]
python3-apport/jammy,now 2.20.11-0ubuntu82 all [installed,automatic]
python3-apt/jammy,now 2.3.0ubuntu2 amd64 [installed,automatic]
python3-attr/jammy,now 21.2.0-1 all [installed,automatic]
python3-automat/jammy,now 20.2.0-1 all [installed,automatic]
python3-babel/jammy,now 2.8.0+dfsg.1-7 all [installed]
python3-bcrypt/jammy,now 3.2.0-1build1 amd64 [installed,automatic]
python3-blinker/jammy,now 1.4+dfsg1-0.4 all [installed,automatic]
python3-certifi/jammy,now 2020.6.20-1 all [installed]
python3-cffi-backend/jammy,now 1.15.0-1build2 amd64 [installed,automatic]
python3-chardet/jammy,now 4.0.0-1 all [installed,automatic]
python3-click/jammy,now 8.0.3-1 all [installed,automatic]
python3-colorama/jammy,now 0.4.4-1 all [installed,automatic]
python3-commandnotfound/jammy,now 22.04.0 all [installed,automatic]
python3-configobj/jammy,now 5.0.6-5 all [installed,automatic]
python3-constantly/jammy,now 15.1.0-2 all [installed,automatic]
python3-cryptography/jammy,now 3.4.8-1ubuntu2 amd64 [installed,automatic]
python3-dbus/jammy,now 1.2.18-3build1 amd64 [installed,automatic]
python3-debconf/jammy,now 1.5.79ubuntu1 all [installed,automatic]
python3-debian/jammy,now 0.1.43ubuntu1 all [installed,automatic]
python3-distro-info/jammy,now 1.1build1 all [installed,automatic]
python3-distro/jammy,now 1.7.0-1 all [installed,automatic]
python3-distupgrade/jammy,now 1:22.04.10 all [installed,automatic]
python3-distutils/jammy,now 3.10.4-0ubuntu1 all [installed]
python3-gdbm/jammy,now 3.10.4-0ubuntu1 amd64 [installed,automatic]
python3-gi/jammy,now 3.42.0-3build1 amd64 [installed,automatic]
python3-hamcrest/jammy,now 2.0.2-2 all [installed,automatic]
python3-httplib2/jammy,now 0.20.2-2 all [installed,automatic]
python3-hyperlink/jammy,now 21.0.0-3 all [installed,automatic]
python3-idna/jammy,now 3.3-1 all [installed,automatic]
python3-importlib-metadata/jammy,now 4.6.4-1 all [installed,automatic]
python3-incremental/jammy,now 21.3.0-1 all [installed,automatic]
python3-jeepney/jammy,now 0.7.1-3 all [installed,automatic]
python3-jinja2/jammy,now 3.0.3-1 all [installed]
python3-json-pointer/jammy,now 2.0-0ubuntu1 all [installed]
python3-jsonpatch/jammy,now 1.32-2 all [installed]
python3-jsonschema/jammy,now 3.2.0-0ubuntu2 all [installed]
python3-jwt/jammy,now 2.3.0-1 all [installed,automatic]
python3-keyring/jammy,now 23.5.0-1 all [installed,automatic]
python3-launchpadlib/jammy,now 1.10.16-1 all [installed,automatic]
python3-lazr.restfulclient/jammy,now 0.14.4-1 all [installed,automatic]
python3-lazr.uri/jammy,now 1.0.6-2 all [installed,automatic]
python3-lib2to3/jammy,now 3.10.4-0ubuntu1 all [installed]
python3-markupsafe/jammy,now 2.0.1-2build1 amd64 [installed]
python3-minimal/jammy,now 3.10.4-0ubuntu2 amd64 [installed,automatic]
python3-more-itertools/jammy,now 8.10.0-2 all [installed,automatic]
python3-netifaces/jammy,now 0.11.0-1build2 amd64 [installed,automatic]
python3-newt/jammy,now 0.52.21-5ubuntu2 amd64 [installed,automatic]
python3-oauthlib/jammy,now 3.2.0-1 all [installed,automatic]
python3-openssl/jammy,now 21.0.0-1 all [installed,automatic]
python3-pexpect/jammy,now 4.8.0-2ubuntu1 all [installed,automatic]
python3-pkg-resources/jammy,now 59.6.0-1.2 all [installed,automatic]
python3-problem-report/jammy,now 2.20.11-0ubuntu82 all [installed,automatic]
python3-ptyprocess/jammy,now 0.7.0-3 all [installed,automatic]
python3-pyasn1-modules/jammy,now 0.2.1-1 all [installed,automatic]
python3-pyasn1/jammy,now 0.4.8-1 all [installed,automatic]
python3-pyparsing/jammy,now 2.4.7-1 all [installed,automatic]
python3-pyrsistent/jammy,now 0.18.1-1build1 amd64 [installed]
python3-requests/jammy,now 2.25.1+dfsg-2 all [installed]
python3-secretstorage/jammy,now 3.3.1-1 all [installed,automatic]
python3-serial/jammy,now 3.5-1 all [installed]
python3-service-identity/jammy,now 18.1.0-6 all [installed,automatic]
python3-setuptools/jammy,now 59.6.0-1.2 all [installed]
python3-six/jammy,now 1.16.0-3ubuntu1 all [installed,automatic]
python3-software-properties/jammy,now 0.99.22 all [installed,automatic]
python3-systemd/jammy,now 234-3ubuntu2 amd64 [installed,automatic]
python3-twisted/jammy,now 22.1.0-2ubuntu2 all [installed,automatic]
python3-tz/jammy,now 2022.1-1 all [installed]
python3-update-manager/jammy,now 1:22.04.9 all [installed,automatic]
python3-urllib3/jammy,now 1.26.5-1~exp1 all [installed]
python3-wadllib/jammy,now 1.3.6-1 all [installed,automatic]
python3-yaml/jammy,now 5.4.1-1ubuntu1 amd64 [installed,automatic]
python3-zipp/jammy,now 1.0.0-3 all [installed,automatic]
python3-zope.interface/jammy,now 5.4.0-1build1 amd64 [installed,automatic]
python3.10-minimal/jammy,now 3.10.4-3 amd64 [installed,automatic]
python3.10/jammy,now 3.10.4-3 amd64 [installed,automatic]
python3/jammy,now 3.10.4-0ubuntu2 amd64 [installed,automatic]
readline-common/jammy,now 8.1.2-1 all [installed,automatic]
rsync/jammy,now 3.2.3-8ubuntu3 amd64 [installed,automatic]
rsyslog/jammy,now 8.2112.0-2ubuntu2 amd64 [installed,automatic]
run-one/jammy,now 1.17-0ubuntu1 all [installed,automatic]
sbsigntool/jammy,now 0.9.4-2ubuntu2 amd64 [installed,automatic]
screen/jammy,now 4.9.0-1 amd64 [installed,automatic]
secureboot-db/jammy,now 1.8 amd64 [installed,automatic]
sed/jammy,now 4.8-1ubuntu2 amd64 [installed,automatic]
sensible-utils/jammy,now 0.0.17 all [installed,automatic]
sg3-utils-udev/jammy,now 1.46-1build1 all [installed,automatic]
sg3-utils/jammy,now 1.46-1build1 amd64 [installed,automatic]
shared-mime-info/jammy,now 2.1-2 amd64 [installed,automatic]
shim-signed/jammy,now 1.51+15.4-0ubuntu9 amd64 [installed]
snapd/jammy,now 2.55.3+22.04 amd64 [installed,automatic]
software-properties-common/jammy,now 0.99.22 all [installed,automatic]
sosreport/jammy,now 4.3-1ubuntu2 amd64 [installed,automatic]
squashfs-tools/jammy,now 1:4.5-3build1 amd64 [installed,automatic]
ssh-import-id/jammy,now 5.11-0ubuntu1 all [installed]
strace/jammy,now 5.16-0ubuntu3 amd64 [installed,automatic]
sudo/jammy,now 1.9.9-1ubuntu2 amd64 [installed,automatic]
systemd-sysv/jammy,now 249.11-0ubuntu3 amd64 [installed,automatic]
systemd/jammy,now 249.11-0ubuntu3 amd64 [installed,automatic]
sysvinit-utils/jammy,now 3.01-1ubuntu1 amd64 [installed]
tar/jammy,now 1.34+dfsg-1build3 amd64 [installed,automatic]
tcl8.6/jammy,now 8.6.12+dfsg-1build1 amd64 [installed,automatic]
tcl/jammy,now 8.6.11+1build2 amd64 [installed,automatic]
tcpdump/jammy,now 4.99.1-3build2 amd64 [installed,automatic]
telnet/jammy,now 0.17-44build1 amd64 [installed,automatic]
thin-provisioning-tools/jammy,now 0.9.0-2ubuntu1 amd64 [installed,automatic]
time/jammy,now 1.9-0.1build2 amd64 [installed,automatic]
tmux/jammy,now 3.2a-4build1 amd64 [installed,automatic]
tnftp/jammy,now 20210827-4build1 amd64 [installed,automatic]
tpm-udev/jammy,now 0.6 all [installed,automatic]
tzdata/jammy,now 2022a-0ubuntu1 all [installed,automatic]
ubuntu-advantage-tools/jammy,now 27.7~22.04.1 amd64 [installed,automatic]
ubuntu-keyring/jammy,now 2021.03.26 all [installed,automatic]
ubuntu-minimal/jammy,now 1.481 amd64 [installed]
ubuntu-release-upgrader-core/jammy,now 1:22.04.10 all [installed,automatic]
ubuntu-server/jammy,now 1.481 amd64 [installed]
ubuntu-standard/jammy,now 1.481 amd64 [installed]
ucf/jammy,now 3.0043 all [installed,automatic]
udev/jammy,now 249.11-0ubuntu3 amd64 [installed,automatic]
udisks2/jammy,now 2.9.4-1ubuntu2 amd64 [installed,automatic]
ufw/jammy,now 0.36.1-4build1 all [installed,automatic]
unattended-upgrades/jammy,now 2.8ubuntu1 all [installed,automatic]
update-manager-core/jammy,now 1:22.04.9 all [installed,automatic]
update-notifier-common/jammy,now 3.192.54 all [installed,automatic]
usb-modeswitch-data/jammy,now 20191128-4 all [installed,automatic]
usb-modeswitch/jammy,now 2.6.1-3ubuntu2 amd64 [installed,automatic]
usb.ids/jammy,now 2022.04.02-1 all [installed,automatic]
usbutils/jammy,now 1:014-1build1 amd64 [installed,automatic]
usrmerge/jammy,now 25ubuntu2 all [installed,automatic]
util-linux/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
uuid-runtime/jammy,now 2.37.2-4ubuntu3 amd64 [installed,automatic]
vim-common/jammy,now 2:8.2.3995-1ubuntu2 all [installed,automatic]
vim-runtime/jammy,now 2:8.2.3995-1ubuntu2 all [installed,automatic]
vim-tiny/jammy,now 2:8.2.3995-1ubuntu2 amd64 [installed,automatic]
vim/jammy,now 2:8.2.3995-1ubuntu2 amd64 [installed,automatic]
wget/jammy,now 1.21.2-2ubuntu1 amd64 [installed,automatic]
whiptail/jammy,now 0.52.21-5ubuntu2 amd64 [installed,automatic]
xauth/jammy,now 1:1.1-1build2 amd64 [installed,automatic]
xdg-user-dirs/jammy,now 0.17-2ubuntu4 amd64 [installed,automatic]
xfsprogs/jammy,now 5.13.0-1ubuntu2 amd64 [installed,automatic]
xkb-data/jammy,now 2.33-1 all [installed,automatic]
xxd/jammy,now 2:8.2.3995-1ubuntu2 amd64 [installed,automatic]
xz-utils/jammy,now 5.2.5-2ubuntu1 amd64 [installed,automatic]
zerofree/jammy,now 1.1.1-1build3 amd64 [installed,automatic]
zlib1g/jammy,now 1:1.2.11.dfsg-2ubuntu9 amd64 [installed,automatic]
zstd/jammy,now 1.4.8+dfsg-3build1 amd64 [installed,automatic]
$ snap list
Name              Version        Rev    Tracking         Publisher   Notes
amazon-ssm-agent  3.1.715.0      5163   latest/stable/…  aws✓        classic
core18            20220309       2344   latest/stable    canonical✓  base
core20            20220318       1405   latest/stable    canonical✓  base
lxd               5.0.0-e478009  22894  5.0/stable/…     canonical✓  -
snapd             2.54.4         15177  latest/stable    canonical✓  snapd

SSM AgentはSnapでインストールされているようですね。

サービス一覧

$ systemctl list-unit-files --type=service
UNIT FILE                                      STATE           VENDOR PRESET
acpid.service                                  disabled        enabled
apparmor.service                               enabled         enabled
apport-autoreport.service                      static          -
apport-forward@.service                        static          -
apport.service                                 generated       -
apt-daily-upgrade.service                      static          -
apt-daily.service                              static          -
autovt@.service                                alias           -
blk-availability.service                       enabled         enabled
bolt.service                                   static          -
chrony-dnssrv@.service                         static          -
chrony.service                                 enabled         enabled
chronyd.service                                alias           -
cloud-config.service                           enabled         enabled
cloud-final.service                            enabled         enabled
cloud-init-hotplugd.service                    static          -
cloud-init-local.service                       enabled         enabled
cloud-init.service                             enabled         enabled
console-getty.service                          disabled        disabled
console-setup.service                          enabled         enabled
container-getty@.service                       static          -
cron.service                                   enabled         enabled
cryptdisks-early.service                       masked          enabled
cryptdisks.service                             masked          enabled
dbus-org.freedesktop.hostname1.service         alias           -
dbus-org.freedesktop.locale1.service           alias           -
dbus-org.freedesktop.login1.service            alias           -
dbus-org.freedesktop.ModemManager1.service     alias           -
dbus-org.freedesktop.resolve1.service          alias           -
dbus-org.freedesktop.timedate1.service         alias           -
dbus-org.freedesktop.timesync1.service         masked          enabled
dbus.service                                   static          -
debug-shell.service                            disabled        disabled
dm-event.service                               static          -
dmesg.service                                  enabled         enabled
dpkg-db-backup.service                         static          -
e2scrub@.service                               static          -
e2scrub_all.service                            static          -
e2scrub_fail@.service                          static          -
e2scrub_reap.service                           enabled         enabled
ec2-instance-connect.service                   enabled         enabled
emergency.service                              static          -
finalrd.service                                enabled         enabled
friendly-recovery.service                      static          -
fstrim.service                                 static          -
fwupd-offline-update.service                   static          -
fwupd-refresh.service                          static          -
fwupd.service                                  static          -
getty-static.service                           static          -
getty@.service                                 enabled         enabled
grub-common.service                            enabled         enabled
grub-initrd-fallback.service                   enabled         enabled
hibagent.service                               generated       -
hibinit-agent.service                          enabled         enabled
hwclock.service                                masked          enabled
initrd-cleanup.service                         static          -
initrd-parse-etc.service                       static          -
initrd-switch-root.service                     static          -
initrd-udevadm-cleanup-db.service              static          -
irqbalance.service                             enabled         enabled
iscsi.service                                  alias           -
iscsid.service                                 disabled        enabled
keyboard-setup.service                         enabled         enabled
kmod-static-nodes.service                      static          -
kmod.service                                   alias           -
logrotate.service                              static          -
lvm2-lvmpolld.service                          static          -
lvm2-monitor.service                           enabled         enabled
lvm2-pvscan@.service                           static          -
lvm2.service                                   masked          enabled
lxd-agent.service                              enabled         enabled
man-db.service                                 static          -
mdadm-grow-continue@.service                   static          -
mdadm-last-resort@.service                     static          -
mdcheck_continue.service                       static          -
mdcheck_start.service                          static          -
mdmon@.service                                 static          -
mdmonitor-oneshot.service                      static          -
mdmonitor.service                              static          -
ModemManager.service                           enabled         enabled
modprobe@.service                              static          -
motd-news.service                              static          -
multipath-tools-boot.service                   masked          enabled
multipath-tools.service                        alias           -
multipathd.service                             enabled         enabled
netplan-ovs-cleanup.service                    enabled-runtime enabled
networkd-dispatcher.service                    enabled         enabled
nftables.service                               disabled        enabled
open-iscsi.service                             enabled         enabled
open-vm-tools.service                          enabled         enabled
packagekit-offline-update.service              static          -
packagekit.service                             static          -
plymouth-halt.service                          static          -
plymouth-kexec.service                         static          -
plymouth-log.service                           alias           -
plymouth-poweroff.service                      static          -
plymouth-quit-wait.service                     static          -
plymouth-quit.service                          static          -
plymouth-read-write.service                    static          -
plymouth-reboot.service                        static          -
plymouth-start.service                         static          -
plymouth-switch-root-initramfs.service         static          -
plymouth-switch-root.service                   static          -
plymouth.service                               alias           -
polkit.service                                 static          -
pollinate.service                              enabled         enabled
procps.service                                 alias           -
quotaon.service                                static          -
rc-local.service                               static          -
rc.service                                     masked          enabled
rcS.service                                    masked          enabled
rescue.service                                 static          -
rsync.service                                  disabled        enabled
rsyslog.service                                enabled         enabled
screen-cleanup.service                         masked          enabled
secureboot-db.service                          enabled         enabled
serial-getty@.service                          indirect        enabled
setvtrgb.service                               enabled         enabled
snap.amazon-ssm-agent.amazon-ssm-agent.service enabled         enabled
snap.lxd.activate.service                      enabled         enabled
snap.lxd.daemon.service                        static          -
snap.lxd.user-daemon.service                   static          -
snapd.apparmor.service                         enabled         enabled
snapd.autoimport.service                       enabled         enabled
snapd.core-fixup.service                       enabled         enabled
snapd.failure.service                          static          -
snapd.recovery-chooser-trigger.service         enabled         enabled
snapd.seeded.service                           enabled         enabled
snapd.service                                  enabled         enabled
snapd.snap-repair.service                      static          -
snapd.system-shutdown.service                  enabled         enabled
ssh.service                                    enabled         enabled
ssh@.service                                   static          -
sshd.service                                   alias           -
sudo.service                                   masked          enabled
syslog.service                                 alias           -
system-update-cleanup.service                  static          -
systemd-ask-password-console.service           static          -
systemd-ask-password-plymouth.service          static          -
systemd-ask-password-wall.service              static          -
systemd-backlight@.service                     static          -
systemd-binfmt.service                         static          -
systemd-bless-boot.service                     static          -
systemd-boot-check-no-failures.service         disabled        disabled
systemd-boot-system-token.service              static          -
systemd-exit.service                           static          -
systemd-fsck-root.service                      enabled-runtime enabled
systemd-fsck@.service                          static          -
systemd-fsckd.service                          static          -
systemd-halt.service                           static          -
systemd-hibernate-resume@.service              static          -
systemd-hibernate.service                      static          -
systemd-hostnamed.service                      static          -
systemd-hybrid-sleep.service                   static          -
systemd-initctl.service                        static          -
systemd-journal-flush.service                  static          -
systemd-journald.service                       static          -
systemd-journald@.service                      static          -
systemd-kexec.service                          static          -
systemd-localed.service                        static          -
systemd-logind.service                         static          -
systemd-machine-id-commit.service              static          -
systemd-modules-load.service                   static          -
systemd-network-generator.service              disabled        enabled
systemd-networkd-wait-online.service           enabled         disabled
systemd-networkd.service                       enabled         enabled
systemd-poweroff.service                       static          -
systemd-pstore.service                         enabled         enabled
systemd-quotacheck.service                     static          -
systemd-random-seed.service                    static          -
systemd-reboot.service                         static          -
systemd-remount-fs.service                     enabled-runtime enabled
systemd-resolved.service                       enabled         enabled
systemd-rfkill.service                         static          -
systemd-suspend-then-hibernate.service         static          -
systemd-suspend.service                        static          -
systemd-sysctl.service                         static          -
systemd-sysext.service                         disabled        enabled
systemd-sysusers.service                       static          -
systemd-time-wait-sync.service                 disabled        disabled
systemd-timedated.service                      static          -
systemd-timesyncd.service                      masked          enabled
systemd-tmpfiles-clean.service                 static          -
systemd-tmpfiles-setup-dev.service             static          -
systemd-tmpfiles-setup.service                 static          -
systemd-udev-settle.service                    static          -
systemd-udev-trigger.service                   static          -
systemd-udevd.service                          static          -
systemd-update-utmp-runlevel.service           static          -
systemd-update-utmp.service                    static          -
systemd-user-sessions.service                  static          -
systemd-volatile-root.service                  static          -
ua-license-check.service                       static          -
ua-reboot-cmds.service                         enabled         enabled
ua-timer.service                               static          -
udev.service                                   alias           -
udisks2.service                                enabled         enabled
ufw.service                                    enabled         enabled
unattended-upgrades.service                    enabled         enabled
update-notifier-download.service               static          -
update-notifier-motd.service                   static          -
usb_modeswitch@.service                        static          -
user-runtime-dir@.service                      static          -
user@.service                                  static          -
uuidd.service                                  indirect        enabled
vgauth.service                                 enabled         enabled
vmtoolsd.service                               alias           -
x11-common.service                             masked          enabled
xfs_scrub@.service                             static          -
xfs_scrub_all.service                          static          -
xfs_scrub_fail@.service                        static          -

211 unit files listed.

現在のプロセス一覧

$ ps auxf
USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root           2  0.0  0.0      0     0 ?        S    00:05   0:00 [kthreadd]
root           3  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [rcu_gp]
root           4  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [rcu_par_gp]
root           6  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kworker/0:0H-events_highpri]
root           9  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [mm_percpu_wq]
root          10  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [rcu_tasks_rude_]
root          11  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [rcu_tasks_trace]
root          12  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [ksoftirqd/0]
root          13  0.0  0.0      0     0 ?        I    00:05   0:00  \_ [rcu_sched]
root          14  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [migration/0]
root          15  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [idle_inject/0]
root          16  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [cpuhp/0]
root          17  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [cpuhp/1]
root          18  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [idle_inject/1]
root          19  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [migration/1]
root          20  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [ksoftirqd/1]
root          22  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kworker/1:0H-events_highpri]
root          23  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [kdevtmpfs]
root          24  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [netns]
root          25  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [inet_frag_wq]
root          26  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [kauditd]
root          28  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [khungtaskd]
root          29  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [oom_reaper]
root          30  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [writeback]
root          31  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [kcompactd0]
root          32  0.0  0.0      0     0 ?        SN   00:05   0:00  \_ [ksmd]
root          33  0.0  0.0      0     0 ?        SN   00:05   0:00  \_ [khugepaged]
root          79  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kintegrityd]
root          80  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kblockd]
root          81  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [blkcg_punt_bio]
root          82  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [tpm_dev_wq]
root          83  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [ata_sff]
root          84  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [md]
root          85  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [edac-poller]
root          86  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [devfreq_wq]
root          87  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [watchdogd]
root          89  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kworker/0:1H-kblockd]
root          91  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [kswapd0]
root          92  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [ecryptfs-kthrea]
root          94  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kthrotld]
root          95  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [acpi_thermal_pm]
root          96  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [nvme-wq]
root          97  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [nvme-reset-wq]
root          98  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [nvme-delete-wq]
root          99  0.0  0.0      0     0 ?        I    00:05   0:00  \_ [kworker/u4:2-events_unbound]
root         100  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [vfio-irqfd-clea]
root         102  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [mld]
root         103  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kworker/1:1H-kblockd]
root         104  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [ipv6_addrconf]
root         114  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kstrp]
root         117  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [zswap-shrink]
root         118  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kworker/u5:0]
root         123  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [charger_manager]
root         124  0.0  0.0      0     0 ?        S    00:05   0:00  \_ [jbd2/nvme0n1p1-]
root         125  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [ext4-rsv-conver]
root         193  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kaluad]
root         195  0.0  0.0      0     0 ?        I    00:05   0:00  \_ [kworker/0:3-events]
root         196  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kmpath_rdacd]
root         199  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [ipmi-msghandler]
root         203  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kmpathd]
root         204  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [kmpath_handlerd]
root         226  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [cryptd]
root         239  0.0  0.0      0     0 ?        I<   00:05   0:00  \_ [ena]
root         294  0.0  0.0      0     0 ?        I    00:05   0:00  \_ [kworker/u4:7-events_unbound]
root        1157  0.0  0.0      0     0 ?        I    00:05   0:00  \_ [kworker/1:4-mm_percpu_wq]
root        1312  0.0  0.0      0     0 ?        I    00:10   0:00  \_ [kworker/0:0-mm_percpu_wq]
root        1381  0.0  0.0      0     0 ?        I    00:20   0:00  \_ [kworker/1:0-events]
root        2448  0.0  0.0      0     0 ?        I    00:26   0:00  \_ [kworker/u4:0-events_power_efficient]
root           1  0.2  1.3 101928 12788 ?        Ss   00:05   0:03 /sbin/init
root         166  0.0  1.4  47860 13860 ?        S<s  00:05   0:00 /lib/systemd/systemd-journald
root         205  0.0  2.8 289312 27100 ?        SLsl 00:05   0:00 /sbin/multipathd -d -s
root         207  0.0  0.7  12144  6764 ?        Ss   00:05   0:00 /lib/systemd/systemd-udevd
systemd+     402  0.0  0.8  16200  7948 ?        Ss   00:05   0:00 /lib/systemd/systemd-networkd
systemd+     404  0.0  1.2  25352 12372 ?        Ss   00:05   0:00 /lib/systemd/systemd-resolved
root         456  0.0  0.1   2812  1228 ?        Ss   00:05   0:00 /usr/sbin/acpid
root         461  0.0  0.2   7284  2776 ?        Ss   00:05   0:00 /usr/sbin/cron -f -P
message+     462  0.0  0.5   8764  4884 ?        Ss   00:05   0:00 @dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root         469  0.0  0.4  82696  3916 ?        Ssl  00:05   0:00 /usr/sbin/irqbalance --foreground
root         470  0.0  1.9  31848 18408 ?        Ss   00:05   0:00 /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers
root         471  0.0  0.9 235984  8952 ?        Ssl  00:05   0:00 /usr/libexec/polkitd --no-debug
syslog       473  0.0  0.5 222400  5420 ?        Ssl  00:05   0:00 /usr/sbin/rsyslogd -n -iNONE
root         474  0.0  2.8 1465436 27960 ?       Ssl  00:05   0:00 /usr/lib/snapd/snapd
root         476  0.0  0.7  14968  7224 ?        Ss   00:05   0:00 /lib/systemd/systemd-logind
root         484  0.0  1.2 392452 12436 ?        Ssl  00:05   0:00 /usr/libexec/udisks2/udisksd
_chrony      500  0.0  0.3  18888  3528 ?        S    00:05   0:00 /usr/sbin/chronyd -F 1
_chrony      517  0.0  0.0  10560   528 ?        S    00:05   0:00  \_ /usr/sbin/chronyd -F 1
root         502  0.0  0.1   6216  1108 ttyS0    Ss+  00:05   0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,57600,38400,9600 ttyS0 vt220
root         541  0.0  1.2 316924 11884 ?        Ssl  00:05   0:00 /usr/sbin/ModemManager
root         549  0.0  0.1   6172  1092 tty1     Ss+  00:05   0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root         567  0.0  2.2 110084 21616 ?        Ssl  00:05   0:00 /usr/bin/python3 /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal
root        1136  0.0  1.7 1308796 16700 ?       Ssl  00:05   0:00 /snap/amazon-ssm-agent/5163/amazon-ssm-agent
root        1166  0.1  3.1 1616444 30804 ?       Sl   00:05   0:01  \_ /snap/amazon-ssm-agent/5163/ssm-agent-worker
root        1250  0.1  2.5 1315392 24280 ?       Sl   00:08   0:02      \_ /snap/amazon-ssm-agent/5163/ssm-session-worker cm-yamamoto.ryota-0e8e32d9e987943c2
ssm-user    1275  0.0  0.0   2888   940 pts/0    Ss   00:08   0:00      |   \_ sh
ssm-user    1291  0.0  0.5   9060  5280 pts/0    S    00:09   0:00      |       \_ bash
ssm-user    1300  0.0  0.5   9460  5684 pts/0    S+   00:10   0:00      |           \_ /bin/bash
root        2449  0.1  2.5 1315392 24348 ?       Sl   00:26   0:00      \_ /snap/amazon-ssm-agent/5163/ssm-session-worker cm-yamamoto.ryota-0bd9c10c48c220e54
ssm-user    2465  0.0  0.1   2888  1012 pts/1    Ss   00:26   0:00          \_ sh
ssm-user    2466  0.0  0.5   9060  5148 pts/1    S    00:26   0:00              \_ bash
ssm-user    2485  0.0  0.3  10620  3320 pts/1    R+   00:30   0:00                  \_ ps auxf
root        1155  0.0  0.9  15416  8772 ?        Ss   00:05   0:00 sshd: /usr/sbin/sshd -D -o AuthorizedKeysCommand /usr/share/ec2-instance-connect/eic_run_authorized_keys

現在使用しているポート一覧

$ sudo ss -antup
Netid       State        Recv-Q       Send-Q                  Local Address:Port                 Peer Address:Port       Process
udp         UNCONN       0            0                       127.0.0.53%lo:53                        0.0.0.0:*           users:(("systemd-resolve",pid=404,fd=13))
udp         UNCONN       0            0                   172.31.88.32%ens5:68                        0.0.0.0:*           users:(("systemd-network",pid=402,fd=15))
udp         UNCONN       0            0                           127.0.0.1:323                       0.0.0.0:*           users:(("chronyd",pid=500,fd=5))
udp         UNCONN       0            0                               [::1]:323                          [::]:*           users:(("chronyd",pid=500,fd=6))
tcp         LISTEN       0            4096                    127.0.0.53%lo:53                        0.0.0.0:*           users:(("systemd-resolve",pid=404,fd=14))
tcp         LISTEN       0            128                           0.0.0.0:22                        0.0.0.0:*           users:(("sshd",pid=1155,fd=3))
tcp         ESTAB        0            0                        172.31.88.32:49426                52.46.156.29:443         users:(("ssm-session-wor",pid=2449,fd=16))
tcp         ESTAB        0            0                        172.31.88.32:49422                52.46.156.29:443         users:(("ssm-agent-worke",pid=1166,fd=15))
tcp         ESTAB        0            0                        172.31.88.32:49572               52.94.233.158:443         users:(("ssm-agent-worke",pid=1166,fd=13))
tcp         ESTAB        0            0                        172.31.88.32:36976               52.46.128.123:443         users:(("ssm-session-wor",pid=1250,fd=16))
tcp         LISTEN       0            128                              [::]:22                           [::]:*           users:(("sshd",pid=1155,fd=4))

ディスクサイズ一覧

$ df -h
Filesystem       Size  Used Avail Use% Mounted on
/dev/root        7.6G  1.5G  6.2G  20% /
tmpfs            472M     0  472M   0% /dev/shm
tmpfs            189M  800K  188M   1% /run
tmpfs            5.0M     0  5.0M   0% /run/lock
/dev/nvme0n1p15  105M  5.3M  100M   5% /boot/efi

マウントされているファイルシステム一覧

$ findmnt
TARGET                        SOURCE           FSTYPE        OPTIONS
/                             /dev/nvme0n1p1   ext4          rw,relatime,discard,errors=remount-ro
├─/dev                        devtmpfs         devtmpfs      rw,relatime,size=476296k,nr_inodes=119074,mode=755,inode64
│ ├─/dev/shm                  tmpfs            tmpfs         rw,nosuid,nodev,inode64
│ ├─/dev/pts                  devpts           devpts        rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000
│ ├─/dev/hugepages            hugetlbfs        hugetlbfs     rw,relatime,pagesize=2M
│ └─/dev/mqueue               mqueue           mqueue        rw,nosuid,nodev,noexec,relatime
├─/proc                       proc             proc          rw,nosuid,nodev,noexec,relatime
│ └─/proc/sys/fs/binfmt_misc  systemd-1        autofs        rw,relatime,fd=29,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1913
├─/sys                        sysfs            sysfs         rw,nosuid,nodev,noexec,relatime
│ ├─/sys/kernel/security      securityfs       securityfs    rw,nosuid,nodev,noexec,relatime
│ ├─/sys/fs/cgroup            cgroup2          cgroup2       rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot
│ ├─/sys/fs/pstore            pstore           pstore        rw,nosuid,nodev,noexec,relatime
│ ├─/sys/fs/bpf               bpf              bpf           rw,nosuid,nodev,noexec,relatime,mode=700
│ ├─/sys/kernel/debug         debugfs          debugfs       rw,nosuid,nodev,noexec,relatime
│ ├─/sys/kernel/tracing       tracefs          tracefs       rw,nosuid,nodev,noexec,relatime
│ ├─/sys/kernel/config        configfs         configfs      rw,nosuid,nodev,noexec,relatime
│ └─/sys/fs/fuse/connections  fusectl          fusectl       rw,nosuid,nodev,noexec,relatime
├─/run                        tmpfs            tmpfs         rw,nosuid,nodev,size=193120k,nr_inodes=819200,mode=755,inode64
│ ├─/run/lock                 tmpfs            tmpfs         rw,nosuid,nodev,noexec,relatime,size=5120k,inode64
│ ├─/run/credentials/systemd-sysusers.service
│ │                           none             ramfs         ro,nosuid,nodev,noexec,relatime,mode=700
│ ├─/run/snapd/ns             tmpfs[/snapd/ns] tmpfs         rw,nosuid,nodev,size=193120k,nr_inodes=819200,mode=755,inode64
│ │ └─/run/snapd/ns/lxd.mnt   nsfs[mnt:[4026532207]]
│ │                                            nsfs          rw
│ └─/run/user/132             tmpfs            tmpfs         rw,nosuid,nodev,relatime,size=96556k,nr_inodes=24139,mode=700,uid=132,gid=137,inode6
│   └─/run/user/132/gvfs      gvfsd-fuse       fuse.gvfsd-fu rw,nosuid,nodev,relatime,user_id=132,group_id=137
├─/snap/core18/2344           /dev/loop1       squashfs      ro,nodev,relatime,errors=continue
├─/snap/amazon-ssm-agent/5163 /dev/loop0       squashfs      ro,nodev,relatime,errors=continue
├─/snap/core20/1405           /dev/loop2       squashfs      ro,nodev,relatime,errors=continue
├─/snap/snapd/15177           /dev/loop4       squashfs      ro,nodev,relatime,errors=continue
├─/snap/lxd/22894             /dev/loop3       squashfs      ro,nodev,relatime,errors=continue
├─/boot/efi                   /dev/nvme0n1p15  vfat          rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=iso8859-1,shortname=mixed,e
├─/snap/snapd/15534           /dev/loop5       squashfs      ro,nodev,relatime,errors=continue
├─/snap/core20/1434           /dev/loop6       squashfs      ro,nodev,relatime,errors=continue
└─/snap/lxd/22923             /dev/loop7       squashfs      ro,nodev,relatime,errors=continue

ユーザー一覧

$ cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-network:x:100:102:systemd Network Management,,,:/run/systemd:/usr/sbin/nologin
systemd-resolve:x:101:103:systemd Resolver,,,:/run/systemd:/usr/sbin/nologin
messagebus:x:102:105::/nonexistent:/usr/sbin/nologin
systemd-timesync:x:103:106:systemd Time Synchronization,,,:/run/systemd:/usr/sbin/nologin
syslog:x:104:111::/home/syslog:/usr/sbin/nologin
_apt:x:105:65534::/nonexistent:/usr/sbin/nologin
tss:x:106:112:TPM software stack,,,:/var/lib/tpm:/bin/false
uuidd:x:107:113::/run/uuidd:/usr/sbin/nologin
tcpdump:x:108:114::/nonexistent:/usr/sbin/nologin
sshd:x:109:65534::/run/sshd:/usr/sbin/nologin
pollinate:x:110:1::/var/cache/pollinate:/bin/false
landscape:x:111:116::/var/lib/landscape:/usr/sbin/nologin
ec2-instance-connect:x:112:65534::/nonexistent:/usr/sbin/nologin
_chrony:x:113:120:Chrony daemon,,,:/var/lib/chrony:/usr/sbin/nologin
ubuntu:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash
lxd:x:999:100::/var/snap/lxd/common/lxd:/bin/false
ssm-user:x:1001:1001::/home/ssm-user:/bin/sh

グループ一覧

$ cat /etc/group
root:x:0:
daemon:x:1:
bin:x:2:
sys:x:3:
adm:x:4:syslog,ubuntu
tty:x:5:
disk:x:6:
lp:x:7:
mail:x:8:
news:x:9:
uucp:x:10:
man:x:12:
proxy:x:13:
kmem:x:15:
dialout:x:20:ubuntu
fax:x:21:
voice:x:22:
cdrom:x:24:ubuntu
floppy:x:25:ubuntu
tape:x:26:
sudo:x:27:ubuntu
audio:x:29:ubuntu
dip:x:30:ubuntu
www-data:x:33:
backup:x:34:
operator:x:37:
list:x:38:
irc:x:39:
src:x:40:
gnats:x:41:
shadow:x:42:
utmp:x:43:
video:x:44:ubuntu
sasl:x:45:
plugdev:x:46:ubuntu
staff:x:50:
games:x:60:
users:x:100:
nogroup:x:65534:
systemd-journal:x:101:
systemd-network:x:102:
systemd-resolve:x:103:
crontab:x:104:
messagebus:x:105:
systemd-timesync:x:106:
input:x:107:
sgx:x:108:
kvm:x:109:
render:x:110:
syslog:x:111:
tss:x:112:
uuidd:x:113:
tcpdump:x:114:
_ssh:x:115:
landscape:x:116:
admin:x:117:
netdev:x:118:ubuntu
lxd:x:119:ubuntu
_chrony:x:120:
ubuntu:x:1000:
ssm-user:x:1001:

実行できるコマンド一覧

$ for x in ${PATH//:/ }; do ls -1 $x; done | sort | uniq
ModemManager
NF
VGAuthService
[
aa-enabled
aa-exec
aa-features-abi
aa-remove-unknown
aa-status
aa-teardown
accessdb
acpi_listen
acpid
add-apt-repository
add-shell
addgnupghome
addgroup
addpart
addr2line
adduser
agetty
amazon-ssm-agent.ssm-cli
apparmor_parser
apparmor_status
applygnupgdefaults
apport-bug
apport-cli
apport-collect
apport-unpack
apropos
apt
apt-add-repository
apt-cache
apt-cdrom
apt-config
apt-extracttemplates
apt-ftparchive
apt-get
apt-key
apt-mark
apt-sortpkgs
ar
arch
arpd
arptables
arptables-nft
arptables-nft-restore
arptables-nft-save
arptables-restore
arptables-save
as
automat-visualize3
awk
b2sum
badblocks
base32
base64
basename
basenc
bash
bashbug
bc
bcache-super-show
biosdecode
blkdeactivate
blkdiscard
blkid
blkzone
blockdev
boltctl
bootctl
bridge
btrfs
btrfs-convert
btrfs-find-root
btrfs-image
btrfs-map-logical
btrfs-select-super
btrfsck
btrfstune
busctl
busybox
byobu
byobu-config
byobu-ctrl-a
byobu-disable
byobu-disable-prompt
byobu-enable
byobu-enable-prompt
byobu-export
byobu-janitor
byobu-keybindings
byobu-launch
byobu-launcher
byobu-launcher-install
byobu-launcher-uninstall
byobu-layout
byobu-prompt
byobu-quiet
byobu-reconnect-sockets
byobu-screen
byobu-select-backend
byobu-select-profile
byobu-select-session
byobu-shell
byobu-silent
byobu-status
byobu-status-detail
byobu-tmux
byobu-ugraph
byobu-ulevel
c++filt
c_rehash
cache_check
cache_dump
cache_metadata_size
cache_repair
cache_restore
cache_writeback
capsh
captoinfo
cat
catman
cfdisk
cftp3
cgdisk
chage
chardet
chardetect
chattr
chcon
chcpu
chfn
chgpasswd
chgrp
chmem
chmod
choom
chown
chpasswd
chronyc
chronyd
chroot
chrt
chsh
chvt
ckbcomp
ckeygen3
cksum
clear
clear_console
cloud-id
cloud-init
cloud-init-per
cmp
codepage
col
col1
col2
col3
col4
col5
col6
col7
col8
col9
colcrt
colrm
column
comm
conch3
corelist
cp
cpan
cpan5.34-x86_64-linux-gnu
cpgr
cpio
cppw
cron
crontab
cryptdisks_start
cryptdisks_stop
cryptsetup
cryptsetup-reencrypt
cryptsetup-ssh
csplit
ctail
ctrlaltdel
ctstat
curl
cut
cvtsudoers
dash
date
dbus-cleanup-sockets
dbus-daemon
dbus-monitor
dbus-run-session
dbus-send
dbus-update-activation-environment
dbus-uuidgen
dbxtool
dcb
dd
deallocvt
deb-systemd-helper
deb-systemd-invoke
debconf
debconf-apt-progress
debconf-communicate
debconf-copydb
debconf-escape
debconf-set-selections
debconf-show
debian-distro-info
debugfs
delgroup
delpart
deluser
delv
depmod
devlink
df
dfu-tool
dh_bash-completion
dhclient
dhclient-script
diff
diff3
dig
dir
dircolors
dirmngr
dirmngr-client
dirname
distro-info
dmesg
dmeventd
dmidecode
dmsetup
dmstats
dnsdomainname
do-release-upgrade
domainname
dosfsck
dosfslabel
dpkg
dpkg-deb
dpkg-divert
dpkg-maintscript-helper
dpkg-preconfigure
dpkg-query
dpkg-realpath
dpkg-reconfigure
dpkg-split
dpkg-statoverride
dpkg-trigger
du
dumpe2fs
dumpkeys
dwp
e2freefrag
e2fsck
e2image
e2label
e2mmpstatus
e2scrub
e2scrub_all
e2undo
e4crypt
e4defrag
eatmydata
ebtables
ebtables-nft
ebtables-nft-restore
ebtables-nft-save
ebtables-restore
ebtables-save
ec2metadata
echo
ed
editor
efibootdump
efibootmgr
egrep
eject
elfedit
enable-ec2-spot-hibernation
enc2xs
encguess
env
envsubst
eqn
era_check
era_dump
era_invalidate
era_restore
ethtool
ex
expand
expiry
expr
factor
faillock
faillog
fallocate
false
fatlabel
fdisk
fgconsole
fgrep
file
filefrag
finalrd
fincore
find
findfs
findmnt
fixparts
flock
fmt
fold
free
fsadm
fsck
fsck.btrfs
fsck.cramfs
fsck.ext2
fsck.ext3
fsck.ext4
fsck.fat
fsck.minix
fsck.msdos
fsck.vfat
fsck.xfs
fsfreeze
fstab-decode
fstrim
ftp
fuser
fusermount
fusermount3
fwupdagent
fwupdate
fwupdmgr
fwupdtool
gapplication
gawk
gdbus
gdisk
genl
geqn
getcap
getconf
getent
getkeycodes
getopt
getpcaps
gettext
gettext.sh
getty
ginstall-info
gio
gio-querymodules
git
git-receive-pack
git-shell
git-upload-archive
git-upload-pack
glib-compile-schemas
gold
gpasswd
gpg
gpg-agent
gpg-connect-agent
gpg-wks-server
gpg-zip
gpgcompose
gpgconf
gpgparsemail
gpgsm
gpgsplit
gpgtar
gpgv
gpic
gprof
grep
gresource
groff
grog
grops
grotty
groupadd
groupdel
groupmems
groupmod
groups
growpart
grpck
grpconv
grpunconv
grub-bios-setup
grub-editenv
grub-file
grub-fstest
grub-glue-efi
grub-install
grub-kbdcomp
grub-macbless
grub-menulst2cfg
grub-mkconfig
grub-mkdevicemap
grub-mkfont
grub-mkimage
grub-mklayout
grub-mknetdir
grub-mkpasswd-pbkdf2
grub-mkrelpath
grub-mkrescue
grub-mkstandalone
grub-mount
grub-ntldr-img
grub-probe
grub-reboot
grub-render-label
grub-script-check
grub-set-default
grub-syslinux2cfg
gsettings
gtbl
gunzip
gzexe
gzip
h2ph
h2xs
halt
hardlink
hd
hdparm
head
helpztags
hexdump
hibagent
hibinit-agent
host
hostid
hostname
hostnamectl
htop
hwclock
hwe-support-status
i386
iconv
iconvconfig
id
info
infobrowser
infocmp
infotocap
init
insmod
install
install-info
installkernel
instmodsh
integritysetup
invoke-rc.d
ionice
ip
ip6tables
ip6tables-apply
ip6tables-legacy
ip6tables-legacy-restore
ip6tables-legacy-save
ip6tables-nft
ip6tables-nft-restore
ip6tables-nft-save
ip6tables-restore
ip6tables-restore-translate
ip6tables-save
ip6tables-translate
ipcmk
ipcrm
ipcs
iptables
iptables-apply
iptables-legacy
iptables-legacy-restore
iptables-legacy-save
iptables-nft
iptables-nft-restore
iptables-nft-save
iptables-restore
iptables-restore-translate
iptables-save
iptables-translate
iptables-xml
irqbalance
irqbalance-ui
ischroot
iscsi-iname
iscsi_discovery
iscsiadm
iscsid
iscsistart
isosize
iucode-tool
iucode_tool
join
journalctl
json-patch-jsondiff
json_pp
jsondiff
jsonpatch
jsonpointer
jsonschema
kbd_mode
kbdinfo
kbdrate
kbxutil
keep-one-running
kernel-install
keyring
kill
killall
killall5
kmod
kmodsign
kpartx
landscape-sysinfo
last
lastb
lastlog
lcf
ld
ld.bfd
ld.gold
ldattach
ldconfig
ldconfig.real
ldd
less
lessecho
lessfile
lesskey
lesspipe
lexgrog
libnetcfg
link
linux-boot-prober
linux-check-removal
linux-update-symlinks
linux-version
linux32
linux64
ln
lnstat
loadkeys
loadunimap
locale
locale-check
locale-gen
localectl
localedef
logger
login
loginctl
logname
logrotate
logsave
look
losetup
lowntfs-3g
ls
lsattr
lsb_release
lsblk
lscpu
lshw
lsinitramfs
lsipc
lslocks
lslogins
lsmem
lsmod
lsns
lsof
lspci
lspgpot
lsusb
luksformat
lvchange
lvconvert
lvcreate
lvdisplay
lvextend
lvm
lvmconfig
lvmdiskscan
lvmdump
lvmpolld
lvmsadc
lvmsar
lvreduce
lvremove
lvrename
lvresize
lvs
lvscan
lxc
lxd
lxd.benchmark
lxd.buginfo
lxd.check-kernel
lxd.lxc
lxd.lxc-to-lxd
lxd.migrate
lzcat
lzcmp
lzdiff
lzegrep
lzfgrep
lzgrep
lzless
lzma
lzmainfo
lzmore
mailmail3
make-bcache
man
man-recode
mandb
manifest
manpath
mapscrn
mawk
mcookie
md5sum
md5sum.textutils
mdadm
mdig
mdmon
mesg
migrate-pubring-from-classic-gpg
mk_modmap
mkdir
mkdosfs
mke2fs
mkfifo
mkfs
mkfs.bfs
mkfs.btrfs
mkfs.cramfs
mkfs.ext2
mkfs.ext3
mkfs.ext4
mkfs.fat
mkfs.minix
mkfs.msdos
mkfs.ntfs
mkfs.vfat
mkfs.xfs
mkhomedir_helper
mkinitramfs
mklost+found
mknod
mkntfs
mksquashfs
mkswap
mktemp
mmcli
modinfo
modprobe
mokutil
more
mount
mount.fuse
mount.fuse3
mount.lowntfs-3g
mount.ntfs
mount.ntfs-3g
mountpoint
mpathpersist
mt
mt-gnu
mtr
mtr-packet
multipath
multipathd
mv
namei
nano
nawk
nc
nc.openbsd
needrestart
neqn
netcat
netplan
networkctl
networkd-dispatcher
newgrp
newusers
nfnl_osf
nft
ngettext
nice
nisdomainname
nl
nm
nohup
nologin
nproc
nroff
nsenter
nslookup
nstat
nsupdate
ntfs-3g
ntfs-3g.probe
ntfscat
ntfsclone
ntfscluster
ntfscmp
ntfscp
ntfsdecrypt
ntfsfallocate
ntfsfix
ntfsinfo
ntfslabel
ntfsls
ntfsmove
ntfsrecover
ntfsresize
ntfssecaudit
ntfstruncate
ntfsundelete
ntfsusermap
ntfswipe
numfmt
objcopy
objdump
od
oem-getlogs
on_ac_power
openssl
openvt
os-prober
overlayroot-chroot
ownership
pager
pam-auth-update
pam_extrausers_chkpwd
pam_extrausers_update
pam_getenv
pam_timestamp_check
parted
partprobe
partx
passwd
paste
pastebinit
patch
pathchk
pbget
pbput
pbputs
pdata_tools
pdb3
pdb3.10
peekfd
perl
perl5.34-x86_64-linux-gnu
perl5.34.0
perlbug
perldoc
perlivp
perlthanks
pgrep
pic
pico
piconv
pidof
pidwait
pinentry
pinentry-curses
ping
ping4
ping6
pinky
pivot_root
pkaction
pkcheck
pkcon
pkexec
pkill
pkmon
pkttyagent
pl2pm
pldd
plymouth
plymouthd
pmap
pod2html
pod2man
pod2text
pod2usage
podchecker
pollinate
poweroff
pr
preconv
printenv
printf
prlimit
prove
prtstat
ps
psfaddtable
psfgettable
psfstriptable
psfxtable
pslog
pstree
pstree.x11
ptar
ptardiff
ptargrep
ptx
purge-old-kernels
pvchange
pvck
pvcreate
pvdisplay
pvmove
pvremove
pvresize
pvs
pvscan
pwck
pwconv
pwd
pwdx
pwunconv
py3clean
py3compile
py3versions
pybabel
pybabel-python3
pydoc3
pydoc3.10
pygettext3
pygettext3.10
pyhtmlizer3
pyserial-miniterm
pyserial-ports
python3
python3.10
pzstd
ranlib
rbash
rcp
rdma
readelf
readlink
readprofile
realpath
reboot
red
remove-shell
renice
rescan-scsi-bus.sh
reset
resize2fs
resizecons
resizepart
resolvectl
rev
rgrep
rlogin
rm
rmdir
rmmod
rmt
rmt-tar
rnano
routef
routel
rrsync
rsh
rsync
rsync-ssl
rsyslogd
rtacct
rtcwake
rtmon
rtstat
run-one
run-one-constantly
run-one-until-failure
run-one-until-success
run-parts
run-this-one
runcon
runlevel
runuser
rview
rvim
savelog
sbattach
sbkeysync
sbsiglist
sbsign
sbvarsign
sbverify
scandeps
scp
screen
screendump
script
scriptlive
scriptreplay
scsi_logging_level
scsi_mandat
scsi_readcap
scsi_ready
scsi_satl
scsi_start
scsi_stop
scsi_temperature
sdiff
sed
select-editor
sensible-browser
sensible-editor
sensible-pager
seq
service
setarch
setcap
setfont
setkeycodes
setleds
setlogcons
setmetamode
setpci
setpriv
setsid
setterm
setupcon
setvesablank
setvtrgb
sfdisk
sftp
sg
sg_bg_ctl
sg_compare_and_write
sg_copy_results
sg_dd
sg_decode_sense
sg_emc_trespass
sg_format
sg_get_config
sg_get_elem_status
sg_get_lba_status
sg_ident
sg_inq
sg_logs
sg_luns
sg_map
sg_map26
sg_modes
sg_opcodes
sg_persist
sg_prevent
sg_raw
sg_rbuf
sg_rdac
sg_read
sg_read_attr
sg_read_block_limits
sg_read_buffer
sg_read_long
sg_readcap
sg_reassign
sg_referrals
sg_rep_pip
sg_rep_zones
sg_requests
sg_reset
sg_reset_wp
sg_rmsn
sg_rtpg
sg_safte
sg_sanitize
sg_sat_identify
sg_sat_phy_event
sg_sat_read_gplog
sg_sat_set_features
sg_scan
sg_seek
sg_senddiag
sg_ses
sg_ses_microcode
sg_start
sg_stpg
sg_stream_ctl
sg_sync
sg_test_rwbuf
sg_timestamp
sg_turs
sg_unmap
sg_verify
sg_vpd
sg_wr_mode
sg_write_buffer
sg_write_long
sg_write_same
sg_write_verify
sg_write_x
sg_xcopy
sg_zone
sgdisk
sginfo
sgm_dd
sgp_dd
sh
sha1sum
sha224sum
sha256sum
sha384sum
sha512sum
shadowconfig
shasum
showconsolefont
showkey
shred
shuf
shutdown
size
skill
slabtop
sleep
slogin
snap
snapctl
snapfuse
snice
soelim
sort
sos
sos-collector
sosreport
splain
split
splitfont
sqfscat
sqfstar
ss
ssh
ssh-add
ssh-agent
ssh-argv0
ssh-copy-id
ssh-import-id
ssh-import-id-gh
ssh-import-id-lp
ssh-keygen
ssh-keyscan
sshd
ssm-cli
start-stop-daemon
stat
static-sh
stdbuf
strace
strace-log-merge
streamzip
strings
strip
stty
su
sudo
sudo_logsrvd
sudo_sendlog
sudoedit
sudoreplay
sulogin
sum
swaplabel
swapoff
swapon
switch_root
sync
sysctl
systemctl
systemd
systemd-analyze
systemd-ask-password
systemd-cat
systemd-cgls
systemd-cgtop
systemd-cryptenroll
systemd-delta
systemd-detect-virt
systemd-escape
systemd-hwdb
systemd-id128
systemd-inhibit
systemd-machine-id-setup
systemd-mount
systemd-notify
systemd-path
systemd-run
systemd-socket-activate
systemd-stdio-bridge
systemd-sysext
systemd-sysusers
systemd-tmpfiles
systemd-tty-ask-password-agent
systemd-umount
tabs
tac
tail
tar
tarcat
taskset
tbl
tc
tclsh
tclsh8.6
tcpdump
tee
telinit
telnet
telnet.netkit
tempfile
test
thin_check
thin_delta
thin_dump
thin_ls
thin_metadata_size
thin_repair
thin_restore
thin_rmap
thin_trim
tic
time
timedatectl
timeout
tipc
tkconch3
tload
tmux
tnftp
toe
top
touch
tput
tr
tracepath
trial3
troff
true
truncate
tset
tsort
tty
tune2fs
twist3
twistd3
tzconfig
tzselect
ua
ubuntu-advantage
ubuntu-bug
ubuntu-core-launcher
ubuntu-distro-info
ubuntu-security-status
ucf
ucfq
ucfr
uclampset
udevadm
udisksctl
ufw
ul
umount
umount.udisks2
uname
unattended-upgrade
unattended-upgrades
uncompress
unexpand
unicode_start
unicode_stop
uniq
unix_chkpwd
unix_update
unlink
unlzma
unmkinitramfs
unshare
unsquashfs
unxz
unzstd
update-alternatives
update-ca-certificates
update-grub
update-grub-gfxpayload
update-grub2
update-info-dir
update-initramfs
update-locale
update-microcode-initrd
update-mime-database
update-passwd
update-pciids
update-rc.d
update-secureboot-policy
update-shells
upgrade-from-grub-legacy
uptime
usb-devices
usb_modeswitch
usb_modeswitch_dispatcher
usbhid-dump
usbreset
useradd
userdel
usermod
users
utmpdump
uuidd
uuidgen
uuidparse
validlocale
vcs-run
vcstime
vdir
vdpa
veritysetup
vgcfgbackup
vgcfgrestore
vgchange
vgck
vgconvert
vgcreate
vgdisplay
vgexport
vgextend
vgimport
vgimportclone
vgmerge
vgmknodes
vgreduce
vgremove
vgrename
vgs
vgscan
vgsplit
vi
view
vigpg
vigr
vim
vim.basic
vim.tiny
vimdiff
vimtutor
vipw
visudo
vm-support
vmhgfs-fuse
vmstat
vmtoolsd
vmware-alias-import
vmware-checkvm
vmware-hgfsclient
vmware-namespace-cmd
vmware-rpctool
vmware-toolbox-cmd
vmware-vgauth-cmd
vmware-vmblock-fuse
vmware-xferlogs
vpddecode
w
wall
watch
watchgnupg
wc
wdctl
wget
whatis
whereis
which
which.debianutils
whiptail
who
whoami
wifi-status
wipefs
write
write.ul
x86_64
x86_64-linux-gnu-addr2line
x86_64-linux-gnu-ar
x86_64-linux-gnu-as
x86_64-linux-gnu-c++filt
x86_64-linux-gnu-dwp
x86_64-linux-gnu-elfedit
x86_64-linux-gnu-gold
x86_64-linux-gnu-gprof
x86_64-linux-gnu-ld
x86_64-linux-gnu-ld.bfd
x86_64-linux-gnu-ld.gold
x86_64-linux-gnu-nm
x86_64-linux-gnu-objcopy
x86_64-linux-gnu-objdump
x86_64-linux-gnu-ranlib
x86_64-linux-gnu-readelf
x86_64-linux-gnu-size
x86_64-linux-gnu-strings
x86_64-linux-gnu-strip
xargs
xauth
xdg-user-dir
xdg-user-dirs-update
xfs_admin
xfs_bmap
xfs_copy
xfs_db
xfs_estimate
xfs_freeze
xfs_fsr
xfs_growfs
xfs_info
xfs_io
xfs_logprint
xfs_mdrestore
xfs_metadump
xfs_mkfile
xfs_ncheck
xfs_quota
xfs_repair
xfs_rtcp
xfs_scrub
xfs_scrub_all
xfs_spaceman
xsubpp
xtables-legacy-multi
xtables-monitor
xtables-nft-multi
xxd
xz
xzcat
xzcmp
xzdiff
xzegrep
xzfgrep
xzgrep
xzless
xzmore
yes
ypdomainname
zcat
zcmp
zdiff
zdump
zegrep
zerofree
zfgrep
zforce
zgrep
zic
zipdetails
zless
zmore
znew
zramctl
zstd
zstdcat
zstdgrep
zstdless
zstdmt

telnetnetstatは自分の中ではペアなので、netstatが無いのがちょっと悲しい。

ビルトインコマンド一覧

$ compgen -b
.
:
[
alias
bg
bind
break
builtin
caller
cd
command
compgen
complete
compopt
continue
declare
dirs
disown
echo
enable
eval
exec
exit
export
false
fc
fg
getopts
hash
help
history
jobs
kill
let
local
logout
mapfile
popd
printf
pushd
pwd
read
readarray
readonly
return
set
shift
shopt
source
suspend
test
times
trap
true
type
typeset
ulimit
umask
unalias
unset
wait

Ubuntu 18.04の通常サポートは2023年4月まで

Ubuntu 22.04のEC2インスタンスを作って眺めてみました。

2つ前のLTSバージョンであるUbuntu 18.04の通常サポートは2023年4月までです。サポート終了まで1年とあまり時間はないので、今までUbuntu 18.04を使われていた方はこの気にUbuntu 22.04に変更するのはいかがでしょうか。

ちなみに、Ubuntu 22.04の通常サポートは2027年4月までです。

この記事が誰かの助けになれば幸いです。

以上、AWS事業本部 コンサルティング部の のんピ(@non____97)でした!