この質問にはすでに回答があります :apt-get installandremoveが同じスペースをクリアしない理由
(2つの回答)
3年前に閉鎖されました。
Ubuntu
(2つの回答)
3年前に閉鎖されました。
OBS Studioをインストールしました:
sudo apt-get install obs-studio
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
gir1.2-keybinder-3.0 libkeybinder-3.0-0
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
libfdk-aac0 libluajit-5.1-2 libluajit-5.1-common libxcb-xinerama0
The following NEW packages will be installed:
libfdk-aac0 libluajit-5.1-2 libluajit-5.1-common libxcb-xinerama0 obs-studio
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 3,678 kB of archives.
After this operation, 13.0 MB of additional disk space will be used.
Do you want to continue? [Y/n]
削除することにしました:
sudo apt-get --purge remove obs-studio Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
gir1.2-keybinder-3.0 libfdk-aac0 libkeybinder-3.0-0 libluajit-5.1-2
libluajit-5.1-common libxcb-xinerama0
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
obs-studio*
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
After this operation, 11.6 MB disk space will be freed.
Do you want to continue? [Y/n]
削除するときは、 13.0 MB を期待しています インストールに必要なディスク容量が必要なため、解放する必要がありますが、 11.6 MB 代わりにディスクスペースが解放されました:なぜですか?
承認された回答:
違いはここにあります:
The following additional packages will be installed:
libfdk-aac0 libluajit-5.1-2 libluajit-5.1-common libxcb-xinerama0
obs-studio
をアンインストールした後 、これらのパッケージは、apt-get autoremove
を使用して削除できる必要があります 他のパッケージがそれらに依存していない場合。
次のコマンドを実行することもできます:
sudo apt-get remove --purge obs-studio libfdk-aac0 libluajit-5.1-2 libluajit-5.1-common libxcb-xinerama0
元のサイズを直接取得する必要があります。