Debian 版本信息为何有差异?

Debian 版本信息为何有差异?

如果我在同一台机器上运行cat /etc/os-release,我会得到:

cat /etc/os-release 
PRETTY_NAME="Debian GNU/Linux 8 (jessie)"
NAME="Debian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=debian
HOME_URL="http://www.debian.org/"
SUPPORT_URL="http://www.debian.org/support/"
BUG_REPORT_URL="https://bugs.debian.org/"

但是如果我运行:'cat /proc/version,我会得到:

cat /proc/version 
Linux version 3.16.7-tinycore64 (root@064f0e1ce709) (gcc version 4.7.2 (Debian 4.7.2-5) ) #1 SMP Thu Nov 20 00:06:13 UTC 2014

请假设我不知道(!) - 有人可以解释一下版本的差异吗?

答案1

确切地说:

这显示了有关内核的信息和GNU 编译器集合用于构建内核的工具。

cat /proc/version 
{kernel Version} ({user who compiled}) ({GNU Compiler Collection Version} ({gcc dpkg version}) ) #1 {kernel type} {kernel build date}

这显示了有关的完整信息Debian 版本

cat /etc/os-release 
PRETTY_NAME="Full_Name (Codename)"
NAME="Distribution_Name"
VERSION_ID="Version_Identifier"
VERSION="Version_Number (Codename)"
ID="Short_Name"
HOME_URL="WebSite"
SUPPORT_URL="Support_Site"
BUG_REPORT_URL="Bug_Report_Site"

相关内容