February 2013
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728  

Categories

February 2013
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728  

Solaris Add Defualt Route

netstat -nr

route delete default 192.168.1.251

ou can add default router temporarily by following command

route add default 192.168.10.249

You can add default router permanently by following commands

route -p add default 192.168.1.249

Or

echo 192.168.1.249 > /etc/defaultrouter

It will create /etc/defaultrouter file if not already available. Next time you restart you system 192.168.1.249 will […]

How to Install and Configure VNC Server

First you need to check for already installed VNC Server. You can check this by executing following command.

rpm -q vnc-server

If you found message like “package vnc-server is not installe” then you need to install it first by executing following command from root user.

yum install vnc-server

Once VNC Server installed you need to […]