![]() |
Error while trying to install something on the terminal - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Installing Software (https://www.linuxliteos.com/forums/forumdisplay.php?fid=18) +--- Thread: Error while trying to install something on the terminal (/showthread.php?tid=9102) |
Error while trying to install something on the terminal - gaas - 04-06-2024 Every time i try to install something i get this error : E: Dipendenze non soddisfatte. Provare "apt --fix-broken install" senza pacchetti (o specificare una soluzione) how do i fix it? Re: Error while trying to install something on the terminal - stevef - 04-07-2024 The error message is indicating that the package manager (apt) cannot work because it has detected a conflict in package dependencies. For example, one package may require a certain version of a library package while another package requires a different version of the same library. Running the suggested command with the --dry-run option should show what apt will try to do the attempt the fix. Code: sudo apt --fix-broken install --dry-run If it is more complex (o specificare una soluzione) it will be necessary to try to fully understand how the conflict has been caused. Once that is understood, it may need low-level commands to try to resolve the conflict. This can get complicated. Do you have a System Restore point (aka timeshift) made before the conflict ? Re: Error while trying to install something on the terminal - gaas - 04-07-2024 Lettura elenco dei pacchetti... Fatto Generazione albero delle dipendenze... Fatto Lettura informazioni sullo stato... Fatto Correzione delle dipendenze... Fatto I seguenti pacchetti aggiuntivi saranno inoltre installati: linux-tools-common 1) I seguenti pacchetti NUOVI saranno installati: linux-tools-common 0 aggiornati, 1 installati, 0 da rimuovere e 255 non aggiornati. 2 non completamente installati o rimossi. Inst linux-tools-common (5.15.0-101.111 Ubuntu:22.04/jammy-updates, Ubuntu:22.04/jammy-security [all]) Conf linux-tools-common (5.15.0-101.111 Ubuntu:22.04/jammy-updates, Ubuntu:22.04/jammy-security [all]) Conf linux-tools-5.15.0-82-generic (5.15.0-82.91 Ubuntu:22.04/jammy-updates, Ubuntu:22.04/jammy-security [amd64]) Conf linux-tools-5.15.0-82 (5.15.0-82.91 Ubuntu:22.04/jammy-updates, Ubuntu:22.04/jammy-security [amd64]) 2) no i didn't made a restore point. Re: Error while trying to install something on the terminal - stevef - 04-07-2024 What package are you trying to install from the command line ? Re: Error while trying to install something on the terminal - gaas - 04-07-2024 I'm trying to install obs studio, but this error happens with every package that i try to install. Re: Error while trying to install something on the terminal - trinidad - 04-07-2024 https://itsfoss.com/install-obs-ubuntu/ It's a Debian package. TC Re: Error while trying to install something on the terminal - gaas - 04-07-2024 Problem happens also with debian packages Re: Error while trying to install something on the terminal - stevef - 04-07-2024 I've used OBS Studio for a long time on Linux Lite 6.x. I installed it from Lite Software though. Can you give me the syntax you are using so I can try installing it on a test set up in the same way as you. Re: Error while trying to install something on the terminal - gaas - 04-07-2024 I used this command sudo apt install obs-studio (i get the error with every program that i try to install) and got this error E: Dipendenze non soddisfatte. Provare "apt --fix-broken install" senza pacchetti (o specificare una soluzione). Re: Error while trying to install something on the terminal - stevef - 04-07-2024 OBS-studio installs fine for me on a test system using the command line. linux-tools-common isn't a dependency for obs-studio When did your problem start ? Can you recall what triggered it ? Have you installed or tried to install any performance tools ? If this is a fairly new set up you may want to consider starting again. |