How to get the release date of OS in raspberry pi
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
4
down vote
favorite
I can get the information about which os I am using by cat /etc/os-release
. Which command should I use to get the release date of Raspbian OS, for example 2018-11-13
. Thanks
raspbian-stretch
add a comment |
up vote
4
down vote
favorite
I can get the information about which os I am using by cat /etc/os-release
. Which command should I use to get the release date of Raspbian OS, for example 2018-11-13
. Thanks
raspbian-stretch
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I can get the information about which os I am using by cat /etc/os-release
. Which command should I use to get the release date of Raspbian OS, for example 2018-11-13
. Thanks
raspbian-stretch
I can get the information about which os I am using by cat /etc/os-release
. Which command should I use to get the release date of Raspbian OS, for example 2018-11-13
. Thanks
raspbian-stretch
raspbian-stretch
asked yesterday
S Andrew
1529
1529
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
up vote
4
down vote
accepted
Try
cat /boot/issue.txt
instead. This is specific to official Raspbian image files downloaded from raspberrypi.org
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
yesterday
add a comment |
up vote
4
down vote
All RPF Raspbian images are generated using pi-gen which adds the file /etc/rpi-issue
with some information (when generated, type of image, etc).
Example:
pi@raspi3b:~/dev/tensor$ cat /etc/rpi-issue
Raspberry Pi reference 2018-04-18
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, d6c238c1b2b1b070a574d3e25048ca442e3e221f, stage5
NB: the date is the date the image is generated, not necessarily the date mentioned as the release date on the RPF website
add a comment |
up vote
2
down vote
The Answers above are both correct, but the Original Release date is not particularly meaningful; my fully updated Raspbian shows Raspberry Pi reference 2017-08-16
https://raspberrypi.stackexchange.com/a/85016/8697 shows how to list current state of the Pi.
Maybe work back from the distribution code name. Most queries are concerned with the build date and version of the kernel. The release date can float, and may not be known at build time.
– mckenzm
yesterday
add a comment |
up vote
0
down vote
Use uname -a
and vcgencmd version
to get your kernel version and bootcode build dates.
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Try
cat /boot/issue.txt
instead. This is specific to official Raspbian image files downloaded from raspberrypi.org
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
yesterday
add a comment |
up vote
4
down vote
accepted
Try
cat /boot/issue.txt
instead. This is specific to official Raspbian image files downloaded from raspberrypi.org
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
yesterday
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Try
cat /boot/issue.txt
instead. This is specific to official Raspbian image files downloaded from raspberrypi.org
Try
cat /boot/issue.txt
instead. This is specific to official Raspbian image files downloaded from raspberrypi.org
answered yesterday
flakeshake
4,5201727
4,5201727
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
yesterday
add a comment |
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
yesterday
1
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
yesterday
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
yesterday
add a comment |
up vote
4
down vote
All RPF Raspbian images are generated using pi-gen which adds the file /etc/rpi-issue
with some information (when generated, type of image, etc).
Example:
pi@raspi3b:~/dev/tensor$ cat /etc/rpi-issue
Raspberry Pi reference 2018-04-18
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, d6c238c1b2b1b070a574d3e25048ca442e3e221f, stage5
NB: the date is the date the image is generated, not necessarily the date mentioned as the release date on the RPF website
add a comment |
up vote
4
down vote
All RPF Raspbian images are generated using pi-gen which adds the file /etc/rpi-issue
with some information (when generated, type of image, etc).
Example:
pi@raspi3b:~/dev/tensor$ cat /etc/rpi-issue
Raspberry Pi reference 2018-04-18
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, d6c238c1b2b1b070a574d3e25048ca442e3e221f, stage5
NB: the date is the date the image is generated, not necessarily the date mentioned as the release date on the RPF website
add a comment |
up vote
4
down vote
up vote
4
down vote
All RPF Raspbian images are generated using pi-gen which adds the file /etc/rpi-issue
with some information (when generated, type of image, etc).
Example:
pi@raspi3b:~/dev/tensor$ cat /etc/rpi-issue
Raspberry Pi reference 2018-04-18
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, d6c238c1b2b1b070a574d3e25048ca442e3e221f, stage5
NB: the date is the date the image is generated, not necessarily the date mentioned as the release date on the RPF website
All RPF Raspbian images are generated using pi-gen which adds the file /etc/rpi-issue
with some information (when generated, type of image, etc).
Example:
pi@raspi3b:~/dev/tensor$ cat /etc/rpi-issue
Raspberry Pi reference 2018-04-18
Generated using pi-gen, https://github.com/RPi-Distro/pi-gen, d6c238c1b2b1b070a574d3e25048ca442e3e221f, stage5
NB: the date is the date the image is generated, not necessarily the date mentioned as the release date on the RPF website
edited yesterday
answered yesterday
Dirk
1,7091814
1,7091814
add a comment |
add a comment |
up vote
2
down vote
The Answers above are both correct, but the Original Release date is not particularly meaningful; my fully updated Raspbian shows Raspberry Pi reference 2017-08-16
https://raspberrypi.stackexchange.com/a/85016/8697 shows how to list current state of the Pi.
Maybe work back from the distribution code name. Most queries are concerned with the build date and version of the kernel. The release date can float, and may not be known at build time.
– mckenzm
yesterday
add a comment |
up vote
2
down vote
The Answers above are both correct, but the Original Release date is not particularly meaningful; my fully updated Raspbian shows Raspberry Pi reference 2017-08-16
https://raspberrypi.stackexchange.com/a/85016/8697 shows how to list current state of the Pi.
Maybe work back from the distribution code name. Most queries are concerned with the build date and version of the kernel. The release date can float, and may not be known at build time.
– mckenzm
yesterday
add a comment |
up vote
2
down vote
up vote
2
down vote
The Answers above are both correct, but the Original Release date is not particularly meaningful; my fully updated Raspbian shows Raspberry Pi reference 2017-08-16
https://raspberrypi.stackexchange.com/a/85016/8697 shows how to list current state of the Pi.
The Answers above are both correct, but the Original Release date is not particularly meaningful; my fully updated Raspbian shows Raspberry Pi reference 2017-08-16
https://raspberrypi.stackexchange.com/a/85016/8697 shows how to list current state of the Pi.
answered yesterday
Milliways
27.5k1251109
27.5k1251109
Maybe work back from the distribution code name. Most queries are concerned with the build date and version of the kernel. The release date can float, and may not be known at build time.
– mckenzm
yesterday
add a comment |
Maybe work back from the distribution code name. Most queries are concerned with the build date and version of the kernel. The release date can float, and may not be known at build time.
– mckenzm
yesterday
Maybe work back from the distribution code name. Most queries are concerned with the build date and version of the kernel. The release date can float, and may not be known at build time.
– mckenzm
yesterday
Maybe work back from the distribution code name. Most queries are concerned with the build date and version of the kernel. The release date can float, and may not be known at build time.
– mckenzm
yesterday
add a comment |
up vote
0
down vote
Use uname -a
and vcgencmd version
to get your kernel version and bootcode build dates.
add a comment |
up vote
0
down vote
Use uname -a
and vcgencmd version
to get your kernel version and bootcode build dates.
add a comment |
up vote
0
down vote
up vote
0
down vote
Use uname -a
and vcgencmd version
to get your kernel version and bootcode build dates.
Use uname -a
and vcgencmd version
to get your kernel version and bootcode build dates.
answered yesterday
Dougie
1116
1116
add a comment |
add a comment |
Thanks for contributing an answer to Raspberry Pi Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fraspberrypi.stackexchange.com%2fquestions%2f91548%2fhow-to-get-the-release-date-of-os-in-raspberry-pi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown