Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22

Thread: software index broken

  1. #11
    Join Date
    Nov 2005
    Location
    NEK Vermont
    Beans
    Hidden!
    Distro
    Ubuntu UNR

    Re: software index broken

    Quote Originally Posted by Oldsoldier2003 View Post
    Code:
    sudo dpkg --configure -a
    sudo apt-get install -f

  2. #12
    Join Date
    Nov 2007
    Beans
    813

    Re: software index broken

    wer@wer-laptop:~$ sudo dpkg --configure -a
    wer@wer-laptop:~$ sudo apt-get install -f
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    The following packages will be REMOVED
    soundconverter
    0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
    1 not fully installed or removed.
    Need to get 0B of archives.
    After unpacking 438kB disk space will be freed.
    Do you want to continue [Y/n]? y
    (Reading database ... 112468 files and directories currently installed.)
    Removing soundconverter ...

    (update-desktop-database:7162): GLib-CRITICAL **: g_key_file_get_string_list: assertion `group_name != NULL' failed
    Segmentation fault (core dumped)
    dpkg: error processing soundconverter (--remove):
    subprocess post-removal script returned error exit status 139
    Errors were encountered while processing:
    soundconverter
    E: Sub-process /usr/bin/dpkg returned an error code (1)
    wer@wer-laptop:~$

  3. #13
    Join Date
    Nov 2005
    Location
    NEK Vermont
    Beans
    Hidden!
    Distro
    Ubuntu UNR

    Re: software index broken

    looks like you need to
    Code:
    sudo apt-get remove soundconverter
    based on the error message.

  4. #14
    Join Date
    Nov 2007
    Beans
    813

    Re: software index broken

    wer@wer-laptop:~$ sudo apt-get remove soundconverter
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    The following packages will be REMOVED
    soundconverter
    0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
    1 not fully installed or removed.
    Need to get 0B of archives.
    After unpacking 438kB disk space will be freed.
    Do you want to continue [Y/n]? y
    (Reading database ... 112468 files and directories currently installed.)
    Removing soundconverter ...

    (update-desktop-database:7244): GLib-CRITICAL **: g_key_file_get_string_list: assertion `group_name != NULL' failed
    Segmentation fault (core dumped)
    dpkg: error processing soundconverter (--remove):
    subprocess post-removal script returned error exit status 139
    Errors were encountered while processing:
    soundconverter
    E: Sub-process /usr/bin/dpkg returned an error code (1)

  5. #15
    Join Date
    Nov 2005
    Location
    NEK Vermont
    Beans
    Hidden!
    Distro
    Ubuntu UNR

    Re: software index broken

    sorry about that. I see that was your first post. Maybe try with --purge option instead of remove.
    Code:
    sudo apt-get --purge soundconverter
    Was soundconverter installed as part of another package? Is there another package that needs to be uninstalled?

  6. #16
    Join Date
    Nov 2007
    Beans
    813

    Re: software index broken

    Nope sound converter was just installed the normal way through add/remove applications. thanks for your time trying to help me with this

    wer@wer-laptop:~$ sudo apt-get --purge soundconverter
    E: Invalid operation soundconverter

  7. #17
    Join Date
    Jan 2008
    Location
    /dev/null
    Beans
    2,793
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: software index broken

    well here is something you can try:
    first clear your apt cache
    Code:
    sudo apt-get clean
    the go to /var/lib/dpkg/info and remove anything thats got soundconverter in its name
    Code:
    sudo apt-get install -f
    sudo apt-get update
    sudo apt-get upgrade
    and if all your errors are cleared up you can move on to business.

  8. #18
    Join Date
    Nov 2007
    Beans
    813

    Re: software index broken

    I found 4 files with sound converter in the name, but i get this message when trying to delete them

    "/var/lib/dpk...rter.postrm" cannot be moved because you do not have permissions to change it or its parent folder.

  9. #19
    Join Date
    Jan 2008
    Location
    /dev/null
    Beans
    2,793
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: software index broken

    Quote Originally Posted by Falc7 View Post
    I found 4 files with sound converter in the name, but i get this message when trying to delete them

    "/var/lib/dpk...rter.postrm" cannot be moved because you do not have permissions to change it or its parent folder.
    sorry i should have been more explicit. If you would rather use the Gui to delete the files and are using Ubuntu type
    Code:
    gksu nautilus
    to launch nautilus as root/superuser. you will then be able to delete the files.

    If you are doing it by command line just

    Code:
    cd /var/lib/dpkg/info
    sudo rm <filename>
    inserting the correct filename in place of <filename>

  10. #20
    Join Date
    Nov 2005
    Location
    NEK Vermont
    Beans
    Hidden!
    Distro
    Ubuntu UNR

    Re: software index broken

    You need to be superuser. You can use
    Code:
    gksu nautilus
    to graphically move files in the root file system, but be very careful. You can break your system removing the wrong files.

Page 2 of 3 FirstFirst 123 LastLast

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
  •