Domain Name Yahoo

Easy Help Troubleshoot Your Linux Box



  

Welcome Message on SSH

Trick to create the welcome message after user logged into ssh of your server.
Edit file motd on /etc

# vi /etc/motd

This computer system is for authorized users only. All activity is logged and regulary checked by systems personal. Individuals using this system without authority or in excess of their authority are subject to having all their services revoked. Any illegal services run by user or attempts to take down this server or its services will be reported to local law enforcement, and said user will be punished to the full extent of the law. Anyone using this system consents to these terms.

Save it, log out then login again.
The message will appear after you logged in.

February 25th, 2009 Posted by admin | General, ssh | no comments

Santrex.net Internet Solutions

Santrex, Your no.1 Internet solutions!

At Santrex, we provide you with rock solid stability, top notch DDOS protection and cutting edge performance! A shell provider, ircd provider, webhosting provider, all in one provider you can trust, Below is a selection of our wide range of services, from individual personal solutions to enterprise organization sized packages.

Our network consists of several servers in Europe, also in Canada, and China known as offshore servers, some USA servers each housing different sets of services, to ensure the utmost in security and stability. For example, our shell accounts are completely separated from our web hosting. Customers have the choice of housing their services on our offshore or onshore.
Santrex is the most complete package for server services :

  • Hosting Services ( Web hosting, Dedicated servers, VPS hosting, Domain services ,SSL certificates, Reseller plans )
  • Audio / Video hosting ( Shoutcast hosting, NSV hosting )
  • File sharing ( Torrent hosting, XDCC hosting )
  • IRC unix Services ( IRCD accounts, Shell accounts, Domains and vhosts, Proxy hosting)

See coupon code at section promotion code

February 25th, 2009 Posted by admin | Hosting Provider | no comments

Promotion Code

Thanks to retailmenot.com for the list of coupon code.

I just registering for Santrex.net on webhosting package and find coupon code on retailmenot.com  therefor I am posting it here, hopefully it help people.

10% discount

Code:    digitalpoint10off
Code:     10FREE

To complete your registration on santrex.net click here

I believe, retailmenot.com is providing many coupon code you must try.

February 25th, 2009 Posted by admin | Hosting Provider | no comments

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 “installonlyn” plugin
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
Resolving Dependencies
–> Populating transaction set with selected packages. Please wait.
—> Downloading header for kannel to pack into transaction set.
kannel-1.4.2-1.el5.rf.i38 100% |=========================| 9.2 kB    00:00
—> Package kannel.i386 0:1.4.2-1.el5.rf set to be updated
–> Running transaction check

Dependencies Resolved

=========================================================================
Package                 Arch       Version          Repository        Size
==========================================================================
Installing:
kannel                  i386       1.4.2-1.el5.rf   rpmforge          1.5 M

Transaction Summary
=============================================================================
Install      1 Package(s)
Update       0 Package(s)
Remove       0 Package(s)

Total download size: 1.5 M
Is this ok [y/N]: y
Downloading Packages:
(1/1): kannel-1.4.2-1.el5 100% |=========================| 1.5 MB    01:08
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing: kannel                       ######################### [1/1]

Installed: kannel.i386 0:1.4.2-1.el5.rf
Complete!

See the rest of the setup on Building SMS Gateway using UBUNTU

Thanks, i will post another hack to customize your sms-service easily.

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 proftpd service .

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