Wednesday, November 23rd, 2011
If you want to suspend/unsuspend an account via SSH instead of doing it through WHM web interface. following commands may be helpful for you.
Suspend an Account from SSH
Posted in Centos, cPanel, How-to, Linux | No Comments »
Tuesday, November 15th, 2011
If you're trying to delete files from a directory that have too many files and over sized then simply rm command will not work and you will get error /bin/rm: Argument list too long
Posted in Centos, Errors, Files, Linux | No Comments »
Tuesday, October 25th, 2011
In situations while using SSH you may want to unzip/uncompress/extract multiple compressed files, you may follow the followings;
To unzip multiple zipped .zip files;
for file in *.zip; do unzip "${file}"; done
Posted in Centos, Files, Linux | No Comments »