2022-08-01から1ヶ月間の記事一覧

Ubuntu 22.04に最新のdockerをインストールする

$ sudo apt install apt-transport-https ca-certificates curl gnupg lsb-release -y $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg $ echo "deb [arch=$(dpkg --pr…

Ubuntu 22.04でapt install時のdaemon/kernel 再起動確認ダイアログを出さない方法

needrestartというツールの設定になるので、confファイルを作って設定を書いておいてあげると勝手にrestartしてくれる。 $ echo "\$nrconf{restart} = 'a';" | sudo tee /etc/needrestart/conf.d/50local.conf $ echo "\$nrconf{kernelhints} = '0';" | sudo…