How can I find whether my Linux version is updated one?

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











up vote
1
down vote

favorite












I am using Linux mint with windows 10 in dual boot. For sometime now,I have been away from Linux boot. How can I verify whether my Linux is the latest one?







share|improve this question






















  • btw, if you don't want to reboot just to check you can run your linux partition as a VM, e.g. with virtualbox. see superuser.com/questions/392601/…
    – cas
    Jan 22 at 14:13














up vote
1
down vote

favorite












I am using Linux mint with windows 10 in dual boot. For sometime now,I have been away from Linux boot. How can I verify whether my Linux is the latest one?







share|improve this question






















  • btw, if you don't want to reboot just to check you can run your linux partition as a VM, e.g. with virtualbox. see superuser.com/questions/392601/…
    – cas
    Jan 22 at 14:13












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I am using Linux mint with windows 10 in dual boot. For sometime now,I have been away from Linux boot. How can I verify whether my Linux is the latest one?







share|improve this question














I am using Linux mint with windows 10 in dual boot. For sometime now,I have been away from Linux boot. How can I verify whether my Linux is the latest one?









share|improve this question













share|improve this question




share|improve this question








edited Jan 22 at 14:11









Jeff Schaller

31.7k847108




31.7k847108










asked Jan 22 at 13:51









Ehsa

1133




1133











  • btw, if you don't want to reboot just to check you can run your linux partition as a VM, e.g. with virtualbox. see superuser.com/questions/392601/…
    – cas
    Jan 22 at 14:13
















  • btw, if you don't want to reboot just to check you can run your linux partition as a VM, e.g. with virtualbox. see superuser.com/questions/392601/…
    – cas
    Jan 22 at 14:13















btw, if you don't want to reboot just to check you can run your linux partition as a VM, e.g. with virtualbox. see superuser.com/questions/392601/…
– cas
Jan 22 at 14:13




btw, if you don't want to reboot just to check you can run your linux partition as a VM, e.g. with virtualbox. see superuser.com/questions/392601/…
– cas
Jan 22 at 14:13










4 Answers
4






active

oldest

votes

















up vote
3
down vote













Run:



apt update; apt list --upgradable


as root.



This will



  1. Refresh the package database.

  2. List all packages that are candidates for upgrading.

If the list from 2) is empty, you're up-to-date.

If there are packages listed, you should consider upgrading those packages.






share|improve this answer





























    up vote
    2
    down vote













    If you mean a full upgrade to a new version of Mint:



    Try the mintupgrade tool. If it's not already installed on your Mint system, you'll need to install it, apt-get install mintupgrade.



    Then you can run mintupgrade check to see if any upgrades are available, and mintupgrade upgrade to perform the upgrade (if an upgrade is available).




    Otherwise, if you just mean updating the packages in your current Mint version to the latest packages for that version, it can be updated like Ubuntu, with apt-get update to refresh the packages available from the repos, and apt-get upgrade to install any upgrades that are available.






    share|improve this answer




















    • IMO this is the best rounded answer. +1
      – Rui F Ribeiro
      Jan 22 at 16:37

















    up vote
    2
    down vote













    The update manager will show up in your desktop environments task bar near the bottom right.



    enter image description here



    This will tell you the updatable packages for your current distro version and if there is a new version of the distro available.






    share|improve this answer



























      up vote
      0
      down vote













      You can check your kernel revision with uname -r. See your distro's release notes, etc to see if you are on the latest version.



      If you're expecting to be on the tip of mainline you can check the git branch at kernel.org to see if you are up to date.






      share|improve this answer




















        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',
        convertImagesToLinks: false,
        noModals: false,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: null,
        bindNavPrevention: true,
        postfix: "",
        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%2f418859%2fhow-can-i-find-whether-my-linux-version-is-updated-one%23new-answer', 'question_page');

        );

        Post as a guest






























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes








        up vote
        3
        down vote













        Run:



        apt update; apt list --upgradable


        as root.



        This will



        1. Refresh the package database.

        2. List all packages that are candidates for upgrading.

        If the list from 2) is empty, you're up-to-date.

        If there are packages listed, you should consider upgrading those packages.






        share|improve this answer


























          up vote
          3
          down vote













          Run:



          apt update; apt list --upgradable


          as root.



          This will



          1. Refresh the package database.

          2. List all packages that are candidates for upgrading.

          If the list from 2) is empty, you're up-to-date.

          If there are packages listed, you should consider upgrading those packages.






          share|improve this answer
























            up vote
            3
            down vote










            up vote
            3
            down vote









            Run:



            apt update; apt list --upgradable


            as root.



            This will



            1. Refresh the package database.

            2. List all packages that are candidates for upgrading.

            If the list from 2) is empty, you're up-to-date.

            If there are packages listed, you should consider upgrading those packages.






            share|improve this answer














            Run:



            apt update; apt list --upgradable


            as root.



            This will



            1. Refresh the package database.

            2. List all packages that are candidates for upgrading.

            If the list from 2) is empty, you're up-to-date.

            If there are packages listed, you should consider upgrading those packages.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 22 at 14:58

























            answered Jan 22 at 14:06









            Richard Neumann

            489211




            489211






















                up vote
                2
                down vote













                If you mean a full upgrade to a new version of Mint:



                Try the mintupgrade tool. If it's not already installed on your Mint system, you'll need to install it, apt-get install mintupgrade.



                Then you can run mintupgrade check to see if any upgrades are available, and mintupgrade upgrade to perform the upgrade (if an upgrade is available).




                Otherwise, if you just mean updating the packages in your current Mint version to the latest packages for that version, it can be updated like Ubuntu, with apt-get update to refresh the packages available from the repos, and apt-get upgrade to install any upgrades that are available.






                share|improve this answer




















                • IMO this is the best rounded answer. +1
                  – Rui F Ribeiro
                  Jan 22 at 16:37














                up vote
                2
                down vote













                If you mean a full upgrade to a new version of Mint:



                Try the mintupgrade tool. If it's not already installed on your Mint system, you'll need to install it, apt-get install mintupgrade.



                Then you can run mintupgrade check to see if any upgrades are available, and mintupgrade upgrade to perform the upgrade (if an upgrade is available).




                Otherwise, if you just mean updating the packages in your current Mint version to the latest packages for that version, it can be updated like Ubuntu, with apt-get update to refresh the packages available from the repos, and apt-get upgrade to install any upgrades that are available.






                share|improve this answer




















                • IMO this is the best rounded answer. +1
                  – Rui F Ribeiro
                  Jan 22 at 16:37












                up vote
                2
                down vote










                up vote
                2
                down vote









                If you mean a full upgrade to a new version of Mint:



                Try the mintupgrade tool. If it's not already installed on your Mint system, you'll need to install it, apt-get install mintupgrade.



                Then you can run mintupgrade check to see if any upgrades are available, and mintupgrade upgrade to perform the upgrade (if an upgrade is available).




                Otherwise, if you just mean updating the packages in your current Mint version to the latest packages for that version, it can be updated like Ubuntu, with apt-get update to refresh the packages available from the repos, and apt-get upgrade to install any upgrades that are available.






                share|improve this answer












                If you mean a full upgrade to a new version of Mint:



                Try the mintupgrade tool. If it's not already installed on your Mint system, you'll need to install it, apt-get install mintupgrade.



                Then you can run mintupgrade check to see if any upgrades are available, and mintupgrade upgrade to perform the upgrade (if an upgrade is available).




                Otherwise, if you just mean updating the packages in your current Mint version to the latest packages for that version, it can be updated like Ubuntu, with apt-get update to refresh the packages available from the repos, and apt-get upgrade to install any upgrades that are available.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 22 at 14:03









                Tim Kennedy

                13.4k22949




                13.4k22949











                • IMO this is the best rounded answer. +1
                  – Rui F Ribeiro
                  Jan 22 at 16:37
















                • IMO this is the best rounded answer. +1
                  – Rui F Ribeiro
                  Jan 22 at 16:37















                IMO this is the best rounded answer. +1
                – Rui F Ribeiro
                Jan 22 at 16:37




                IMO this is the best rounded answer. +1
                – Rui F Ribeiro
                Jan 22 at 16:37










                up vote
                2
                down vote













                The update manager will show up in your desktop environments task bar near the bottom right.



                enter image description here



                This will tell you the updatable packages for your current distro version and if there is a new version of the distro available.






                share|improve this answer
























                  up vote
                  2
                  down vote













                  The update manager will show up in your desktop environments task bar near the bottom right.



                  enter image description here



                  This will tell you the updatable packages for your current distro version and if there is a new version of the distro available.






                  share|improve this answer






















                    up vote
                    2
                    down vote










                    up vote
                    2
                    down vote









                    The update manager will show up in your desktop environments task bar near the bottom right.



                    enter image description here



                    This will tell you the updatable packages for your current distro version and if there is a new version of the distro available.






                    share|improve this answer












                    The update manager will show up in your desktop environments task bar near the bottom right.



                    enter image description here



                    This will tell you the updatable packages for your current distro version and if there is a new version of the distro available.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jan 22 at 14:07









                    jdwolf

                    2,392116




                    2,392116




















                        up vote
                        0
                        down vote













                        You can check your kernel revision with uname -r. See your distro's release notes, etc to see if you are on the latest version.



                        If you're expecting to be on the tip of mainline you can check the git branch at kernel.org to see if you are up to date.






                        share|improve this answer
























                          up vote
                          0
                          down vote













                          You can check your kernel revision with uname -r. See your distro's release notes, etc to see if you are on the latest version.



                          If you're expecting to be on the tip of mainline you can check the git branch at kernel.org to see if you are up to date.






                          share|improve this answer






















                            up vote
                            0
                            down vote










                            up vote
                            0
                            down vote









                            You can check your kernel revision with uname -r. See your distro's release notes, etc to see if you are on the latest version.



                            If you're expecting to be on the tip of mainline you can check the git branch at kernel.org to see if you are up to date.






                            share|improve this answer












                            You can check your kernel revision with uname -r. See your distro's release notes, etc to see if you are on the latest version.



                            If you're expecting to be on the tip of mainline you can check the git branch at kernel.org to see if you are up to date.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 22 at 14:03









                            imbuedHope

                            1968




                            1968






















                                 

                                draft saved


                                draft discarded


























                                 


                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f418859%2fhow-can-i-find-whether-my-linux-version-is-updated-one%23new-answer', 'question_page');

                                );

                                Post as a guest













































































                                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