Installed this DisplayLink driver via APT, and after the reboot, Ubuntu 22.04.4 LTS goes into tty1.
What I tried:
- sudo apt install --reinstall ubuntu-desktop
- sudo apt -f install
- sudo apt update --fix-missing
Full error message and list of packages:
Error Message:
The following packages have unmet dependencies
How to get the GUI back?
sudo apt update
andsudo apt dist-upgrade
before installing? If not, then your system will think that older versions are required when newer versions are now required that the old versions are no longer available. But the system is trying to install the newest available version and your system still hasn't updated the package list (first command,sudo apt update
) so it still thinks the older version is the one it needs and so it's confused. – mchid Mar 09 '24 at 01:17sudo apt update
and then proceed. It's also recommended you runsudo apt dist-upgrade
as well to actually apply any available updates. After the update command, you can either try your install command again, or if that doesn't work, thensudo apt -f install
and if that doesn't fix it, then install the dependencies one by one:sudo apt install pipewire
etc., and then try again. – mchid Mar 09 '24 at 01:22