Results 1 to 5 of 5

Thread: How can I undo updates in Lubuntu

  1. #1
    Join Date
    May 2013
    Beans
    13

    How can I undo updates in Lubuntu

    yesterdag I installed an automatic update, including an update of flashplayer.
    This morning I discovered that Flash plugin crashes 'all the time'.
    I therefor would like to undo the update regarding flashplayer.

    How can I do that?

  2. #2
    Join Date
    Feb 2012
    Location
    Athens/Greece
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: How can I undo updates in Lubuntu

    You can ls (list) all the previous versions inside apt cache. (if any)

    Code:
    ls /var/cache/apt/archives | grep -i flash
    if you see the older version of flash player there .. you can connect to that directory and install it.. FIRST remove the current version.

    Code:
    cd /var/cache/apt/archives/ 
    sudo apt-get purge adobe-* 
    sudo dpkg -i adobe-flashplugin_........deb
    If things goes good and flash plugin not crash anymore, then you can hold the package from being updated in future.

    Code:
    echo "adobe-flashplugin" hold | sudo dpkg --set-selections
    Thanks

  3. #3
    Join Date
    May 2013
    Beans
    13

    Re: How can I undo updates in Lubuntu

    Thanks NikTh,
    it works again and now I hold the package from being updated. Hope also this works.

  4. #4
    Join Date
    Feb 2012
    Location
    Athens/Greece
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: How can I undo updates in Lubuntu

    Please mark the thread as solved (see my signature on how to)

    Thanks

  5. #5
    Join Date
    May 2013
    Beans
    13

    Re: How can I undo updates in Lubuntu

    hi NikTh,
    I tried that before, but when i open Thread tools there is no option 'mark this thread as solved', as in your signature.
    It only shows: View First Unread

    Thread Tools


Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •