UNAME.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. UNAME(1)                  Minix Programmer's Manual                   UNAME(1)
  2. NAME
  3.      uname, arch - system info
  4. SYNOPSIS
  5.      uname [-snrvmpa]
  6.      arch [-snrvmpa]
  7. OPTIONS
  8.      -s   System name
  9.      -n   Node/network name
  10.      -r   Operating system release
  11.      -v   Operating system version
  12.      -m   Machine type
  13.      -p   Processor family
  14.      -a   Short for -snrvm
  15. EXAMPLES
  16.      uname -n            # Print the name of the system
  17.      arch                # Print the name of the system architecture
  18. DESCRIPTION
  19.      Uname and arch give information about the system.  The  options  indicate
  20.      which  information  strings must be printed.  These strings are always in
  21.      the same order.  Uname and arch only differ w.r.t. the default string  to
  22.      print, -s and -p respectively.
  23.      The strings are compiled into the commands except for the node  name,  it
  24.      is obtained from the file /etc/hostname.file.  Uname -m should return the
  25.      actual machine type, not the same string as with -p.
  26. SEE ALSO
  27.      uname(3).
  28.                                                                              1