Ever stuck with your keepass not responding on Linux / Ubuntu systems?
Find the right process id with:
ps aux |head -n 1; ps aux |grep -v grep |grep -i pass
kill then the process id
Ever stuck with your keepass not responding on Linux / Ubuntu systems?
Find the right process id with:
ps aux |head -n 1; ps aux |grep -v grep |grep -i pass
kill then the process id
In order to configure proxy settings etc on ubuntu the shipped GUI is a bit messy but there is a tool that helps a lot:
dconf
It can also be used for no_proxy, http_proxy, https_proxy etc.
Remark: Make sure you re-login after changing settings.
Bei den neueren Versionen von Ubuntu kann es probleme mit den Pfeiltasten in vi kommen. Die Pfeiltasten werden dabei nicht zur Navigation im insert Mode genutzt, sondern liefern deren Steuerzeichen. Dadurch wird die Navigation deutlich erschwert.
Abhilfe schafft die folgende Änderung in der config file: /etc/vim/vimrc.tiny
Vorher:
set compatible
Nachher
set nocompatible
Problem gelöst