(2 réponses)
Fermé il y a 3 ans.
J'ai installé 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]
J'ai décidé de le supprimer :
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]
Lors de sa suppression, j'attends 13,0 Mo d'espace disque à libérer car c'est ce qu'exigeait l'installation, mais j'ai obtenu 11,6 Mo espace disque libéré à la place :pourquoi ?
Réponse acceptée :
La différence peut être trouvée ici :
The following additional packages will be installed:
libfdk-aac0 libluajit-5.1-2 libluajit-5.1-common libxcb-xinerama0
Après avoir désinstallé obs-studio
, ces packages doivent pouvoir être supprimés à l'aide de apt-get autoremove
si aucun autre paquet n'en dépend.
Vous pouvez également exécuter :
sudo apt-get remove --purge obs-studio libfdk-aac0 libluajit-5.1-2 libluajit-5.1-common libxcb-xinerama0
et vous devriez obtenir directement la taille d'origine.