已经给我预装了SD卡。它启动正常,我知道它正在运行某些版本的Raspbian。我可以确切确定它正在运行哪个版本吗?
已经给我预装了SD卡。它启动正常,我知道它正在运行某些版本的Raspbian。我可以确切确定它正在运行哪个版本吗?
Answers:
uname -a
将为您提供内核版本等。您还可以尝试其他一些参数-看看它们:
man uname
Linux raspberrypi 4.4.32-v7+ #924 SMP Tue Nov 15 18:11:28 GMT 2016 armv7l GNU/Linux
。但是,我需要知道Pi运行的是Debian 7还是
cat /etc/os-release
感谢@ w5m
打开Terminal
并输入:
cat /etc/os-release
这将在我的Raspberry Pi 2上产生以下输出...
PRETTY_NAME="Raspbian GNU/Linux 8 (jessie)"
NAME="Raspbian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
PRETTY_NAME
,ID
和*URL
:-(值我不确定,似乎是由Raspbian维护者监督我。
不要看uname -a
。那只是显示内核版本。要查找发行版本,请运行:
sudo apt-get install lsb-release
lsb_release -a
我的RPi显示:
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 7.8 (wheezy)
Release: 7.8
Codename: wheezy
cat /etc/os-release
或cat /etc/*-release
不好的东西
https://github.com/RPi-Distro/pi-gen/releases列出了自2016-05-10起的Raspbian版本。
要在运行的系统上找到您的Raspbian发行映像发行日期(而不是/ etc / os-release信息,例如VERSION =“ 8(jessie)”),请执行以下操作:
$ cat /etc/rpi-issue
Raspberry Pi reference 2016-05-10
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, c32099002b4c44243e87d8cc90303237eb5ce06a, stage4
请注意,如果您执行过“ apt-get {dist-,} upgrade”或rpi-update,自首次安装该分发映像以来,您将更新一些文件。
[原始海报在github URL出现之前于2013年问过,但此答案可能在2016年对某些用户有所帮助。]
更新:您可以将SD卡安装在Linux或Windows桌面SD读取器中,以直接读取/issue.txt文件,而不必在该神秘的Raspbian SD卡上实际运行Raspbian。/issue.txt位于SD卡FAT16分区的根目录中。从Ubuntu 16.04.1起,我在第二张SD卡上看到以下内容:
Raspberry Pi reference 2016-09-23
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, 62406bad92ed23728f46711b3539c04c37dfb62c, stage4
pi-gen
它生成的,因此它似乎是自动更新的,与/etc/os-release
它看起来像是手动编辑的不同,在Raspbian的最新PC映像中却被忽略了。
几乎是塞林写的。只是lsb_release -a
,您无需安装LSB模块即可查看树莓派说明。
-bash: lsb_release: command not found
但是,当我安装lsb-release软件包时,它消失了。
以下脚本是我用来收集相关详细信息的脚本。(这就是所谓的约)
您可以运行此命令或单个命令
#! /bin/sh
if [ -e /etc/rpi-issue ]; then
echo "- Original Installation"
cat /etc/rpi-issue
fi
if [ -e /usr/bin/lsb_release ]; then
echo "- Current OS"
lsb_release -irdc
fi
echo "- Kernel"
uname -r
echo "- Model"
cat /proc/device-tree/model && echo
echo "- hostname"
hostname
echo "- Firmware"
/opt/vc/bin/vcgencmd version
Pi3A +上的输出显示
- Original Installation
Raspberry Pi reference 2018-11-13
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, 7e0c786c641ba15990b5662f092c106beed40c9f, stage4
- Current OS
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 9.6 (stretch)
Release: 9.6
Codename: stretch
- Kernel
4.14.79-v7+
- Model
Raspberry Pi 3 Model A Plus Rev 1.0
- hostname
MilliwaysPi3A
- Firmware
Nov 4 2018 16:31:07
Copyright (c) 2012 Broadcom
version ed5baf9520a3c4ca82ba38594b898f0c0446da66 (clean) (release)
Filesystem created: Tue Jan 1 12:09:51 2019
它应该在大多数Linux发行版上产生有意义的输出,例如Ubuntu MATE
- Current OS
Distributor ID: Ubuntu
Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial
- Kernel
4.4.38-v7+
- Model
Raspberry Pi 2 Model B Rev 1.1
- hostname
PiUbuntu
- Firmware
Dec 9 2016 15:11:26
Copyright (c) 2012 Broadcom
version 2e557d8dac70add28597c3b449cb52c34588d818 (clean) (release)