[root@linuxso.com ~]# uname
Linux
注:单独使用uname命令时相当于uname -s
[root@linuxso.com ~]# uname -a
Linux linuxso.com 2.6.18-4-686 #1 SMP Mon Mar 26 17:17:36 UTC 2007 i686 GNU/Linux
[root@linuxso.com ~]# uname -m
i686
[root@linuxso.com ~]# uname -n
linuxso.com
[root@linuxso.com ~]# uname -r
2.6.18-4-686
[root@linuxso.com ~]# uname -s
Linux
[root@linuxso.com ~]# uname -v
#1 SMP Mon Mar 26 17:17:36 UTC 2007
[root@linuxso.com ~]# uname -p
i686
[root@linuxso.com ~]# uname -i
i386
[root@linuxso.com ~]# uname -o
GNU/Linux
[root@linuxso.com ~]# uname --version //两个-
uname (GNU coreuti) 5.97
Copyright (C) 2006 Free Software Foundation, I.
This is software. You may risibute copies of it under the tes of
the GNU General Public License <
There is NO WARRANTY, to the tent permitted by law.
这是自由软件。您可以按照
GNU GPL 协议
< 的条款再发布此软件的副本,但我们无法保证相关法律不对这一情形进行限制。
Written by Dav MacKenzie.
推荐阅读 Linux uname函数调用 资料收集
【uname系统调用】
功能描述:
获取当前内核名称和其它信息。
用法:
#include
extern int uname (struct utsname *__name) __THROW;
参数:
__name:指向存放系统信息的缓冲区,原型如下
struct utsname
{ char sysname[_UTSNAME_SYSNAME_LENGTH];//当前操作系统名
char nodename[_UTSNAME_NODENAME_LENGTH];//网络上的名称
char release[_UTSNAME_RELEASE_LENGTH];//当前发布级别
char version[_UTSNAME_VERSION_LENGTH];//当前发布版本
char machine[_UTSNAME_MACHINE_LENGTH];//当前硬件体系类型
#if _UTSNAME_DOMAIN_LENGTH - 0
/* Name of the domain of this node on the network. */
# ifdef __USE_GNU
char domainname[_UTSNAME_DOMAIN_LENGTH]; //当前域名
# else
char __domainname[_UTSNAME_DOMAIN_LENGTH];
# endif
#endif
};
返回说明:
成功执行时,返回0。失败返回-1,errno被设为EFAULT,表示buf无效。
关于uname的具体用法可以使用“man uname”来查看。
实例如下:
#include
#include
#include
int main()
{
struct utsname testbuff;
int fb=0;
fb=uname(&testbuff);
if(fb<0)
{
perror("uname");
return 0;
}else
{
printf(" sysname:%s\n nodename:%s\n release:%s\n version:%s\n machine:%s\n \n ",\
testbuff.sysname,\
testbuff.nodename,\
testbuff.release,\
testbuff.version,\
testbuff.machine);
#if _UTSNAME_DOMAIN_LENGTH - 0
# ifdef __USE_GNU
printf(" domainame:%s\n ",testbuff.domainname);
//char domainname[_UTSNAME_DOMAIN_LENGTH]; //当前域名
# else
printf(" __domainame:%s\n ",testbuff.__domainname);
//char __domainname[_UTSNAME_DOMAIN_LENGTH];
# endif
#endif
}
return 0;
}