One night @ call center

I have heard a lot about this book so my brother ashish brought book for us. First, it is a fiction work and not based upon true story.

The book is all about problems that most of us face in day today life (no matter if you work in call center or not). The book is all about young people who work in call center. Most of them face some sort of problem (girlfriend/boyfriend, money, no job guaranty, clients from US blaming/bashing (overrated) all Indian workers blah blah). In order to get rid of problem God calls them and guides them. Nothing to new, here if you have IT industry background or you worked in a call center. However, book has one good point how to get rid of your day today life problem, if you are stuck in such situation in life then read the book ( however if you are really stuck in life then you should read Bhagwat gita to solve all mysteries of life, IMPO)

In short, book is little over heaped and only useful if

  • You wanna kill your Sunday afternoon
  • If you never worked in BPO/IT industry they you will get some idea about work culture of small BPOs (please note that big BPOs in India follows very good work culture)
  • You wanna find out answer to some your problem in life in funny reading

Book details
Publisher: Rupa
Category: Fiction
Author: Chetan Bhagat
Price Rs.95/-
My rating: 2 ½ out of 5

How do I start hpux network service?

Use following command to start HP-UX network service:

/etc/init.d/net start
OR
/sbin/init.d/net start
Please note that your network configuration file is /etc/rc.config.d/netconf . Here is my sample /etc/rc.config.d/netconf file:

# cat /etc/rc.config.d/netconf
Output:
HOSTNAME=deephpux < --change hostname here OPERATING_SYSTEM=HP-UX LOOPBACK_ADDRESS=127.0.0.1 INTERFACE_NAME[0]=lan0 IP_ADDRESS[0]=192.168.1.100 <--change IP address here SUBNET_MASK[0]=255.255.255.0 <--change subnet mask here BROADCAST_ADDRESS[0]="" DHCP_ENABLE[0]="0" <--Do you wanna DHCP? set 1 to use DHCP

You can also set IP address using ifconfig command:
# ifconfig lan0 192.168.1.200 netmask 255.255.255.0 up

See or get current IP address information with ifconfig command:
# ifconfig lan0

For more information see the summery of HP-UX networking related tools and commands.