Results 1 to 10 of 12

Thread: my synaptic pckage manager is broke i think???

Hybrid View

  1. #1
    Join Date
    Dec 2007
    Location
    /home
    Beans
    483

    Re: my synaptic pckage manager is broke i think???

    sure looks ugly!

    in terminal, type:

    Code:
    cd /var/lib/apt
    and then

    Code:
    ls -a
    see if ti comes back with an "extended_states" file, or with "extended_states.bak"


    if you do have one, try renaming it

    Code:
    sudo mv extended_states extended_states_two
    apt should create a new one, so just try installing anything, or updating:

    Code:
    sudo apt-get update
    if it doesn't, try creating one yourself. run:

    Code:
    touch extended_states
    you may also need to change ownership

    Code:
    sudo chown root.root extended_states
    and give yourself read permission

    Code:
    sudo chmod a+r extended_states
    then try

    Code:
    sudo apt-get update
    Don't eff with The Cult...

  2. #2
    Join Date
    Nov 2008
    Beans
    Hidden!

    Re: my synaptic pckage manager is broke i think???

    is extended_states part of dpkg package?
    Last edited by jerrrys; August 18th, 2011 at 05:18 PM.

  3. #3
    Join Date
    Dec 2007
    Location
    /home
    Beans
    483

    Re: my synaptic pckage manager is broke i think???

    Quote Originally Posted by jerrrys View Post
    is extended_states part of dpkg package?
    apparently, it is.

    it may also help to run

    Code:
    sudo dpkg --configure -a
    and

    Code:
    sudo apt-get -f install
    Don't eff with The Cult...

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
  •