uname -a 해석하는 방법?

Submitted by 세벌 on 2018.03.01.(Thu) - 12:18
Forums

uname -a 에

Linux sebul 4.9.0-6-686-pae #1 SMP Debian 4.9.82-1+deb9u2 (2018-02-21) i686 GNU/Linux

위와 같이 나오는데요.
앞에 나오는 4.9.0-6-686-pae 는 무엇을 뜻하는지? 뒤에 나오는 4.9.82-1+deb9u2 는 무엇을 뜻하는지 궁금합니다.

westporch

작성: 2018.03.01.(Thu) - 21:56

수정: 2018.03.03.(Sat) - 13:45

4.9.0-6-686-pae는 커널을 최초 컴파일한 버전이고 
4.9.82-1+deb9u2는 4.9.0-6-686-pae에서 커널을 패치하여 적용된 현재 시스템의 커널 버전입니다.

제 시스템의 경우에는 다음과 같네요.

# uname -a
Linux test-vm 4.9.0-3-amd64 #1 SMP Debian 4.9.30-2+deb9u2 (2017-06-26) x86_64 GNU/Linux

참고로 다음은 uname 명령어의 옵션입니다.
 

# uname --help
Usage: uname [OPTION]...
Print certain system information.  With no OPTION, same as -s.

  -a, --all                print all information, in the following order,
                             except omit -p and -i if unknown:
  -s, --kernel-name        print the kernel name
  -n, --nodename           print the network node hostname
  -r, --kernel-release     print the kernel release
  -v, --kernel-version     print the kernel version
  -m, --machine            print the machine hardware name
  -p, --processor          print the processor type (non-portable)
  -i, --hardware-platform  print the hardware platform (non-portable)
  -o, --operating-system   print the operating system
      --help     display this help and exit
      --version  output version information and exit

GNU coreutils online help: <http://www.gnu.org/software/coreutils/&gt;
Full documentation at: <http://www.gnu.org/software/coreutils/uname&gt;
or available locally via: info '(coreutils) uname invocation'