Domain Name Yahoo

Easy Help Troubleshoot Your Linux Box



  

Solve your problem here.

Yes, many Linux administrators are having problems. Browse your problem here, ask what to do and how to solve your problems. We are here for you.. DomainNameYahoo.info


Building SMS Gateway using CENTOS

Another article, I posted how to setup sms-gateway on UBUNTU box.
Now I try to setup sms gateway on Centos Box.
# uname -a
Linux hardcorepolice 2.6.18-92.1.6.el5.centos.plusxen #1 SMP Thu Jun 26 13:43:14 EDT 2008 i686 i686 i386 GNU/Linux
Fedora repository
Fedora repository is available at http://freshrpms.net/packages/. (Contributed by Matthias Saou)
But I just simply run the command
# yum install kannel
Loading […]

February 24th, 2009 Posted by admin | CentOS, SMS gateway | one comment

Chmod authorization Proftpd

Sometimes we need to configures manually all the chmod of each files and directories.
You can configure each  ftp accounts from enable / disable chmod using  directives on proftpd.conf
<Limit SITE_CHMOD>
AllowUser ftpadmin
DenyAll
</Limit>
Above directives  mean that only ftpadmin user can use chmod, anyone else denied.
To be able all ftp user use chmod :
<Limit SITE_CHMOD>
AllowAll
</Limit>
Save proftpd.conf and reload the […]

February 24th, 2009 Posted by admin | General, ftp | no comments