Hye to all users?
I would like to share something about how to make a blog for yourself and how do u get money from your own blog and how is the response it is. Doing something worth are better than doing nothing by using a Internet. So lets make one to yours.
Those who wants to learned it, u should visit this blog :
Comments (0) | 28-Aug-10 4:56:32 AM
Get your business on the internet with the power of SharkSURF and enjoy a comprehensive range of power products to boost your website. SharkSURF also comes with a control panel to help you manage these great products. It is a perfect solution for beginners and professionals. It is so easy to use, all you have to do to start a website is edit text; insert images, and drag-and-drop. Try it and you will see how easy it is to build your website in only a few minutes. Best of all, you can get started almost immediately.
Comments (0) | 29-Jul-10 4:40:56 AM

Let's assume our network interface is eth0

Now we want to create the virtual interface eth0:0 with the IP address 192.168.0.101. All we have to do is to create the file /etc/sysconfig/network-scripts/ifcfg-eth0:0 which looks like this (we can leave out the HWADDR line as it is the same physical network card):

vi /etc/sysconfig/network-scripts/ifcfg-eth0:0

DEVICE=eth0:0
BOOTPROTO=static
BROADCAST=192.168.0.255
IPADDR=192.168.0.101
NETMASK=255.255.255.0
NETWORK=192.168.0.0
ONBOOT=yes
TYPE=Ethernet

Afterwards we have to restart the network:

/etc/init.d/network restart

Comments (0) | 13-Feb-10 5:27:56 AM
su -c 'yum install ipcheck'
su -c 'gedit /root/dyndns_update.sh'
  • Insert the following lines into the new file
USERNAME=myusername
PASSWORD=mypassword
HOSTNAME=myhostname.dyndns.org
cd ~/
if [ -f /root/ipcheck.dat ]; then
 ipcheck -r checkip.dyndns.org:8245 $USERNAME $PASSWORD $HOSTNAME
else
 ipcheck --makedat -r checkip.dyndns.org:8245 $USERNAME $PASSWORD $HOSTNAME
fi
  • Save the edited file
su -c 'chmod 700 ~/dyndns_update.sh'
su -c 'sh ~//dyndns_update.sh'
su -c 'export EDITOR=gedit && crontab -e'
  • Append the following line at the end of file
00 * * * * sh /home/YourUsername/dyndns_update.sh
Comments (0) | 13-Feb-10 3:09:33 AM
1. login as root 
2. Get your current IP address with this command: 
    By typing : ifconfig

The OUTPUT will look someting like this: 
[root@host ~]# ifconfig 
eth0 Link encap:Ethernet HWaddr 00:D0:BC:08:09:BC 
inet addr:70.238.17.69 Bcast:255.255.255.255 Mask:255.255.255.248 
inet6 addr: fe80::2d0:b7ff:fe08:9bb/64 Scope:Link 
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 
RX packets:7174 errors:0 dropped:0 overruns:0 frame:0 
TX packets:2305 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:1000 
RX bytes:5339910 (5.0 MiB) TX bytes:170109 (166.1 KiB) 

lo Link encap:Local Loopback 
inet addr:127.0.0.1 Mask:255.0.0.0 
inet6 addr: ::1/128 Scope:Host 
UP LOOPBACK RUNNING MTU:16436 Metric:1 
RX packets:34 errors:0 dropped:0 overruns:0 frame:0 
TX packets:34 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:0 
RX bytes:4275 (4.1 KiB) TX bytes:4275 (4.1 KiB)


COMMAND to get IP for show configuration: 
cat /etc/sysconfig/network-scripts/ifcfg-eth0

THe OUTPUT will look like this (i have it set to DHCP) 
DEVICE=eth0 
BOOTPROTO=dhcp 
HWADDR=00:D0:B7:08:09:BB 
ONBOOT=yes 


OUTPUT for static IP (example) 

# File: ifcfg-eth0 

DEVICE=eth0 
IPADDR=192.168.1.100 
NETMASK=255.255.255.0 
BOOTPROTO=static 
ONBOOT=yes 

# The following settings are optional 

BROADCAST=192.168.1.255 
NETWORK=192.168.1.0


3. Ok, on step 3 we are going to change from DHCP to static ip. so send this command to edit the /etc/sysconfig/network-scripts/ifcfg-eth0 file: (im using nano, but you can use vi if you want) 
nano /etc/sysconfig/network-scripts/ifcfg-eth0

Change from this: 
# Intel Corporation 82557/8/9 [Ethernet Pro 100] 
DEVICE=eth0 
BOOTPROTO=dhcp 
HWADDR=00:D0:B7:08:09:BB 
ONBOOT=yes

TO this: 
# File: ifcfg-eth0 

DEVICE=eth0 
IPADDR=192.168.1.100 
NETMASK=255.255.255.248 
BOOTPROTO=static 
ONBOOT=yes


4. now save your changes 
Comments (0) | 13-Feb-10 2:31:56 AM