Eu recomendaria que você usasse o aptitude para fazer esta operação; isso pesquisará os pacotes que removeriam o ambiente do KDE e deixará o padrão do Ubuntu:
sudo apt-get install aptitude
aptitude search '?and(?and(?and(?reverse-depends(kubuntu),?not(?reverse-depends(ubuntu-desktop))),?automatic), ?not(?or(?priority(required), ?priority(important))))' ubuntu-desktop+
Isso procurará por qualquer pacote que kubuntu-desktop
dependa, mas não dependa ubuntu-desktop
. Além disso, este método é um pouco ganancioso. Ele removerá pacotes Qt , ergo mplayer2, VLC e qualquer pacote que dependa das bibliotecas Qt poderá ser excluído. Adicione esses pacotes com um sinal de adição (+) no final, como o pacote ubuntu-desktop neste caso. Para outros sabores:
Xubuntu
aptitude search '?and(?and(?and(?reverse-depends(kubuntu),?not(?reverse-depends(xubuntu-desktop))),?automatic), ?not(?or(?priority(required), ?priority(important))))' xubuntu-desktop+
Lubuntu
aptitude search '?and(?and(?and(?reverse-depends(kubuntu),?not(?reverse-depends(lubuntu-desktop))),?automatic), ?not(?or(?priority(required), ?priority(important))))' lubuntu-desktop+
Gnomo
aptitude search '?and(?and(?and(?reverse-depends(kubuntu),?not(?reverse-depends(ubuntu-gnome-desktop))),?automatic), ?not(?or(?priority(required), ?priority(important))))' ubuntu-gnome-desktop+
Como você pode ver, substitua apenas o nome dos últimos pacotes pelo nome de sua preferência para sair. Se você usou kde-core
ou outros metapacotes, substitua "kubuntu" pelo nome do metapacote.
Compreendendo a pesquisa de aptidão
Para explicar exatamente qual pacote está selecionado, vamos explicar o comando de pesquisa mais profundamente:
?and(
?and(
?and( // we're searching for packages that are
?reverse-depends(kubuntu), // reverse dependencies of kubuntu
?not(?reverse-depends(ubuntu-desktop)) // and not of ubuntu-desktop
), // that fulfills the condition above
?automatic // and is automatically installed
),
?not( // and also that are not
?or( // either required nor important
?priority(required),
?priority(important)
)
)
)