4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Raspberry Pi の OS と Kernel のバージョン確認

Posted at

Raspberry Pi の記事を書くときのスペック確認のため

1. OSのバージョン確認

Raspbian のバージョンを確認しようとしたところ、
2020年5月に正式名称が Raspbian から Raspberry Pi OSへ変更とのこと。
Raspberry Pi OSにはバージョンが存在しないためにリリース日とカーネルバージョンで識別。

リリース日はわからなかったため、
image.png
Imager から確認。

Raspberry Pi OS (32-bit)
リリース日:2021-05-07
Raspberry Pi Imager v1.6.2

ただ、普通に Raspbian の確認コマンドも使えました。

1. cat /etc/debian_version

image.png

2. cat /etc/issue

image.png

3. lsb_releaseコマンド

まず、sudo apt-get install lsb-release
でパッケージインストール
lsb_release -a
image.png

Raspbian : 10.10

2. Kernel のバージョン確認

uname -a
cat /proc/version
image.png

Kernel : 5.10

こちらを参考にしました。

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?