Sounds like a „easy“ issue, but I found the following solution very handy:
Use
http://linux.die.net/man/1/ripmime
Sounds like a „easy“ issue, but I found the following solution very handy:
Use
http://linux.die.net/man/1/ripmime
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
While doing a „yum update“ this message can be displayed:
Disk Requirements: At least 10MB more space needed on the /boot
That means the /boot is running out of space.
To free up there are at least two options:
Check out your current running Kernel using
uname -a
Check the installed kernel versions with
yum list installed | grep kernel
And remove not used kernel versions.
yum install yum-utils
package-cleanup --oldkernels --count=2
To make it persistent to only hold two versions change the conf file of yum:
vi /etc/yum.conf installonly_limit=5