3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Debian系のアンインストールコマンドについて(設定ファイルも含め完璧に消したい場合)

Last updated at Posted at 2021-09-05

個人用のメモ兼
自分みたいに知らない人の為に

TL;DR(結論)

2021/09/29変更
 設定ファイルを含め完璧に消したい場合、

  apt remove --purge -y
 apt autoremove --purge -y
 apt autopurge -y

通常紹介されているアンインストール時のコマンド

#apt remove <アンインストールしたい物> -y
#apt autoremove -y

これはあくまで、そのソフトウェアの実行ファイルを削除しているに過ぎず、ゴミ(設定ファイル)が残る。

設定ファイルも一緒にアンインストールするコマンド

#apt remove --purge <アンインストールしたい物> -y
#apt autoremove --purge -y

2021/09/29追記

apt autopurgeや、apt autoremove --purgeでは削除できないものがあるようです。
この場合aptではなく、aptitudeを使用して設定ファイルの削除を行います。

#apt install aptitude -y
#aptitude purge ~c -y

また、それでも消えない(パッケージ管理外?)ものはUbuntu Cleanerをおすすめさせていただきます。
Chromeのキャッシュ等も自動で消してくれるので便利です。

以上。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?