Is there an Ubuntu update log?












4















I'm running Ubuntu and do my regular updates and I wanted to know where can I view a log of what has been changed/updated/fixed with each update.










share|improve this question




















  • 1





    Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages

    – Zanna
    Aug 22 '17 at 20:07
















4















I'm running Ubuntu and do my regular updates and I wanted to know where can I view a log of what has been changed/updated/fixed with each update.










share|improve this question




















  • 1





    Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages

    – Zanna
    Aug 22 '17 at 20:07














4












4








4








I'm running Ubuntu and do my regular updates and I wanted to know where can I view a log of what has been changed/updated/fixed with each update.










share|improve this question
















I'm running Ubuntu and do my regular updates and I wanted to know where can I view a log of what has been changed/updated/fixed with each update.







updates log






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 21 hours ago









Zanna

50.4k13133241




50.4k13133241










asked Aug 21 '17 at 16:01









NomadsoulNomadsoul

234




234








  • 1





    Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages

    – Zanna
    Aug 22 '17 at 20:07














  • 1





    Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages

    – Zanna
    Aug 22 '17 at 20:07








1




1





Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages

– Zanna
Aug 22 '17 at 20:07





Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages

– Zanna
Aug 22 '17 at 20:07










2 Answers
2






active

oldest

votes


















3














One way would be to obtain a time-stamped list by opening a terminal with CtrlAltT and issuing the command more /var/log/dpkg.log This will give you more information than you are currently asking for. You can narrow the results considerably using grep for example this command shows packages installed/upgraded on my system as of todays date:



grep "2017-08-21" /var/log/dpkg.log | grep "status installed"



2017-08-21 11:44:41 status installed man-db:amd64 2.6.7.1-1ubuntu1
2017-08-21 11:44:41 status installed doc-base:all 0.10.5
2017-08-21 11:44:41 status installed install-info:amd64 5.2.0.dfsg.1-2
2017-08-21 11:44:41 status installed desktop-file-utils:amd64 0.22-1ubuntu1.1
2017-08-21 11:44:41 status installed mime-support:all 3.54ubuntu1.1
2017-08-21 11:44:41 status installed gnome-menus:amd64 3.10.1-0ubuntu2
2017-08-21 11:44:42 status installed bamfdaemon:amd64 0.5.1+14.04.20140409-0ubuntu1
2017-08-21 11:44:42 status installed hicolor-icon-theme:all 0.13-1
2017-08-21 11:44:42 status installed libgraphite2-3:amd64 1.3.10-0ubuntu0.14.04.1
2017-08-21 11:44:42 status installed logrotate:amd64 3.8.7-1ubuntu1.2
2017-08-21 11:44:42 status installed augeas-lenses:all 1.2.0-0ubuntu1.3
2017-08-21 11:44:42 status installed cvs:amd64 2:1.12.13+real-12ubuntu0.1
2017-08-21 11:44:42 status installed landscape-client-ui-install:amd64 14.12-0ubuntu6.14.04
2017-08-21 11:44:43 status installed libaugeas0:amd64 1.2.0-0ubuntu1.3
2017-08-21 11:44:43 status installed libc-bin:amd64 2.19-0ubuntu6.13


If you want to examine the changelog for a specific package that you have installed you can obtain that information with the command sudo apt-get changelog packagename where packagename is the name of the package.



Example:



sudo apt-get changelog logrotate will provide the change log for the package logrotate






share|improve this answer

































    2














    I think this might help point you in the right direction.



    sudo apt list --upgradable


    It will list all the available upgrades. I know it isn't a changelog, but it will point you to the program version you are going to if you run the upgrade. From there the developer should have a changelog available.



    It is clunky but should get you the info.






    share|improve this answer

























      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "89"
      };
      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: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      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%2faskubuntu.com%2fquestions%2f948391%2fis-there-an-ubuntu-update-log%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      3














      One way would be to obtain a time-stamped list by opening a terminal with CtrlAltT and issuing the command more /var/log/dpkg.log This will give you more information than you are currently asking for. You can narrow the results considerably using grep for example this command shows packages installed/upgraded on my system as of todays date:



      grep "2017-08-21" /var/log/dpkg.log | grep "status installed"



      2017-08-21 11:44:41 status installed man-db:amd64 2.6.7.1-1ubuntu1
      2017-08-21 11:44:41 status installed doc-base:all 0.10.5
      2017-08-21 11:44:41 status installed install-info:amd64 5.2.0.dfsg.1-2
      2017-08-21 11:44:41 status installed desktop-file-utils:amd64 0.22-1ubuntu1.1
      2017-08-21 11:44:41 status installed mime-support:all 3.54ubuntu1.1
      2017-08-21 11:44:41 status installed gnome-menus:amd64 3.10.1-0ubuntu2
      2017-08-21 11:44:42 status installed bamfdaemon:amd64 0.5.1+14.04.20140409-0ubuntu1
      2017-08-21 11:44:42 status installed hicolor-icon-theme:all 0.13-1
      2017-08-21 11:44:42 status installed libgraphite2-3:amd64 1.3.10-0ubuntu0.14.04.1
      2017-08-21 11:44:42 status installed logrotate:amd64 3.8.7-1ubuntu1.2
      2017-08-21 11:44:42 status installed augeas-lenses:all 1.2.0-0ubuntu1.3
      2017-08-21 11:44:42 status installed cvs:amd64 2:1.12.13+real-12ubuntu0.1
      2017-08-21 11:44:42 status installed landscape-client-ui-install:amd64 14.12-0ubuntu6.14.04
      2017-08-21 11:44:43 status installed libaugeas0:amd64 1.2.0-0ubuntu1.3
      2017-08-21 11:44:43 status installed libc-bin:amd64 2.19-0ubuntu6.13


      If you want to examine the changelog for a specific package that you have installed you can obtain that information with the command sudo apt-get changelog packagename where packagename is the name of the package.



      Example:



      sudo apt-get changelog logrotate will provide the change log for the package logrotate






      share|improve this answer






























        3














        One way would be to obtain a time-stamped list by opening a terminal with CtrlAltT and issuing the command more /var/log/dpkg.log This will give you more information than you are currently asking for. You can narrow the results considerably using grep for example this command shows packages installed/upgraded on my system as of todays date:



        grep "2017-08-21" /var/log/dpkg.log | grep "status installed"



        2017-08-21 11:44:41 status installed man-db:amd64 2.6.7.1-1ubuntu1
        2017-08-21 11:44:41 status installed doc-base:all 0.10.5
        2017-08-21 11:44:41 status installed install-info:amd64 5.2.0.dfsg.1-2
        2017-08-21 11:44:41 status installed desktop-file-utils:amd64 0.22-1ubuntu1.1
        2017-08-21 11:44:41 status installed mime-support:all 3.54ubuntu1.1
        2017-08-21 11:44:41 status installed gnome-menus:amd64 3.10.1-0ubuntu2
        2017-08-21 11:44:42 status installed bamfdaemon:amd64 0.5.1+14.04.20140409-0ubuntu1
        2017-08-21 11:44:42 status installed hicolor-icon-theme:all 0.13-1
        2017-08-21 11:44:42 status installed libgraphite2-3:amd64 1.3.10-0ubuntu0.14.04.1
        2017-08-21 11:44:42 status installed logrotate:amd64 3.8.7-1ubuntu1.2
        2017-08-21 11:44:42 status installed augeas-lenses:all 1.2.0-0ubuntu1.3
        2017-08-21 11:44:42 status installed cvs:amd64 2:1.12.13+real-12ubuntu0.1
        2017-08-21 11:44:42 status installed landscape-client-ui-install:amd64 14.12-0ubuntu6.14.04
        2017-08-21 11:44:43 status installed libaugeas0:amd64 1.2.0-0ubuntu1.3
        2017-08-21 11:44:43 status installed libc-bin:amd64 2.19-0ubuntu6.13


        If you want to examine the changelog for a specific package that you have installed you can obtain that information with the command sudo apt-get changelog packagename where packagename is the name of the package.



        Example:



        sudo apt-get changelog logrotate will provide the change log for the package logrotate






        share|improve this answer




























          3












          3








          3







          One way would be to obtain a time-stamped list by opening a terminal with CtrlAltT and issuing the command more /var/log/dpkg.log This will give you more information than you are currently asking for. You can narrow the results considerably using grep for example this command shows packages installed/upgraded on my system as of todays date:



          grep "2017-08-21" /var/log/dpkg.log | grep "status installed"



          2017-08-21 11:44:41 status installed man-db:amd64 2.6.7.1-1ubuntu1
          2017-08-21 11:44:41 status installed doc-base:all 0.10.5
          2017-08-21 11:44:41 status installed install-info:amd64 5.2.0.dfsg.1-2
          2017-08-21 11:44:41 status installed desktop-file-utils:amd64 0.22-1ubuntu1.1
          2017-08-21 11:44:41 status installed mime-support:all 3.54ubuntu1.1
          2017-08-21 11:44:41 status installed gnome-menus:amd64 3.10.1-0ubuntu2
          2017-08-21 11:44:42 status installed bamfdaemon:amd64 0.5.1+14.04.20140409-0ubuntu1
          2017-08-21 11:44:42 status installed hicolor-icon-theme:all 0.13-1
          2017-08-21 11:44:42 status installed libgraphite2-3:amd64 1.3.10-0ubuntu0.14.04.1
          2017-08-21 11:44:42 status installed logrotate:amd64 3.8.7-1ubuntu1.2
          2017-08-21 11:44:42 status installed augeas-lenses:all 1.2.0-0ubuntu1.3
          2017-08-21 11:44:42 status installed cvs:amd64 2:1.12.13+real-12ubuntu0.1
          2017-08-21 11:44:42 status installed landscape-client-ui-install:amd64 14.12-0ubuntu6.14.04
          2017-08-21 11:44:43 status installed libaugeas0:amd64 1.2.0-0ubuntu1.3
          2017-08-21 11:44:43 status installed libc-bin:amd64 2.19-0ubuntu6.13


          If you want to examine the changelog for a specific package that you have installed you can obtain that information with the command sudo apt-get changelog packagename where packagename is the name of the package.



          Example:



          sudo apt-get changelog logrotate will provide the change log for the package logrotate






          share|improve this answer















          One way would be to obtain a time-stamped list by opening a terminal with CtrlAltT and issuing the command more /var/log/dpkg.log This will give you more information than you are currently asking for. You can narrow the results considerably using grep for example this command shows packages installed/upgraded on my system as of todays date:



          grep "2017-08-21" /var/log/dpkg.log | grep "status installed"



          2017-08-21 11:44:41 status installed man-db:amd64 2.6.7.1-1ubuntu1
          2017-08-21 11:44:41 status installed doc-base:all 0.10.5
          2017-08-21 11:44:41 status installed install-info:amd64 5.2.0.dfsg.1-2
          2017-08-21 11:44:41 status installed desktop-file-utils:amd64 0.22-1ubuntu1.1
          2017-08-21 11:44:41 status installed mime-support:all 3.54ubuntu1.1
          2017-08-21 11:44:41 status installed gnome-menus:amd64 3.10.1-0ubuntu2
          2017-08-21 11:44:42 status installed bamfdaemon:amd64 0.5.1+14.04.20140409-0ubuntu1
          2017-08-21 11:44:42 status installed hicolor-icon-theme:all 0.13-1
          2017-08-21 11:44:42 status installed libgraphite2-3:amd64 1.3.10-0ubuntu0.14.04.1
          2017-08-21 11:44:42 status installed logrotate:amd64 3.8.7-1ubuntu1.2
          2017-08-21 11:44:42 status installed augeas-lenses:all 1.2.0-0ubuntu1.3
          2017-08-21 11:44:42 status installed cvs:amd64 2:1.12.13+real-12ubuntu0.1
          2017-08-21 11:44:42 status installed landscape-client-ui-install:amd64 14.12-0ubuntu6.14.04
          2017-08-21 11:44:43 status installed libaugeas0:amd64 1.2.0-0ubuntu1.3
          2017-08-21 11:44:43 status installed libc-bin:amd64 2.19-0ubuntu6.13


          If you want to examine the changelog for a specific package that you have installed you can obtain that information with the command sudo apt-get changelog packagename where packagename is the name of the package.



          Example:



          sudo apt-get changelog logrotate will provide the change log for the package logrotate







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Aug 21 '17 at 17:01

























          answered Aug 21 '17 at 16:48









          Elder GeekElder Geek

          26.5k952126




          26.5k952126

























              2














              I think this might help point you in the right direction.



              sudo apt list --upgradable


              It will list all the available upgrades. I know it isn't a changelog, but it will point you to the program version you are going to if you run the upgrade. From there the developer should have a changelog available.



              It is clunky but should get you the info.






              share|improve this answer






























                2














                I think this might help point you in the right direction.



                sudo apt list --upgradable


                It will list all the available upgrades. I know it isn't a changelog, but it will point you to the program version you are going to if you run the upgrade. From there the developer should have a changelog available.



                It is clunky but should get you the info.






                share|improve this answer




























                  2












                  2








                  2







                  I think this might help point you in the right direction.



                  sudo apt list --upgradable


                  It will list all the available upgrades. I know it isn't a changelog, but it will point you to the program version you are going to if you run the upgrade. From there the developer should have a changelog available.



                  It is clunky but should get you the info.






                  share|improve this answer















                  I think this might help point you in the right direction.



                  sudo apt list --upgradable


                  It will list all the available upgrades. I know it isn't a changelog, but it will point you to the program version you are going to if you run the upgrade. From there the developer should have a changelog available.



                  It is clunky but should get you the info.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Aug 21 '17 at 20:35









                  dessert

                  22.4k56198




                  22.4k56198










                  answered Aug 21 '17 at 16:25









                  Aaron SAaron S

                  211




                  211






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Ask Ubuntu!


                      • 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%2faskubuntu.com%2fquestions%2f948391%2fis-there-an-ubuntu-update-log%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

                      GameSpot

                      connect to host localhost port 22: Connection refused

                      Getting a Wifi WPA2 wifi connection