Query: uname
OS: minix
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
UNAME(2) System Calls Manual UNAME(2)NAMEuname - get system infoSYNOPSIS#include <sys/utsname.h> int uname(struct utsname *name)DESCRIPTIONUname() fills a struct utsname with system information. This structure is described in <sys/utsname.h> as follows: struct utsname { char sysname[15+1]; /* System name */ char nodename[255+1]; /* Node/Network name */ char release[11+1]; /* O.S. release */ char version[7+1]; /* O.S. version */ char machine[11+1]; /* Machine hardware */ char arch[11+1]; /* Architecture */ }; The strings are always null terminated, and may be of a different length then shown here. The first five are required by POSIX, the last is Minix specific.SEE ALSOuname(1).AUTHORKees J. Bot (kjb@cs.vu.nl) UNAME(2)
| Related Man Pages | 
|---|
| oldolduname(2) - linux | 
| uname(3) - bsd | 
| uname(3) - netbsd | 
| uname(2) - osf1 | 
| uname(3) - osx | 
| Similar Topics in the Unix Linux Community | 
|---|
| emacs error... help! | 
| OS Type and Version | 
| uname -S newhostname | 
| tr command with uname -n | 
| to hide uname and pwd |