In an operating system, to complete a certain operation or task, the processes are required, Process is nothing but a running task or a system of users tasks. When you visit any website, lots of processes start running on the server, even though if you do not visit the website still there are lots of […]
See MoreTag: Basic Linux
How to check spamming on server
Spamming on server exim -bpc If this is change very fast then it seems spamming is on server also you can check using tail -f /var/log/exim_mainlog some times client can spam using scripting that time above using above you can’t find error log so you can use tail -f /var/log/message or ps -aux | grep […]
See MoreDelete php.ini file from all directories
Command for to Delete php.ini file from all directories find -name php.ini -exec rm -f {} \;
See More