我怎样才能找到我使用的Fedora版本?

时间:2009-02-12 09:29:11

标签: linux fedora

sudo find /etc | xargs grep -i fedora > searchFedora

给出:

/etc/netplug.d/netplug: # At least on Fedora Core 1
...

但请参阅/etc/netplug.d/netplug文件中的Fedora版本。这很严重吗?

12 个答案:

答案 0 :(得分:125)

您还可以尝试/etc/redhat-release/etc/fedora-release

cat /etc/fedora-release 
Fedora release 7 (Moonshine)

答案 1 :(得分:120)

cat /etc/issue

@ cat /etc/fedora-release,如@Bruce ONeel所建议

答案 2 :(得分:45)

建议的标准文件为/etc/os-release。见http://www.freedesktop.org/software/systemd/man/os-release.html

您可以执行以下操作:

$ source /etc/os-release
$ echo $ID
fedora
$ echo $VERSION_ID
17
$ echo $VERSION
17 (Beefy Miracle)

答案 3 :(得分:19)

你可以尝试

lsb_release -a

至少适用于Debian和Ubuntu(因为它是LSB,它至少应该是大多数其他主流发行版)。 http://rpmfind.net/linux/RPM/sourceforge/l/ls/lsb/lsb_release-1.0-1.i386.html表明它已经存在了很长一段时间。

答案 4 :(得分:14)

最简单的命令可以提供你所需要的东西,但其他一些好的信息也是:

hostnamectl

答案 5 :(得分:7)

cat /etc/*release

它几乎适用于任何主要发行版。

答案 6 :(得分:6)

[Belmiro@HP-550 ~]$ uname -a

Linux HP-550 2.6.30.10-105.2.23.fc11.x86_64 #1 SMP Thu Feb 11 07:06:34 UTC 2010
x86_64 x86_64 x86_64 GNU/Linux


[Belmiro@HP-550 ~]$ lsb_release -a

LSB Version: :core-3.1-amd64:core-3.1-noarch:core-3.2-amd64:core-3.2-noarch:deskt
op-3.1-amd64:desktop-3.1-noarch:desktop-3.2-amd64:desktop-3.2-noarch
Distributor ID: Fedora
Description: Fedora release 11 (Leonidas)
Release: 11
Codename: Leonidas
[Belmiro@HP-550 ~]$ 

答案 7 :(得分:5)

uname -a怎么样?

答案 8 :(得分:2)

On my installation of Fedora 25 (workstation) all of the distribution ID info was found in this file:

/usr/lib/os.release.d/os-release-workstation 

This included,

  • NAME=Fedora
  • VERSION="25 (Workstation Edition)"
  • ID=fedora
  • VERSION_ID=25
  • PRETTY_NAME="Fedora 25 (Workstation Edition)"
  • <...>
  • VARIANT="Workstation Edition"
  • VARIANT_ID=workstation

答案 9 :(得分:2)

这些命令适用于Artik 10:

  • cat / etc / fedora-release
  • cat / etc / issue
  • hostnamectl

而其他人没有:

  • lsb_release -a
  • uname -a

答案 10 :(得分:0)

uname -a适用于我的fc11

答案 11 :(得分:0)

使用命令,截屏 输出格式信息。