- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File Descriptor
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
08-06-2001 11:41 AM
08-06-2001 11:41 AM
File Descriptor
HPUX 11.0: User logs in and gets the following error message on login:
.Profile[35]:Generated or received a file descriptor number that is not valid
In .profile has:
set -u
trap "echo 'logout'"0
EDITOR=vi
export EDITOR
. ./.oneworld (LINE 35)
Does anyone know how I solver this problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2001 11:52 AM
08-06-2001 11:52 AM
Re: File Descriptor
It would be helpful to post "oneworld". One possibility that comes to mind is using a file descriptor that is greater than nine (9).
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2001 10:35 AM
08-07-2001 10:35 AM
Re: File Descriptor
but where can I set: file descriptor greater than nine?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2001 10:48 AM
08-07-2001 10:48 AM
Re: File Descriptor
I think James is trying to suggest that perhaps someone tried something like:
exec /tmp/myfile<10
XX=`line <&10`
But that is illegal since only file descriptors 0-9 are valid in the shell.
I think if you post the 'oneworld' script, someone can help.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2001 11:21 AM
08-07-2001 11:21 AM
Re: File Descriptor
Yes, that's exactly what I was suggesting. Please post "oneworld".
...JRF...