Posts

Showing posts with the label Basics

chm viewer unable to show contents

In Windows Applications, we use chm file for help contents or for documentations. But we sometimes we are not able to see any contents in chm viewer. While it works fine on another systems. How to solve that: 1. Open command prompt and run as administrator. 2. go to location where chm file is located. 3.  input the file name (xxx.chm) and click on enter. It should work fine. Another way to do. 1. Right click on chm file. 2. Go to properties. 3. Select the Unblock option.

Change hostname in Solaris11

Solaris 11: Changing hostname Please perform following steps to change the host name: To change the hostname in Solaris 11, I followed this steps: 1 - To check the current environment properties: root@solaris:~# svccfg -s system/identity:node listprop config config                 application         config/enable_mapping boolean     true config/nodename       astring     solaris config/loopback       astring     solaris 2 - Set the new hostname root@solaris:~# svccfg -s system/identity:node setprop config/nodename="my-host-name" root@solaris:~# svccfg -s system/identity:node setprop config/loopback="my-host-name" 3- Refresh the properties: root@solaris:~# svccfg -s system/identity:node refresh 4 - Restart the service: root@solaris:~# svcadm restart sy...