Update Manager

Quick to answer questions about finding your way around Linux Mint as a new user.
Forum rules
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions use the other forums in the support section.
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
Woods
Level 1
Level 1
Posts: 18
Joined: Fri Jun 19, 2015 12:47 pm

Update Manager

Post by Woods »

Is there a way to copy the info on History of updates window on Update Manager to a .csv file or directly to an LibreOffice spreadsheet?

It's just that it is too time consuming to write them down manually on calc (and it is my little ocd playing here).
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
User avatar
jimallyn
Level 19
Level 19
Posts: 9075
Joined: Thu Jun 05, 2014 7:34 pm
Location: Wenatchee, WA USA

Re: Update Manager

Post by jimallyn »

Menu, Administration, Backup Tool, Backup software selection will give you a list of everything installed, but not a chronological history of when it was installed.
“If the government were coming for your TVs and cars, then you'd be upset. But, as it is, they're only coming for your sons.” - Daniel Berrigan
WharfRat

Re: Update Manager

Post by WharfRat »

Woods wrote:Is there a way to copy the info on History of updates window on Update Manager to a .csv file or directly to an LibreOffice spreadsheet?

It's just that it is too time consuming to write them down manually on calc (and it is my little ocd playing here).
Or open the terminal and enter

Code: Select all

egrep -w 'upgrade|install' /var/log/ dpkg.log


:wink:
Woods
Level 1
Level 1
Posts: 18
Joined: Fri Jun 19, 2015 12:47 pm

Re: Update Manager

Post by Woods »

It's a cool thing, but I still hope to find what I am looking for. Thanks! :)
Woods
Level 1
Level 1
Posts: 18
Joined: Fri Jun 19, 2015 12:47 pm

Re: Update Manager

Post by Woods »

WharfRat wrote: Or open the terminal and enter

Code: Select all

egrep -w 'upgrade|install' /var/log/ dpkg.log


:wink:
I get this:

Code: Select all

egrep: /var/log/: Is a directory
egrep: dpkg.log: No such file or directory
Should I say I am on Mint 17.2 MATE? It is said. :wink:
User avatar
all41
Level 19
Level 19
Posts: 9523
Joined: Tue Dec 31, 2013 9:12 am
Location: Computer, Car, Cage

Re: Update Manager

Post by all41 »

try:

Code: Select all

    egrep -w 'upgrade|install' /var/log/dpkg.log
Everything in life was difficult before it became easy.
WharfRat

Re: Update Manager

Post by WharfRat »

all41 wrote:try:

Code: Select all

    egrep -w 'upgrade|install' /var/log/dpkg.log
OOPS :oops:
Woods
Level 1
Level 1
Posts: 18
Joined: Fri Jun 19, 2015 12:47 pm

Re: Update Manager

Post by Woods »

all41 wrote:try:

Code: Select all

    egrep -w 'upgrade|install' /var/log/dpkg.log
Nice, this is cool! Now, is there a way to script this into a csv file?
WharfRat

Re: Update Manager

Post by WharfRat »

Woods wrote:
all41 wrote:try:

Code: Select all

    egrep -w 'upgrade|install' /var/log/dpkg.log
Nice, this is cool! Now, is there a way to script this into a csv file?

Code: Select all

egrep -w 'upgrade|install' /var/log/dpkg.log|sed 's/ /,/g'>~/dpkg_log.csv
I imported it into libreoffice calc.

No typo error this time :wink:
Woods
Level 1
Level 1
Posts: 18
Joined: Fri Jun 19, 2015 12:47 pm

Re: Update Manager

Post by Woods »

This is great, many thanks!
:D :D
User avatar
all41
Level 19
Level 19
Posts: 9523
Joined: Tue Dec 31, 2013 9:12 am
Location: Computer, Car, Cage

Re: Update Manager

Post by all41 »

WharfRat wrote:
Woods wrote:
all41 wrote:try:

Code: Select all

    egrep -w 'upgrade|install' /var/log/dpkg.log
Nice, this is cool! Now, is there a way to script this into a csv file?

Code: Select all

egrep -w 'upgrade|install' /var/log/dpkg.log|sed 's/ /,/g'>~/dpkg_log.csv
I imported it into libreoffice calc.

No typo error this time :wink:
8) Very nice :!:
Everything in life was difficult before it became easy.
Locked

Return to “Beginner Questions”