Mass ownership and permission change – Linux – Find command

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 More

Migrate and restore account from cpanel server

Migrate and restore account from cPanel server to another cpanel server Login to source server : /scripts/whoowns domain.com It shows the username for that domain name. You can create  full backup  of account which contain all data, database and emails by using following command. #/scripts/pkgacct username Change the permission #chmod 755 /home/cpmove-username.tar.gz Then Move the […]

See More

Install php soap on the linux plesk server

How to install php soap on the linux plesk server(centos 5 -i386) ? Ans : You can easily installed php soap by using the rpm rpm -ivh http://www6.atomicorp.com/channels/atomic/centos/5/i386/RPMS/php-soap-5.2.13-1.el5.art.i386.rpm Then check it by using the command php -m | grep soap soap Done

See More