How to get the release date of OS in raspberry pi
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 Dec 4 at 12:11
S Andrew
1549
1549
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
Dec 4 at 12:50
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
Dec 4 at 22:57
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 |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("schematics", function () {
StackExchange.schematics.init();
});
}, "cicuitlab");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "447"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
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
Dec 4 at 12:50
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
Dec 4 at 12:50
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 Dec 4 at 12:32
flakeshake
4,5621727
4,5621727
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
Dec 4 at 12:50
add a comment |
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
Dec 4 at 12:50
1
1
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
Dec 4 at 12:50
yes, that file is copied from /etc/rpi-issue (see my answer) in the latter stages of pi-gen
– Dirk
Dec 4 at 12:50
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 Dec 4 at 12:51
answered Dec 4 at 12:31
Dirk
1,7651815
1,7651815
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
Dec 4 at 22:57
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
Dec 4 at 22:57
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 Dec 4 at 22:20
Milliways
27.8k1251111
27.8k1251111
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
Dec 4 at 22:57
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
Dec 4 at 22:57
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
Dec 4 at 22:57
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
Dec 4 at 22:57
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 Dec 4 at 23:06
Dougie
4688
4688
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