Posts Tagged With: configure

Static Route

Tagged with: , , , , , ,

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 »

Configure Gateway

Tagged with: , , , , , , ,

Configure the default gateway


route add -net 0/0 gw IP_Gateway
No Comments »

Configure IP Address

Tagged with: , , , , ,

Configure IP Address using the ifconfig command


ifconfig eth0 192.168.1.1 netmask 255.255.255.0
No Comments »

Compiling a 2.6 Linux kernel

Tagged with: , , , , ,

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 »