-
Recent Posts
What I'm Doing...
- Mac like theme for #Linux #ubuntu http://bit.ly/La8Ss 1 hr ago
- Webmin Browser based #Linux administration http://bit.ly/17D1x 3 days ago
- In #Linux to print your Home directory "echo ~" 4 days ago
- #Google search suggestion URL http://bit.ly/9zd9HH .Passing search query to this URL and its returns the search #suggestion in #responseText 5 days ago
- #Ubuntu windows installer http://bit.ly/oumg no modify partitions , or to use a different bootloader, and does not install special drivers. 1 week ago
- More updates...
Posting tweet...
Recent Comments
- elanchezhiyank on Offline dictionary for ubuntu 10.04
- umakanth on About
- admin on Offline dictionary for ubuntu 10.04
- vivek on Offline dictionary for ubuntu 10.04
- techmaddy on Read properties file using Batch
Tags
Tag Archives: static ip
CentOS Networking FAQ
How to set static ip..? [root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 ONBOOT=yes BOOTPROTO=static IPADDR=192.168.1.13 NETMASK=255.255.255.0 TYPE=Ethernet [root@localhost ~]# Edit your/etc/sysconfig/network-scripts/ifcfg-eth0 file like this. Then restart your network. How to restart the network..? The command for stop the network is “/etc/init.d/network stop” … Continue reading
How to set the static ip address in ubuntu..?
edit your /etc/network/interfaces file to auto eth0 iface eth0 inet static address 192.168.0.50 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.1 after that rebooting your network by excecuting the below command… [root@localhost ~]# /etc/init.d/networking restart