Is there an Ubuntu update log?
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
add a comment |
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
1
Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages
– Zanna
Aug 22 '17 at 20:07
add a comment |
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
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
updates log
edited Jan 15 at 7:04
Zanna
50.8k13136241
50.8k13136241
asked Aug 21 '17 at 16:01
NomadsoulNomadsoul
2314
2314
1
Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages
– Zanna
Aug 22 '17 at 20:07
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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
add a comment |
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.
add a comment |
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
});
}
});
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%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
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
add a comment |
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
add a comment |
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
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
edited Aug 21 '17 at 17:01
answered Aug 21 '17 at 16:48
Elder GeekElder Geek
27.2k954127
27.2k954127
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited Aug 21 '17 at 20:35
dessert
24.1k670104
24.1k670104
answered Aug 21 '17 at 16:25
Aaron SAaron S
211
211
add a comment |
add a comment |
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.
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%2faskubuntu.com%2fquestions%2f948391%2fis-there-an-ubuntu-update-log%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
1
Possible duplicate of Seeing apt-get changelogs for to-be-upgraded packages
– Zanna
Aug 22 '17 at 20:07