How to change the permission of files and folders? Use chmod along with -exec to change the permissions. # find ./ -type f -exec chmod 777 {} \; this command changes all files permission to 777 in PWD. Use “-type d” for directory! How to change ownership? That’s simple. Use the chown command within the […]
See MoreCategory: Hostripples Featured
Su: Cannot set user id: Resource temporarily unavailable
Error details: # su – Password: su: cannot set user id: Resource temporarily unavailable Solution: Edit (add) or change the following values in /etc/security/limits.conf # vi /etc/security/limits.conf ————- * soft nproc 2047 * hard nproc 16384 * soft nofile 1024 * hard nofile 65536 ————- It should be okay now!
See MorePerl error while running weblogs on the server
Error : error: List::Util object version 1.14 does not match bootstrap parameter 1.18 at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/XSLoader.pm line 92 Solution: If you are getting perl error while running /scripts/runweblogs do as follows : 1) Check the perl version on the server using following command Perl -v 2) If you are getting following error while running runweblogs script […]
See More
You must be logged in to post a comment.