NAME
uname - get name and information about current kernel
SYNOPSIS
#include <sys/utsname.h> int uname(struct utsname *buf);
DESCRIPTION
uname() returns system information in the structure pointed to by buf. The utsname struct is defined in <sys/utsname.h>: struct utsname { char sysname[]; /* Operating system name (e.g., "Linux") */ char nodename[]; /* Name within "some implementation-defined network" */ char release[]; /* Operating system release (e.g., "2.6.28") */ char version[]; /* Operating system version */ char machine[]; /* Hardware identifier */ #ifdef _GNU_SOURCE char domainname[]; /* NIS or YP domain name */ #endif }; The length of the arrays in a struct utsname is unspecified (see NOTES); the fields are terminated by a null byte ('\0').
RETURN VALUE
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.
ERRORS
EFAULT buf is not valid.
CONFORMING TO
POSIX.1-2001, POSIX.1-2008, SVr4. There is no uname() call in 4.3BSD. The domainname member (the NIS or YP domain name) is a GNU extension.
NOTES
This is a system call, and the operating system presumably knows its name, release and version. It also knows what hardware it runs on. So, four of the fields of the struct are meaningful. On the other hand, the field nodename is meaningless: it gives the name of the present machine in some undefined network, but typically machines are in more than one network and have several names. Moreover, the kernel has no way of knowing about such things, so it has to be told what to answer here. The same holds for the additional domainname field. To this end, Linux uses the system calls sethostname(2) and setdomainname(2). Note that there is no standard that says that the hostname set by sethostname(2) is the same string as the nodename field of the struct returned by uname() (indeed, some systems allow a 256-byte hostname and an 8-byte nodename), but this is true on Linux. The same holds for setdomainname(2) and the domainname field. The length of the fields in the struct varies. Some operating systems or libraries use a hardcoded 9 or 33 or 65 or 257. Other systems use SYS_NMLN or _SYS_NMLN or UTSLEN or _UTSNAME_LENGTH. Clearly, it is a bad idea to use any of these constants; just use sizeof(...). Often 257 is chosen in order to have room for an internet hostname. Part of the utsname information is also accessible via /proc/sys/kernel/{ostype, hostname, osrelease, version, domainname}. C library/kernel differences Over time, increases in the size of the utsname structure have led to three successive versions of uname(): sys_olduname() (slot __NR_oldolduname), sys_uname() (slot __NR_olduname), and sys_newuname() (slot __NR_uname). The first one used length 9 for all fields; the second used 65; the third also uses 65 but adds the domainname field. The glibc uname() wrapper function hides these details from applications, invoking the most recent version of the system call provided by the kernel.
SEE ALSO
uname(1), getdomainname(2), gethostname(2), namespaces(7)
COLOPHON
This page is part of release 4.09 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.
More Linux Commands
manpages/systemd-random-seed.8.html
systemd-random-seed(8) Load and save the system random seed
systemd-random-seed.service is a service that restores the random seed of the system at early-boot and saves it at shutdown. See random(4) for details. Saving/r
manpages/BitmapUnit.3.html
BitmapUnit(3) - image format functions and macros (ManPage)
The XListPixmapFormats function returns an array of XPixmapFormatValues structures that describe the types of Z format images supported by the specified display
manpages/gnutls_x509_crt_get_activation_time.3.html
gnutls_x509_crt_get_activation_time(3) - API function.......
This function will return the time this Certificate was or will be activated. RETURNS activation time, or (time_t)-1 on error. REPORTING BUGS Report bugs to <bu
manpages/glMultiTexCoord2fARB.3gl.html
glMultiTexCoord2fARB(3gl) - set the current texture coordina
glMultiTexCoordARB specifies texture coordinates in one, two, three, or four dimensions. glMultiTexCoord1ARB sets the current texture coordinates to (s, 0, 0, 1
manpages/deleteln.3ncurses.html
deleteln(3ncurses) - delete and insert lines in a curses win
deleteln.3ncurses - The deleteln and wdeleteln routines delete the line under the cursor in the window; all lines below the current line are moved up one line.
manpages/netstat.8.html
netstat(8) - Print network connections, routing tables, inte
Netstat prints information about the Linux networking subsystem. The type of information printed is controlled by the first argument, as follows: (none) By defa
manpages/idnalias.conf.5.html
idn.conf(5) - configuration files for idnkit library........
idn.conf and .idnrc are configuration files for idnkit library which is a toolkit for handling internationalized domain names. idnkit library tries to load the
manpages/ldap_modrdn.3.html
ldap_modrdn(3) - Perform an LDAP modify RDN operation.......
The ldap_modrdn() and ldap_modrdn_s() routines perform an LDAP modify RDN operation. They both take dn, the DN of the entry whose RDN is to be changed, and newr
manpages/getprotobyname_r.3.html
getprotobyname_r(3) - get protocol entry (reentrant)........
The getprotoent_r(), getprotobyname_r(), and getprotobynumber_r() functions are the reentrant equivalents of, respectively, getprotoent(3), getprotobyname(3), a
manpages/Tcl_DeleteEventSource.3.html
Tcl_DeleteEventSource(3) - the event queue and notifier inte
The interfaces described here are used to customize the Tcl event loop. The two most common customizations are to add new sources of events and to merge Tcls ev
manpages/gnutls_pkcs11_set_pin_function.3.html
gnutls_pkcs11_set_pin_function(3) - API function (Man Page)
This function will set a callback function to be used when a PIN is required for PKCS 11 operations. See gnutls_pkcs11_pin_callback_t() on how the callback shou
manpages/res_query.3.html
res_query(3) - resolver routines (Library - Linux man page)
These functions make queries to and interpret the responses from Internet domain name servers. The res_init() function reads the configuration files (see resolv
