uname(2) System Calls Manual uname(2) uname - C (libc, -lc) #include int uname(struct utsname *buf); uname() buf. utsname : struct utsname { char sysname[]; /* Operating system name (e.g., "Linux") */ char nodename[]; /* Name within communications network to which the node is attached, if any */ char release[]; /* Operating system release (e.g., "2.6.28") */ char version[]; /* Operating system version */ char machine[]; /* Hardware type 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'). 0. -1, errno . EFAULT buf . domainname ( NIS YP) GNU. 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(...). SVr4 uses 257, "to support Internet hostnames" -- this is the largest value likely to be encountered in the wild. POSIX.1-2008. POSIX.1-2001, SVr4, 4.4BSD. C , utsname uname(): sys_olduname() ( __NR_oldolduname), sys_uname() ( __NR_olduname) sys_newuname() ( __NR_uname). 9; 65; 65, domainname. uname() glibc , , . The kernel has the name, release, version, and supported machine type built in. Conversely, the nodename field is configured by the administrator to match the network (this is what the BSD historically calls the "hostname", and is set via sethostname(2)). Similarly, the domainname field is set via setdomainname(2). utsname /proc/sys/kernel/ {ostype, hostname, osrelease, version, domainname}. uname(1), getdomainname(2), gethostname(2), uts_namespaces(7) () Azamat Hackimov , Dmitriy Ovchinnikov , Dmitry Bolkhovskikh , Katrin Kutepova , Yuri Kozlov ; GNU (GNU General Public License - GPL, 3 ) , - . - , , () () () <>. Linux 6.9.1 15 2024 . uname(2)