Sponsored Content
Operating Systems Solaris Zone console login prompt exit Post 302737983 by hergp on Friday 30th of November 2012 07:07:15 AM
Old 11-30-2012
~.seems to work only immediately after ENTER.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

no $ prompt while starting console

I had this problem before but it started working OK for a while. I can create a new profile but when I launch the console for that user it does not show the $ prompt. It shows for su and I tried to set the terminal but I am not sure if I did it correctly since it does not work still. The... (9 Replies)
Discussion started by: softarch
9 Replies

2. AIX

How to exit system console from HMC?

Hi, I ssh to HMC, then vtmenu, then start a system console from there. How do I exit the console to return to HMC prompt? I've tried the following two key combinations but none of them is working: (1) ~~ (2) Ctrl+[, Shift+( Thank you in advance! (4 Replies)
Discussion started by: aixlover
4 Replies

3. Shell Programming and Scripting

passing login details to htaccess login prompt

Hi, How i can pass the login details to the URL which is password protected with the htaccess using command line or script (perl,or shell,or php). Any help or hint appreciated. Thanks, SJ (4 Replies)
Discussion started by: SilvesterJ
4 Replies

4. Solaris

Console Prompt

Hey guys, I'm trying to get the servers up, but I am having a hard time just trying to get in the system and configure it. I am connecting to the Sun 240,220 servers via the Serial Connection. Watching the server come up after it starts to come up and does all the post message the screen... (6 Replies)
Discussion started by: br1an
6 Replies

5. Solaris

$ Prompt on Serial console is not responding.

Hi Experts. i have been stuck up with an issue. i have connected my Solaris 8 , Sun fire V445 on serial port by using Teraterm. Initially i was able to login and executed some tasks. After executing some commands (mainly Control +c), i am not able to type any key or not able to do anything at... (2 Replies)
Discussion started by: siddulamadhu
2 Replies

6. UNIX for Advanced & Expert Users

$ Prompt on Serial console is not responding.

Hi Experts. i have been stuck up with an issue. i have connected my Solaris 8 , Sun fire V445 on serial port by using Teraterm. Initially i was able to login and executed some tasks. After executing some commands (mainly Control +c), i am not able to type any key or not able to do anything at... (2 Replies)
Discussion started by: siddulamadhu
2 Replies

7. AIX

Not able to login AIX server but able to login thru console.

Hi, i am able to login to AX server thru console but not able to login directly thru server. also the server is not ping-able with other server. filesystem is fine. and OS version is AIX 5.3. please let me know if you need any specific log. thx in advance. Scriptor (2 Replies)
Discussion started by: scriptor
2 Replies

8. Solaris

Unable to login via console mode to non-global zone

tldr; We've installed a non-global-zone from a unified archive which once booted, we're unable to gain access to the system either through zlogin or zlogin -C. Errors; svc.startd: instance svc:/system/console-login:default exited with status 127 Investigation; 1) Already opened a SR with... (1 Reply)
Discussion started by: samthewildone
1 Replies

9. Solaris

Virtual Terminal (Console) showing non-global zone?

Hope that everyone is doing well today. Happy Friday. I am running an illumos (opensolaris) based system which is like SmartOS, OmniOS, and OpenIndiana I have been searching all over the Internet into various documents and forms that have to do with Solaris, Opensolaris, Illumos, and SmartOS... (3 Replies)
Discussion started by: LonnieTC
3 Replies
HCREATE(3)						   BSD Library Functions Manual 						HCREATE(3)

NAME
hcreate, hcreate_r, hdestroy, hdestroy_r, hsearch, hsearch_r -- manage hash search table LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <search.h> int hcreate(size_t nel); int hcreate_r(size_t nel, struct hsearch_data *table); void hdestroy(void); void hdestroy_r(struct hsearch_data *table); ENTRY * hsearch(ENTRY item, ACTION action); int hsearch_r(ENTRY item, ACTION action, ENTRY ** itemp, struct hsearch_data *table); DESCRIPTION
The hcreate(), hcreate_r(), hdestroy(), hdestroy_r() hsearch(), and hsearch_r() functions manage hash search tables. The hcreate() function allocates and initializes the table. The nel argument specifies an estimate of the maximum number of entries to be held by the table. Unless further memory allocation fails, supplying an insufficient nel value will not result in functional harm, although a performance degradation may occur. Initialization using the hcreate() function is mandatory prior to any access operations using hsearch(). The hdestroy() function destroys a table previously created using hcreate(). After a call to hdestroy(), the data can no longer be accessed. The hsearch() function is used to search to the hash table. It returns a pointer into the hash table indicating the address of an item. The item argument is of type ENTRY, defined in the <search.h> header. This is a structure type that contains two pointers: char *key comparison key void *data pointer to data associated with key The key comparison function used by hsearch() is strcmp(3). The action argument is of type ACTION, an enumeration type which defines the following values: ENTER Insert item into the hash table. If an existing item with the same key is found, it is not replaced. Note that the key and data elements of item are used directly by the new table entry. The storage for the key must not be modified during the life- time of the hash table. FIND Search the hash table without inserting item. Note that the comparison key must be allocated using malloc(3) or calloc(3) if action is ENTER and hdestroy() will be called. This is because hdestroy() will call free(3) for each comparison key (but not data). Typically the comparison key is allocated by using strdup(3). The hcreate_r(), hdestroy_r(), and hsearch_r() functions are re-entrant versions of the above functions that can operate on a table supplied by the user. The hsearch_r() function returns 0 if the action is ENTER and the element cannot be created, 1 otherwise. If the element exists or can be created, it will be placed in itemp, otherwise itemp will be set to NULL. RETURN VALUES
If successful, the hcreate() and hcreate_r() functions return a non-zero value. Otherwise, a value of 0 is returned and errno is set to indicate the error. The hdestroy() and hdestroy_r() functions return no value. If successful, the hsearch() function returns a pointer to hash table entry matching the provided key. If the action is FIND and the item was not found, or if the action is ENTER and the insertion failed, NULL is returned and errno is set to indicate the error. If the action is ENTER and an entry already existed in the table matching the given key, the existing entry is returned and is not replaced. The hsearch_r() function returns 1 unless the table is full, when it returns 0. If hsearch() returns 0 or the element is not found, errno is set to indicate the error. ERRORS
The hcreate(), hcreate_r(), hsearch() and hsearch_r() functions will fail if: [ENOMEM] Insufficient memory is available. The hsearch() and hsearch_r() functions will also fail if the action is SEARCH and the element is not found: [ESRCH] The item given is not found. SEE ALSO
bsearch(3), lsearch(3), malloc(3), strcmp(3) STANDARDS
The hcreate(), hdestroy() and hsearch() functions conform to X/Open Portability Guide Issue 4, Version 2 (``XPG4.2''). HISTORY
The hcreate(), hdestroy() and hsearch() functions first appeared in AT&T System V UNIX. The hcreate_r(), hdestroy_r() and hsearch_r() func- tions are GNU extensions. CAVEATS
At least the following limitations can be mentioned: o The original, non-GNU interface permits the use of only one hash table at a time. o Individual hash table entries can be added, but not deleted. o The standard is indecipherable about the internal memory usage of the functions, mentioning only that ``hcreate() and hsearch() functions may use malloc() to allocate space''. This limits the portability of the functions, given that other implementations may not free(3) the buffer pointed by key. BSD
September 14, 2011 BSD
All times are GMT -4. The time now is 04:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy