Sponsored Content
Full Discussion: error message
Top Forums UNIX for Dummies Questions & Answers error message Post 12843 by LivinFree on Tuesday 8th of January 2002 04:01:59 AM
Old 01-08-2002
A very simplistic explanation of an i-node is like sectors in a Windows FAT filesystem. You may have 2000 megabytes available on a disk (or partition). You have 1000 i-nodes (or sectors) on that disk. Thats means that the smallest chunk of data on your disk would take up 2 megabytes. So, if you have 1000 files, each one megabyte in size, even though your disk is technically only half-full, you've used all 1000 i-nodes. This is what has happened to you, at least on that filesystem (partition). Normally you should find a good balance of i-nodes to space, but you can't have TOO many i-nodes without a large performance problem - that's why there's a limit.

Look for lots of small files on your root filesystem ("/") - that'll will probably be your problem. You can see that it's 93% used.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Error Message

Hi everyone, Can anyone explain what the following error refers to...and perhaps a solution? vxfs: vx_nospace -/tmp file system full (8 block extent) Thanks, Uni (2 Replies)
Discussion started by: Uni
2 Replies

2. UNIX for Advanced & Expert Users

Error message

I'm getting an error - symbol referencing errors. No output written to, etc Can anybody tell me why this is? (2 Replies)
Discussion started by: Dan Rooney
2 Replies

3. Solaris

Error message

Hi, My Solaris 5.8 system keeps getting this error at boot - "Can't set vol root to /vol" then /usr/sbin/vold: can't set vol root to /vol: Resource temporarily unavailiable Any idea what is wrong, and how do I fix it? (0 Replies)
Discussion started by: ghuber
0 Replies

4. UNIX for Advanced & Expert Users

Error message

Hi, My Solaris 5.8 system keeps getting this error at boot - "Can't set vol root to /vol" then /usr/sbin/vold: can't set vol root to /vol: Resource temporarily unavailiable Any idea what is wrong, and how do I fix it? (1 Reply)
Discussion started by: ghuber
1 Replies

5. UNIX for Dummies Questions & Answers

getting last error message

Question for unix programmers - what function I need to used to get the exact error message when the library failed to load? Thanks (1 Reply)
Discussion started by: tttttt
1 Replies

6. Shell Programming and Scripting

Error message

I am new to scripting. I am using the following script . BART.dat contains the string 'Y' . #!/bin/ksh cd /work/TCI/data_out file=`cat BART.dat` echo "$file" if ; then echo "true" fi When i am executing the above script i am getting the following error ./s.ksh: : not found ... (2 Replies)
Discussion started by: ammu
2 Replies

7. UNIX for Dummies Questions & Answers

Error Message

What does this means? - ERROR OPENING FILE - KEY LENGHT MISMATCH (2 Replies)
Discussion started by: RDM00
2 Replies

8. UNIX for Dummies Questions & Answers

Error Message

I keep getting an error message in a script im writing, this line is allways pointed out. if and this is the message i keep getting. line 32: [: 8: unary operator expected Whats wrong with it? Please Help. (5 Replies)
Discussion started by: chapmana
5 Replies

9. UNIX for Dummies Questions & Answers

What does this Error Message Mean

Hi I found the following error message in my logs: warning: /etc/hosts.deny, line 6: can't verify hostname: getaddrinfo(localhost) didn't return ::ffff:222.255.28.33 What is the error message trying to indicate? That there is a problem with line 6 (2 Replies)
Discussion started by: mojoman
2 Replies
sip_get_request_method(3SIP)			   Session Initiation Protocol Library Functions		      sip_get_request_method(3SIP)

NAME
sip_get_request_method, sip_get_response_code, sip_get_response_phrase, sip_get_sip_version - obtain attributes from the start line in a SIP message SYNOPSIS
cc [ flag ... ] file ... -lsip [ library ... ] #include <sip.h> sip_method_t sip_get_request_method(const sip_msg_t sip_msg, int *error); int sip_get_response_code(sip_msg_t sip_msg, int *error); const sip_str_t *sip_get_response_phrase(sip_msg_t sip_msg, int *error); const sip_str_t*sip_get_sip_version(sip_msg_t sip_msg, int *error); DESCRIPTION
For functions that return a pointer of type sip_str_t, sip_str_t is supplied by: typedef struct sip_str { char *sip_str_ptr; int sip_str_len; }sip_str_t; The sip_str_ptr parameter points to the start of the returned value and sip_str_len supplies the length of the returned value. For example, given the following request line in a SIP message sip_msg that is input to sip_get_request_uri_str(): FROM : <Alice sip:alice@atlanta.com>;tag=1928301774 the return is a pointer to sip_str_t with the sip_str_ptr member pointing to "A" of Alice and sip_str_len being set to 5, the length of Alice. Access functions for headers that can have multiple values take the value as the input, while those that can have only one value take the SIP message sip_msg as the input. The sip_get_request_method() function will return the SIP method from the request line in the SIP message sip_msg. The method can be one of the following: INVITE ACK OPTIONS BYE CANCEL REGISTER REFER INFO SUBSCRIBE NOTIFY PRACK UNKNOWN The sip_get_response_code() function will return the response code response from the request line in the SIP message sip_msg. The sip_get_respose_phrase() function will return the response phrase response from the request line in the SIP message sip_msg. The sip_get_sip_version() function will return the version of the SIP protocol from the request or the response line in the SIP message sip_msg. RETURN VALUES
For functions that return a pointer to sip_str_t, the return value is the specified value on success or NULL in case of error. For func- tions that return an integer, the return value is the specified value on success and -1 on error. The value of errno is not changed by these calls in the event of an error. ERRORS
These functions take a pointer to an integer error as an argument. If the error is non-null, one of the following values is set: EINVAL The input SIP message sip_msg or the header value is null; or the specified header/header value is deleted. EPROTO The header value is not present or invalid. The parser could not parse it correctly. ENOMEM There is an error allocating memory for the return value. On success, the value of the location pointed to by error is set to 0. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
libsip(3LIB) SunOS 5.11 25 Jan 2007 sip_get_request_method(3SIP)
All times are GMT -4. The time now is 09:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy