Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the rocket domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the soledad domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/practical-tips.com/wp-includes/functions.php on line 6114
显示 Linux 版本 - 如何操作 - Practical Tips

显示 Linux 版本 – 如何操作

by Mike

可以通过终端直接显示 Linux 版本。有几条命令可用于此目的

显示 Linux 版本:通过终端这样操作

Linux 终端可以帮助你查找系统中安装的操作系统版本。使用键盘组合键 [Ctrl]+[Alt]+[T] 打开它。

  • 打开终端,输入 cat /etc/*release 命令。星号会列出你已安装的所有发行版。因此,如果你看到多个扩展名为 “release ”的文件,不要感到惊讶。
  • 然后在终端中查找 “版本 ”项。这表示当前的版本号。
  • 另一方面,在 PRETTY_NAME= 下,你会看到当前使用的发行版,包括版本号。这通常是最安全的版本显示。
  • 或者,也可以使用 cat /etc/os-release 命令来执行相同的功能。如果只想显示当前版本和发行版,可使用以下命令之一:cat /etc/issue 或 lsb_release -d.
  • 注意:如果行或名称出现两次,请不要混淆。包含版本信息的文件内容没有标准化。每个发行版的相关文件内容可能略有不同。

Alternative: Display Linux version via hardinfo

如果你更喜欢图形用户界面而不是终端,只需安装 hardinfo 即可。该软件包会在一个清晰的窗口中显示系统信息,就像在 Windows 或 macOS 下一样。

  • 首先从 Github 官方下载页面下载软件包。当前版本名为 hardinfo2.
  • 然后,你可以使用自己选择的软件包管理器安装 hardinfo。然后就可以在系统中使用该程序了。
  • 你可以在 “系统信息和基准 ”下找到它。打开它并导航到 “计算机和摘要 ”选项卡。
  • 在这里可以找到操作系统项目。当前的发行版和版本显示在该项下。

Related Articles

Leave a Comment