Tag: configure

Docker Basics

Source Images Images are the templates used to create Docker Containers. Container is a running instance of an image. Eg….

Install and Configure Docker

Install Docker on Ubuntu and Configure it to use a non-default directory.

Static Route

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

Configure Gateway

Configure the default gateway route add -net 0/0 gw IP_Gateway

Configure IP Address

Configure IP Address using the ifconfig command ifconfig eth0 192.168.1.1 netmask 255.255.255.0

Compiling a 2.6 Linux kernel

Get the latest Kernel from kernel.org Get a default .config file cp /boot/config-`uname -r` ./.config OR make defconfig Then configure…