- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- startup error for hpux11
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 09:36 PM
03-03-2002 09:36 PM
startup error for hpux11
I got the following message during the startup.
/sbin/auto_parms[10]: 0^J1: Syntax error
what is the problem??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 09:53 PM
03-03-2002 09:53 PM
Re: startup error for hpux11
Sounds like there is a syntax error
in the /sbin/auto_parms script at
line 10. Has this file been changed
recently?? This is not file that
should be changed at all.
What OS have you got?
From one of my HP-UX 11 systems I
get this:
# ll ./auto_parms
-r-xr--r-- 1 bin bin 42764 Oct 27 1997 auto_parms
# sum ./auto_parms
40705 84 ./auto_parms
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 09:53 PM
03-03-2002 09:53 PM
Re: startup error for hpux11
Sounds like there is a syntax error
in the /sbin/auto_parms script at
line 10. Has this file been changed
recently?? This is not file that
should be changed at all.
What OS have you got 11 or 11i
From one of my HP-UX 11 systems I
get this:
# ll ./auto_parms
-r-xr--r-- 1 bin bin 42764 Oct 27 1997 auto_parms
# sum ./auto_parms
40705 84 ./auto_parms
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:33 AM
03-04-2002 02:33 AM
Re: startup error for hpux11
2)Are you using DHCP server and have you configured or tried to configure your workstation as DHCP client?
3)auto_parms script checks value of the parameter "DHCP_ENABLE[0]=" in /etc/rc.config.d/netconf.
4)If you don't want DHCP client the set the value as follows,
DHCP_ENABLE[0]=0
5)It also checks the files,
/etc/rc.config.d/LANG
/etc/dt/config/Xconfig
6)check the file "/etc/auto_parms.log" file for more details.
7)man auto_parms
-K.Vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 06:15 AM
03-04-2002 06:15 AM
Re: startup error for hpux11
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 06:20 AM
03-04-2002 06:20 AM
Re: startup error for hpux11
Another check is, the auto_parms script is called from the /sbin/rc script during startup time.
Check and ensure the two
files /sbin/rc and /sbin/auto_parms are ok.
test@/home/new > ll /sbin/auto_parms
-r-xr--r-- 1 bin bin 42988 Aug 16 2000 /sbin/auto_parms
test@/home/new >ll /sbin/rc
-r-xr--r-- 1 bin sys 4262 Nov 7 1997 /sbin/rc
test@/home/new >grep auto_parms /sbin/rc
# /sbin/auto_parms will invoke /sbin/set_parms to remedy the situation.
if [ -x /sbin/auto_parms ]; then
/sbin/auto_parms
echo "\nWARNING: /sbin/auto_parms does not exist"
***
-ra