Ubuntu

Clean unuse kernel

1. Intro If you have an old kernel that you are not using, you should delete it. Because it fill up the /boot capacity.   2. How to do? 2.1. check kernel # current kernel uname -a # list kernel sudo dpkg –list | grep linux-image 2.2. Delete old kernel sudo apt purge linux-image-[version]   […]

Continue Reading
Mail

qmail retry time

1. qmail retry time qmail-send delivery retry tims (remote)   2. Result Retry after 400 seconds retry after previous delay time + 800 seconds, … 1-hour : 3 times 4-hour : 6 times 12-hour : 10 times 24-hour : 14 times   3. Proof cat /var/log/maillog Q. How to identify if it is the same […]

Continue Reading
Linux 공통

Fail crond

1. Intro If cron does not run with the following error   2. Cause Account password expired.   3. Solution Modify Account’s password max days 3.1. Check default Policy grep “PASS_MAX_DAYS” /etc/login.defs   3.2. Change account Policy chage -E -1 -M 99999 [username] grep “[username]” /etc/shadow  

Continue Reading
Back To Top