コマンド備忘

パッケージ更新、修復

debian、ubuntuなどaptコマンド

$ sudo apt update
$ sudo apt upgrade
$ sudo apt upgrade -y
$ sudo apt update && sudo apt upgrade -y

$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get upgrade -y
$ sudo apt-get update && sudo apt-get upgrade -y

fedoraなどdnfコマンド

$ sudo dnf update
$ sudo dnf update -y
$ sudo dnf update --refresh
$ sudo install dnf-plugin-system-upgrade

古いカーネルの削除

古いパッケージの検索

$ dpkg --get-selections |grep linux-

削除実行

$ sudo apt-get remove linux-image-4.4.0-20-generic
$ sudo apt-get purge linux-image-4.4.0-20-generic

複数削除
$ sudo apt-get --dry-run autoremove --purge linux-image-extra-4.4.0-{21,22,24,28,31,34,36,38,42,45}-generic

$ sudo apt-get autoremove

Grubメニューを更新

$ sudo update-grub


サービス設定

ubuntu
$ systemctl start ssh.service
$ sysctl enable ssh.service
Proxy設定
/etc/apt/apt.conf
Acquire::http::Proxy "http://ip address:port/";
AutoProxy "http://proxy.example.com/wpad.dat"

その他

Ubuntu コマンドシェル(GUIから全画面ターミナルに)
Ctrl+Alt+F1

usermod -G wheel fedora

echo "sshd: 172.25.0.0." >> /etc/hosts.allow

コメント

このブログの人気の投稿

systemd-resolveの設定(Ubuntuなどの動的DNS設定)

GRUB起動メニューのタイムアウト時間、起動するOSの変更

Salesforce Trailheadチャレンジメモ(Apex の基礎とデータベース)