Tuesday, December 2nd, 2008 11:33 PM
Configure static route to reach network ’192.168.0.0/16′
route add -net 192.168.0.0 netmask 255.255.0.0 gw 192.168.1.1
No Comments »
Thursday, November 27th, 2008 11:24 PM
Configure the default gateway
route add -net 0/0 gw IP_Gateway
No Comments »
Sunday, September 14th, 2008 11:42 PM
Configure IP Address using the ifconfig command
ifconfig eth0 192.168.1.1 netmask 255.255.255.0
No Comments »
Tuesday, April 10th, 2007 06:13 PM
Get the latest Kernel from kernel.org
Get a default .config file
cp /boot/config-`uname -r` ./.config
OR
make defconfig
Then configure the kernel - the hardest part
make xconfig
Compile/Install it
make
make modules_install
make install
[tags]kernel,linux,command,compile,configure,xconfig[/tags]
No Comments »