Announcement

Collapse
No announcement yet.

How to downgrade packages (forcing version)

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to downgrade packages (forcing version)

    Links to:

    Topic: Programs will not start
    http://kubuntuforums.net/forums/inde...opic=3090538.0

    Topic: VLC won't start
    http://kubuntuforums.net/forums/inde...opic=3090544.0


    With Synaptic package manager

    Choose package (xserver-xorg-core), Package > Force version, choose version, click "Force version". click "Apply"


    With Apt package manager

    Searching packages

    Code:
    apt-cache show xserver-xorg-core
    tells that there are:
    xserver-xorg-core_1.3.0.0.dfsg-12ubuntu8.1_i386.deb Version: 2:1.3.0.0.dfsg-12ubuntu8.1
    xserver-xorg-core_1.3.0.0.dfsg-12ubuntu8_i386.deb Version: 2:1.3.0.0.dfsg-12ubuntu8
    Downgrading (forcing version)

    Syntax is: apt-get install $package=version
    so:
    Code:
    sudo apt-get install xserver-xorg-core=2:1.3.0.0.dfsg-12ubuntu8

    Links:

    FAQ: Package Managers
    http://kubuntuforums.net/forums/inde...opic=3092288.0

    Synaptic Home
    http://www.nongnu.org/synaptic/

    Synaptic Package Manager
    http://www.nongnu.org/synaptic/

    Debian basics
    http://wiki.grml.org/doku.php?id=debian

    APT HOWTO
    http://www.debian.org/doc/manuals/ap.../index.en.html

    Pinning version
    http://kubuntuforums.net/forums/inde...9271#msg109271
    Before you edit, BACKUP !

    Why there are dead links ?
    1. Thread: Please explain how to access old kubuntu forum posts
    2. Thread: Lost Information

    #2
    Re: How to downgrade packages (forcing version)

    Nice -- thanks Rog!

    Comment


      #3
      Re: How to downgrade packages (forcing version)

      Nice info!!

      I do have to ask because I have seen a few posts here and there that a recent X update causes problems. What problems is it causing?

      Comment


        #4
        Re: How to downgrade packages (forcing version)

        recent X update causes problems. What problems is it causing?
        Certain programs (VLC, Boinc Manager, Filezilla...) don't work with xserver-xorg-core version: 2:1.3.0.0.dfsg-12ubuntu8.1.

        With VLC (starting in the konsole) the error message was:
        The program '.' received an X Window System error.
        This probably reflects a bug in the program.
        The error was 'BadAlloc (insufficient resources for operation)'.
        (Details: serial 676 error_code 11 request_code 149 minor_code 5)
        (Note to programmers: normally, X errors are reported asynchronously;
        that is, you will receive the error a while after causing it.
        To debug your program, run it with the --sync command line
        option to change this behavior. You can then get a meaningful
        backtrace from your debugger if you break on the gdk_x_error() function.)

        Bugs in xorg-server in ubuntu
        https://launchpad.net/ubuntu/+source/xorg-server/+bugs

        =>
        xserver-xorg-core update breaks java & wxwidgets apps
        https://bugs.launchpad.net/ubuntu/+s...er/+bug/183969


        Changelog for xorg-server


        Note
        The latest xserver-xorg-core version is 2:1.3.0.0.dfsg-12ubuntu8.3. Trying... Seems to work (no errors with VLC). That was quick fix.
        Before you edit, BACKUP !

        Why there are dead links ?
        1. Thread: Please explain how to access old kubuntu forum posts
        2. Thread: Lost Information

        Comment


          #5
          Re: How to downgrade packages (forcing version)

          One can 'clean up' the resulting output from apt-cache show package and have just the version info you are looking for with this minor modification of the command:
          apt-cache show package | grep Version:
          Using Kubuntu Linux since March 23, 2007
          "It is a capital mistake to theorize before one has data." - Sherlock Holmes

          Comment

          Working...
          X