Solve at the end of this post:Useful tip from: Perhaps something in this recent Q&A will be helpful: input delay on Terminal Ubuntu 22.04.4 – **steeldriver**
The problem is that my terminals not work great anymore.The typing is very bad in terminal and each command response not if I press a key.Sometimes the command runs but it ends not, but when I hit enter the prompt comes back, if I think the command should be done.
So, what I have done to solve my problem, but still not figured out what the problem is.
# System up to date and some software repaired and missing packages reinstalled.sudo apt-get updatesudo apt-get -y upgradesudo apt-get install --reinstall gnome-software gsettings-desktop-schemas gconf2sudo apt-get install -f
I check the journal and found some errors and cleared it with the commands above.
sudo journalctl -x
The issue with the terminals without any config files still present.
env -i bash --noprofile --norcexport TERM=xtermexport TERM=linuxexport TERM=xterm-256color# The exports needed if they do not there htop or ranger would not run.
# Debugging is also not shows up errors.bash -x
# Result is alright - no errors foundsudo smartctl -t short /dev/sdasudo smartctl -l selftest /dev/sda
The work with these apps is absolute not good anymore.The refresh of the programs output is only possible with a key hit.
tmuxhtoprangerapt-getetc.
That is my snap list if it is important for my problem.
snap list --allName Versionbare 1.0chromium 123.0.6312.86chromium-ffmpeg 0.1core 16-2.61.2core18 20231027core20 20240111core22 20240111cups 2.4.7-3docker 24.0.5firefox 124.0.1-1gnome-3-26-1604 3.26.0.20221130gnome-3-28-1804 3.28.0-19-g98f9e67.98f9e67gnome-3-34-1804 0+git.3556cb3gnome-3-38-2004 0+git.efb213agnome-42-2204 0+git.510a601gnome-system-monitor 45.0gtk-common-themes 0.1-81-g442e511hunspell-dictionaries-1-7-2004 1.7-20.04+pkg-6fd6mesa-core20 21.2.6snap-store 41.3-77-g7dc86c8snapd-desktop-integration 0.9
I downloaded the latest Ubuntu 22.04.4 Desktop iso and made a Live-USB.In the live system is not this issue.
So. What kind of error I missing? Or what I forget to check?
# The issue is the mutter packageii gir1.2-mutter-10:amd64 42.9-0ubuntu7 amd64**ii libmutter-10-0:amd64 42.9-0ubuntu7 amd64**ii mutter 42.9-0ubuntu7 amd64**ii mutter-common 42.9-0ubuntu7 all**# Terminal works normal as aspectedii gir1.2-mutter-10:amd64 42.9-0ubuntu7 amd64**hi libmutter-10-0:amd64 42.0-3ubuntu2 amd64**ii mutter 42.9-0ubuntu7 amd64**ii mutter-common 42.0-3ubuntu2 all**
Source of the Script is: input delay on Terminal Ubuntu 22.04.4
# I modified the script a little bit, # because there was some changed need, # otherwise Ubuntu 22.04.4 would cry like a baby because wrong version.# # Important after running the script - A restart of the OS is needed!# # Skript begins - I run it in a bash-Shellarch="amd64"# Ubuntu 23.10#version="45.0-3ubuntu3"#package="13-0"# Ubuntu 23.04#version="44.3-0ubuntu1.1" # only amd64#version="44.0-2ubuntu4" # other archs#package="12-0"# Ubuntu 22.04version="42.0-3ubuntu2"package="10-0"if [[ $1 -eq 1 ]]; then # 1 - activate echo libmutter-${package} install | sudo dpkg --set-selections echo libmutter-common install | sudo dpkg --set-selections if [ "${package}" != "10-0" ]; then echo libmutter-common-bin install | sudo dpkg --set-selections fielse # unequal 1 - disable the new mutter version wget http://se.archive.ubuntu.com/ubuntu/pool/main/m/mutter/libmutter-${package}_${version}_$arch.deb wget http://se.archive.ubuntu.com/ubuntu/pool/main/m/mutter/mutter-common_${version}_all.deb if [ "${package}" != "10-0" ]; then wget http://se.archive.ubuntu.com/ubuntu/pool/main/m/mutter/mutter-common-bin_${version}_$arch.deb fi sudo dpkg -i *mutter*.deb echo libmutter-${package} hold | sudo dpkg --set-selections echo libmutter-common hold | sudo dpkg --set-selections if [ "${package}" != "10-0" ]; then echo libmutter-common-bin hold | sudo dpkg --set-selections fifi# Skript ends [1]: https://Source%20of%20the%20Script%20is:%20https://askubuntu.com/questions/1509058/input-delay-on-terminal-ubuntu-22-04-4