The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Need some help...

    Discussion in 'Linux Compatibility and Software' started by naticus, Apr 26, 2011.

  1. naticus

    naticus Notebook Deity

    Reputations:
    630
    Messages:
    1,767
    Likes Received:
    0
    Trophy Points:
    55
    For some reason I am getting updates, and well for the most part, the entire KDE libs and dependencies. The funny thing is that I run Xubuntu + XFCE 4.8. I don't run any KDE sessions nor do I have any KDE based apps either.

    Question: What may have caused this? How to fix?

    [​IMG]

    Almost ALL the updates are for KDE.....hmmmm.
     
  2. theZoid

    theZoid Notebook Savant

    Reputations:
    1,338
    Messages:
    5,202
    Likes Received:
    22
    Trophy Points:
    206
    Looks like you've installed 'something' that brought in the KDE core packages, and now it's found updates.
     
  3. chenxiaolong

    chenxiaolong Notebook Geek

    Reputations:
    54
    Messages:
    82
    Likes Received:
    0
    Trophy Points:
    15
    Could you run these commands in a terminal?

    Code:
    dpkg -l | grep "^ii" | sed -e 's/ii  //g' -e 's/ .*$//g' | xargs echo > /tmp/package_list.txt
    for i in `cat /tmp/package_list.txt`; do apt-cache show $i; done > /tmp/package_info.txt
    apt-get -s dist-upgrade > /tmp/upgrade_simulation.txt
    The first command will save a list of all the packages you have installed to /tmp/package_list.txt. The second command will print information about all the packages (dependencies, etc.) to /tmp/package_info.txt. The final command will simulate an upgrade without actually perferming in.

    Can you attach the 3 files created by those commands? They are:

     
  4. naticus

    naticus Notebook Deity

    Reputations:
    630
    Messages:
    1,767
    Likes Received:
    0
    Trophy Points:
    55
    Yeah I assumed that, but I have no idea what it is. I wonder if I can
    sudo apt-get autoremove ( any KDE dependent app/lib), or similar command?
     
  5. naticus

    naticus Notebook Deity

    Reputations:
    630
    Messages:
    1,767
    Likes Received:
    0
    Trophy Points:
    55
    Here are the .txt files.

    package_info.txt - download now for free. File sharing. Software file sharing. Free file hosting. File upload. FileFactory.com

    package_list.txt - download now for free. File sharing. Software file sharing. Free file hosting. File upload. FileFactory.com

    upgrade_simulation.txt - download now for free. File sharing. Software file sharing. Free file hosting. File upload. FileFactory.com
     
  6. chenxiaolong

    chenxiaolong Notebook Geek

    Reputations:
    54
    Messages:
    82
    Likes Received:
    0
    Trophy Points:
    15
    Found the problem!

    When you installed LibreOffice, you installed the KDE integration package, therefore pulling in the needed dependencies. The package is libobasis3.3-kde-integration.

    So the packages you need to remove are (you can deselect them in Synaptic):

     
  7. naticus

    naticus Notebook Deity

    Reputations:
    630
    Messages:
    1,767
    Likes Received:
    0
    Trophy Points:
    55
    The packages you listed are not installed. I did uninstall the librroffice KDE-integration. The other files are what synaptic wants me to add with update -- even after uninstalling the libreoffice kde-integration.
     
  8. chenxiaolong

    chenxiaolong Notebook Geek

    Reputations:
    54
    Messages:
    82
    Likes Received:
    0
    Trophy Points:
    15
    That's really strange, because they are listed as being installed when you ran "dpkg -l".
     
  9. naticus

    naticus Notebook Deity

    Reputations:
    630
    Messages:
    1,767
    Likes Received:
    0
    Trophy Points:
    55
    Yep you are right, for some reason I couldn't get them through terminal command, except kde-integration. Now they are showing up after restart. So I am going to autoremove them.

    Thanks for your help!
     
  10. chenxiaolong

    chenxiaolong Notebook Geek

    Reputations:
    54
    Messages:
    82
    Likes Received:
    0
    Trophy Points:
    15
    I suggest that you use the "--purge" option when you autoremove, so no traces of the KDE packages are left, such as configuration files.

    Code:
    sudo apt-get autoremove --purge kdebase-runtime kdebase-runtime-data kdelibs-bin kdelibs5-data kdelibs5-plugins libkdecore5 libkdesu5 libkdeui5 libkdewebkit5 kdoctools libkatepartinterfaces4 libkdnssd4 libkfile4 libkhtml5 libkio5 libkjsapi4 libkjsembed4 libkmediaplayer4 libknewstuff3-4 libknotifyconfig4 libkntlm4 libkparts4 libkpty4 libkrosscore4 libkrossui4 libktexteditor4 libkutils4 libnepomuk4 libnepomukquery4a libplasma3 libsolid4 libthreadweaver4 oxygen-icon-theme plasma-scriptengine-javascript
    Of course, make sure you check what is actually removed. If that doesn't work, try:

    Code:
    sudo dpkg --purge kdebase-runtime kdebase-runtime-data kdelibs-bin kdelibs5-data kdelibs5-plugins libkdecore5 libkdesu5 libkdeui5 libkdewebkit5 kdoctools libkatepartinterfaces4 libkdnssd4 libkfile4 libkhtml5 libkio5 libkjsapi4 libkjsembed4 libkmediaplayer4 libknewstuff3-4 libknotifyconfig4 libkntlm4 libkparts4 libkpty4 libkrosscore4 libkrossui4 libktexteditor4 libkutils4 libnepomuk4 libnepomukquery4a libplasma3 libsolid4 libthreadweaver4 oxygen-icon-theme plasma-scriptengine-javascript
     
  11. naticus

    naticus Notebook Deity

    Reputations:
    630
    Messages:
    1,767
    Likes Received:
    0
    Trophy Points:
    55
    Yep it is removed! Thanks again for the time and help!
     
  12. chenxiaolong

    chenxiaolong Notebook Geek

    Reputations:
    54
    Messages:
    82
    Likes Received:
    0
    Trophy Points:
    15
    You're welcome! I'm glad it worked!