How to tell if I'm on Debian stable or unstable?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












1















I'm currently running Debian 9.0 (stretch) which I upgraded from jessie. I upgraded long time ago and don't remember if I did a stable upgrade or I went to unstable instead. I want to move to stretch stable but I can't figure out how to check if I'm on stable.



also if I happen to be on stretch unstable is it possible to move to stable stretch?










share|improve this question






















  • How about cat /etc/os-releases?

    – Biswapriyo
    Mar 2 at 8:36















1















I'm currently running Debian 9.0 (stretch) which I upgraded from jessie. I upgraded long time ago and don't remember if I did a stable upgrade or I went to unstable instead. I want to move to stretch stable but I can't figure out how to check if I'm on stable.



also if I happen to be on stretch unstable is it possible to move to stable stretch?










share|improve this question






















  • How about cat /etc/os-releases?

    – Biswapriyo
    Mar 2 at 8:36













1












1








1








I'm currently running Debian 9.0 (stretch) which I upgraded from jessie. I upgraded long time ago and don't remember if I did a stable upgrade or I went to unstable instead. I want to move to stretch stable but I can't figure out how to check if I'm on stable.



also if I happen to be on stretch unstable is it possible to move to stable stretch?










share|improve this question














I'm currently running Debian 9.0 (stretch) which I upgraded from jessie. I upgraded long time ago and don't remember if I did a stable upgrade or I went to unstable instead. I want to move to stretch stable but I can't figure out how to check if I'm on stable.



also if I happen to be on stretch unstable is it possible to move to stable stretch?







debian






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 2 at 3:30









NahNah

82




82












  • How about cat /etc/os-releases?

    – Biswapriyo
    Mar 2 at 8:36

















  • How about cat /etc/os-releases?

    – Biswapriyo
    Mar 2 at 8:36
















How about cat /etc/os-releases?

– Biswapriyo
Mar 2 at 8:36





How about cat /etc/os-releases?

– Biswapriyo
Mar 2 at 8:36










1 Answer
1






active

oldest

votes


















2














Try lsb_release -a



guiverc@755-deb:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux buster/sid
Release: testing
Codename: buster


You'll note my debian is a 'testing' release, and thus not stable. Debian 9 (stretch) is the current stable release of debian.




The current stable distribution of Debian is version 9, codenamed
stretch. It was initially released as version 9 on June 17th, 2017 and
its latest update, version 9.8, was released on February 16th, 2019.
https://www.debian.org/releases/




On another box I get



guiverc@de2900:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 8.11 (jessie)
Release: 8.11
Codename: jessie


The 8.11 shows it's a stable release (could also be called an old-stable).






share|improve this answer























  • Mine just says || Distributor ID: Debian Description: Debian GNU/Linux 9.0 (stretch) Release: 9.0 Codename: stretch || does that mean its stable?

    – Nah
    Mar 2 at 4:30












  • I don't have a debian 9 box running/up, but I'd expect your box to respond 9.8 as it's the latest 9 being released on 16-Feb-2019 (debian.org). Have you sudo apt dist-upgrade ('upgrade' doesn't allow all upgrades to occur having restrictions requiring 'dist-upgrade' or 'full-upgrade'). Your answer replied a number release, so it is a stable release (just an outdated stretch as I see it).

    – guiverc
    Mar 2 at 4:33











  • yes it's outdated I haven't updated it in awhile. I wanted to upgrade but I didn't remember if was on unstable or not so I didn't want to risk an upgrade if I was on unstable. thanks!

    – Nah
    Mar 2 at 4:45











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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',
autoActivateHeartbeat: false,
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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f503913%2fhow-to-tell-if-im-on-debian-stable-or-unstable%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














Try lsb_release -a



guiverc@755-deb:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux buster/sid
Release: testing
Codename: buster


You'll note my debian is a 'testing' release, and thus not stable. Debian 9 (stretch) is the current stable release of debian.




The current stable distribution of Debian is version 9, codenamed
stretch. It was initially released as version 9 on June 17th, 2017 and
its latest update, version 9.8, was released on February 16th, 2019.
https://www.debian.org/releases/




On another box I get



guiverc@de2900:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 8.11 (jessie)
Release: 8.11
Codename: jessie


The 8.11 shows it's a stable release (could also be called an old-stable).






share|improve this answer























  • Mine just says || Distributor ID: Debian Description: Debian GNU/Linux 9.0 (stretch) Release: 9.0 Codename: stretch || does that mean its stable?

    – Nah
    Mar 2 at 4:30












  • I don't have a debian 9 box running/up, but I'd expect your box to respond 9.8 as it's the latest 9 being released on 16-Feb-2019 (debian.org). Have you sudo apt dist-upgrade ('upgrade' doesn't allow all upgrades to occur having restrictions requiring 'dist-upgrade' or 'full-upgrade'). Your answer replied a number release, so it is a stable release (just an outdated stretch as I see it).

    – guiverc
    Mar 2 at 4:33











  • yes it's outdated I haven't updated it in awhile. I wanted to upgrade but I didn't remember if was on unstable or not so I didn't want to risk an upgrade if I was on unstable. thanks!

    – Nah
    Mar 2 at 4:45















2














Try lsb_release -a



guiverc@755-deb:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux buster/sid
Release: testing
Codename: buster


You'll note my debian is a 'testing' release, and thus not stable. Debian 9 (stretch) is the current stable release of debian.




The current stable distribution of Debian is version 9, codenamed
stretch. It was initially released as version 9 on June 17th, 2017 and
its latest update, version 9.8, was released on February 16th, 2019.
https://www.debian.org/releases/




On another box I get



guiverc@de2900:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 8.11 (jessie)
Release: 8.11
Codename: jessie


The 8.11 shows it's a stable release (could also be called an old-stable).






share|improve this answer























  • Mine just says || Distributor ID: Debian Description: Debian GNU/Linux 9.0 (stretch) Release: 9.0 Codename: stretch || does that mean its stable?

    – Nah
    Mar 2 at 4:30












  • I don't have a debian 9 box running/up, but I'd expect your box to respond 9.8 as it's the latest 9 being released on 16-Feb-2019 (debian.org). Have you sudo apt dist-upgrade ('upgrade' doesn't allow all upgrades to occur having restrictions requiring 'dist-upgrade' or 'full-upgrade'). Your answer replied a number release, so it is a stable release (just an outdated stretch as I see it).

    – guiverc
    Mar 2 at 4:33











  • yes it's outdated I haven't updated it in awhile. I wanted to upgrade but I didn't remember if was on unstable or not so I didn't want to risk an upgrade if I was on unstable. thanks!

    – Nah
    Mar 2 at 4:45













2












2








2







Try lsb_release -a



guiverc@755-deb:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux buster/sid
Release: testing
Codename: buster


You'll note my debian is a 'testing' release, and thus not stable. Debian 9 (stretch) is the current stable release of debian.




The current stable distribution of Debian is version 9, codenamed
stretch. It was initially released as version 9 on June 17th, 2017 and
its latest update, version 9.8, was released on February 16th, 2019.
https://www.debian.org/releases/




On another box I get



guiverc@de2900:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 8.11 (jessie)
Release: 8.11
Codename: jessie


The 8.11 shows it's a stable release (could also be called an old-stable).






share|improve this answer













Try lsb_release -a



guiverc@755-deb:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux buster/sid
Release: testing
Codename: buster


You'll note my debian is a 'testing' release, and thus not stable. Debian 9 (stretch) is the current stable release of debian.




The current stable distribution of Debian is version 9, codenamed
stretch. It was initially released as version 9 on June 17th, 2017 and
its latest update, version 9.8, was released on February 16th, 2019.
https://www.debian.org/releases/




On another box I get



guiverc@de2900:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 8.11 (jessie)
Release: 8.11
Codename: jessie


The 8.11 shows it's a stable release (could also be called an old-stable).







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 2 at 4:21









guivercguiverc

23826




23826












  • Mine just says || Distributor ID: Debian Description: Debian GNU/Linux 9.0 (stretch) Release: 9.0 Codename: stretch || does that mean its stable?

    – Nah
    Mar 2 at 4:30












  • I don't have a debian 9 box running/up, but I'd expect your box to respond 9.8 as it's the latest 9 being released on 16-Feb-2019 (debian.org). Have you sudo apt dist-upgrade ('upgrade' doesn't allow all upgrades to occur having restrictions requiring 'dist-upgrade' or 'full-upgrade'). Your answer replied a number release, so it is a stable release (just an outdated stretch as I see it).

    – guiverc
    Mar 2 at 4:33











  • yes it's outdated I haven't updated it in awhile. I wanted to upgrade but I didn't remember if was on unstable or not so I didn't want to risk an upgrade if I was on unstable. thanks!

    – Nah
    Mar 2 at 4:45

















  • Mine just says || Distributor ID: Debian Description: Debian GNU/Linux 9.0 (stretch) Release: 9.0 Codename: stretch || does that mean its stable?

    – Nah
    Mar 2 at 4:30












  • I don't have a debian 9 box running/up, but I'd expect your box to respond 9.8 as it's the latest 9 being released on 16-Feb-2019 (debian.org). Have you sudo apt dist-upgrade ('upgrade' doesn't allow all upgrades to occur having restrictions requiring 'dist-upgrade' or 'full-upgrade'). Your answer replied a number release, so it is a stable release (just an outdated stretch as I see it).

    – guiverc
    Mar 2 at 4:33











  • yes it's outdated I haven't updated it in awhile. I wanted to upgrade but I didn't remember if was on unstable or not so I didn't want to risk an upgrade if I was on unstable. thanks!

    – Nah
    Mar 2 at 4:45
















Mine just says || Distributor ID: Debian Description: Debian GNU/Linux 9.0 (stretch) Release: 9.0 Codename: stretch || does that mean its stable?

– Nah
Mar 2 at 4:30






Mine just says || Distributor ID: Debian Description: Debian GNU/Linux 9.0 (stretch) Release: 9.0 Codename: stretch || does that mean its stable?

– Nah
Mar 2 at 4:30














I don't have a debian 9 box running/up, but I'd expect your box to respond 9.8 as it's the latest 9 being released on 16-Feb-2019 (debian.org). Have you sudo apt dist-upgrade ('upgrade' doesn't allow all upgrades to occur having restrictions requiring 'dist-upgrade' or 'full-upgrade'). Your answer replied a number release, so it is a stable release (just an outdated stretch as I see it).

– guiverc
Mar 2 at 4:33





I don't have a debian 9 box running/up, but I'd expect your box to respond 9.8 as it's the latest 9 being released on 16-Feb-2019 (debian.org). Have you sudo apt dist-upgrade ('upgrade' doesn't allow all upgrades to occur having restrictions requiring 'dist-upgrade' or 'full-upgrade'). Your answer replied a number release, so it is a stable release (just an outdated stretch as I see it).

– guiverc
Mar 2 at 4:33













yes it's outdated I haven't updated it in awhile. I wanted to upgrade but I didn't remember if was on unstable or not so I didn't want to risk an upgrade if I was on unstable. thanks!

– Nah
Mar 2 at 4:45





yes it's outdated I haven't updated it in awhile. I wanted to upgrade but I didn't remember if was on unstable or not so I didn't want to risk an upgrade if I was on unstable. thanks!

– Nah
Mar 2 at 4:45

















draft saved

draft discarded
















































Thanks for contributing an answer to Unix & Linux 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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f503913%2fhow-to-tell-if-im-on-debian-stable-or-unstable%23new-answer', 'question_page');

);

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






Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay