Posts tagged as:

config

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 [...]

{ 3 comments }

Here are some interesting facts about running Linux kernel. Following information is quite useful if you are planning to compile your own custom kernel
But where is my kernel stored?
Your compiled kernel is always installed in /boot directory:
Here is listing of all installed kernel in my system (filename -> description)
$ ls -l /boot/

config-2.6.12-1-386 –> [...]

{ 3 comments }