LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 03-05-2022, 11:12 AM   #1
will41
Member
 
Registered: Jul 2020
Posts: 76

Rep: Reputation: Disabled
How to remove kde desktop environment


My installation started with f32 with Cinnamon desktop. I am now using f34 and have installed the kde desktop to try it out. I'm not using kde and need the space. I have tried sudo dnf remove @kde-desktop-environment and got the following:
Code:
bill@localhost:~$ sudo dnf remove @kde-desktop-environment
Last metadata expiration check: 0:29:52 ago on Sat 05 Mar 2022 10:05:33 AM CST.
No match for group package "khmeros-base-fonts"
No match for group package "paratype-pt-sans-fonts"
Error: 
 Problem: The operation would result in removing the following protected packages: sudo
(try to add '--skip-broken' to skip uninstallable packages)
Poking around the internet, I find that this is not an unusual occurrence, but I have not found a definitive solution. One recommendation I found said to try sudo dnf history undo. I'm reluctant to try stuff for fear of breaking something. I don''t think I want to delete "sudo". Your help would be appreciated.
 
Old 03-05-2022, 01:32 PM   #2
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,325

Rep: Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330Reputation: 2330
There's often a 'meta package' that addresses that problem. It acts on a set of others (kde-this, kde-that, etc.). How you get the exact name of the 'meta package' which comprises the mosty commonly used set is the problem. Try a web search. The install option would be as good, because you remove/delete the install option.

/Evil grin

Here's a sneaky idea.
Code:
sudo dnf remove/delete/whatever kdelibs
That will undoubtedly fail because everything kde is linked against kdelibs. So your box will protest
Quote:
"You great steaming twit! You can't do that because it will break <long list of kde packages>"
. So remove your long list, and kdelibs after them
 
Old 03-05-2022, 04:14 PM   #3
will41
Member
 
Registered: Jul 2020
Posts: 76

Original Poster
Rep: Reputation: Disabled
I think I did what you suggested and here is what I got:
Code:
bill@localhost:~$ sudo dnf remove kdelibs
[sudo] password for bill: 
No match for argument: kdelibs
No packages marked for removal.
Dependencies resolved.
Nothing to do.
Complete!
I'm not sure what to do with your "meta package" suggestion. What am I searching for? I have tried many searches using variations on "how to remove fedora desktop". I haven't found anything definitive and I am not up to just trying something and trashing the system.
Thanks for your help

Last edited by will41; 03-05-2022 at 04:22 PM.
 
Old 03-05-2022, 04:40 PM   #4
uteck
Senior Member
 
Registered: Oct 2003
Location: Elgin,IL,USA
Distribution: Ubuntu based stuff for the most part
Posts: 1,173

Rep: Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501
From this link, https://ask.fedoraproject.org/t/unin...leanly/6157/11
the person had the same problem as you. The solution is to remove @kde-desktop not @kde-desktop-environment.
 
Old 03-05-2022, 09:56 PM   #5
will41
Member
 
Registered: Jul 2020
Posts: 76

Original Poster
Rep: Reputation: Disabled
Here is results:
[CODEill@localhost:~$ sudo dnf remove @kde-desktop
[sudo] password for bill:
Last metadata expiration check: 3:19:43 ago on Sat 05 Mar 2022 06:11:42 PM CST.
Warning: Module or Group 'kde-desktop' is not installed.
No packages marked for removal.
Dependencies resolved.
Nothing to do.
Complete!
[/CODE]
Here is grouplist:
Code:
bill@localhost:~$ sudo dnf grouplist
Last metadata expiration check: 3:25:29 ago on Sat 05 Mar 2022 06:11:42 PM CST.
Available Environment Groups:
   Fedora Custom Operating System
   Minimal Install
   Fedora Server Edition
   Fedora Workstation
   Fedora Cloud Server
   Xfce Desktop
   LXDE Desktop
   LXQt Desktop
   Cinnamon Desktop
   MATE Desktop
   Sugar Desktop Environment
   Deepin Desktop
   Development and Creative Workstation
   Web Server
   Infrastructure Server
   Basic Desktop
   i3 desktop
Installed Environment Groups:
   KDE Plasma Workspaces
Installed Groups:
   Administration Tools
   Development Tools
   LibreOffice
   Fonts
   Hardware Support
Available Groups:
   3D Printing
   Audio Production
   Authoring and Publishing
   C Development Tools and Libraries
   Cloud Infrastructure
   Cloud Management Tools
   Compiz
   Container Management
   D Development Tools and Libraries
   Design Suite
   Domain Membership
   Fedora Eclipse
   Editors
   Educational Software
   Electronic Lab
   Engineering and Scientific
   FreeIPA Server
   Headless Management
   MATE Applications
   Milkymist
   Network Servers
   Neuron Modelling Simulators
   Office/Productivity
   Pantheon Desktop
   Python Classroom
   Python Science
   Robotics
   RPM Development Tools
   Security Lab
   Text-based Internet
   Window Managers
   Deepin Desktop Environment
   GNOME Desktop Environment
   Graphical Internet
   KDE (K Desktop Environment)
   Games and Entertainment
   Sound and Video
   System Tools
I have also tried remove KDE (K Desktop Environment). I get "syntax error)
 
Old 03-06-2022, 12:38 PM   #6
computersavvy
Senior Member
 
Registered: Aug 2016
Posts: 3,345

Rep: Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484
From that grouplist I see
Code:
Installed Environment Groups:
   KDE Plasma Workspaces
I would remove that group. If it complains then you can exclude a specific package from the removal with `-x sudo` or `--exclude=sudo` as part of the dnf remove command.

You can also tell it to not remove packages installed as dependencies with `--noautoremove` although that may leave you a lot of unneeded leaf packages that you would manually need to remove.

For some reason the requirement for sudo was switched from the default gnome desktop to the kde desktop. It is also possible to switch that requirement for sudo back to gnome before doing the group remove, but I have never done such and have only seen some comments about how to do so on the ask fedora forums. Maybe posting there and referencing this thread about this issue will get you a quick response.
 
Old 03-06-2022, 04:14 PM   #7
will41
Member
 
Registered: Jul 2020
Posts: 76

Original Poster
Rep: Reputation: Disabled
Here is results:
Code:
bill@localhost:~$ sudo dnf remove KDE-Plasma-Workspaces
[sudo] password for bill: 
No match for argument: KDE-Plasma-Workspaces
No packages marked for removal.
Dependencies resolved.
Nothing to do.
Complete!
Complete!
I don't know it it helps or means anything, but my login page provides these options;
Cinnamon
Cinnamon (Software Rendering)
Openbox
Plasma (Wayland)
Plasma (x11)

I also tried this:
Code:
bill@localhost:~$ sudo dnf remove @kde-desktop-environment -x sudo
[sudo] password for bill: 
Last metadata expiration check: 5:11:09 ago on Sun 06 Mar 2022 11:13:15 AM CST.
No match for group package "paratype-pt-sans-fonts"
No match for group package "sudo"
No match for group package "khmeros-base-fonts"
Dependencies resolved.
============================================================================================
 Package                           Arch   Version                           Repo       Size
============================================================================================
Removing:
 PackageKit-gstreamer-plugin       x86_64 1.2.4-2.fc34                      @updates   24 k
 aajohan-comfortaa-fonts           noarch 3.101-3.fc34                      @updates  679 k
 abrt-cli                          x86_64 2.14.6-4.fc34                     @updates    0  
 alsa-sof-firmware                 noarch 1.9.3-1.fc34                      @updates   11 M
 alsa-ucm                          noarch 1.2.6.1-3.fc34                    @updates  206 k
 alsa-utils                        x86_64 1.2.6-1.fc34                      @updates  2.2 M
 at                                x86_64 3.1.23-6.fc34                     @fedora   123 k
 atmel-firmware                    noarch 1.3-24.fc34                       @fedora   711 k
 attr                              x86_64 2.5.1-1.fc34                      @fedora   162 k
 b43-fwcutter                      x86_64 019-19.fc34                       @fedora    51 k
 b43-openfwwf                      noarch 5.2-26.fc34                       @fedora    31 k
 bc                                x86_64 1.07.1-14.fc34                    @updates  222 k
 bluez-cups                        x86_64 5.62-2.fc34                       @updates   48 k
 bridge-utils                      x86_64 1.7.1-1.fc34                      @fedora    64 k
 bzip2                             x86_64 1.0.8-6.fc34                      @fedora    94 k
 cifs-utils                        x86_64 6.13-3.fc34                       @updates  220 k
 colord                            x86_64 1.4.5-2.fc34                      @fedora   2.4 M
 cups                              x86_64 1:2.3.3op2-13.fc34                @updates  7.6 M
 cups-filters                      x86_64 1.28.11-1.fc34                    @updates  2.5 M
 cups-pk-helper                    x86_64 0.2.6-12.fc34                     @fedora   347 k
 dnsmasq                           x86_64 2.86-4.fc34                       @updates  716 k
 dos2unix                          x86_64 7.4.2-2.fc34                      @fedora   691 k
 dracut-config-rescue              x86_64 055-6.fc34                        @updates  3.5 k
 foomatic                          x86_64 4.0.13-17.fc34                    @fedora   827 k
 foomatic-db-ppds                  noarch 4.0-70.20210209.fc34              @fedora    75 M
 fprintd-pam                       x86_64 1.90.9-2.fc34                     @fedora    32 k
 google-noto-emoji-color-fonts     noarch 20200916-2.fc34                   @fedora    10 M
 google-noto-sans-cjk-ttc-fonts    noarch 20201206-2.fc34                   @fedora   128 M
 google-noto-sans-gurmukhi-fonts   noarch 20201206-2.fc34                   @updates  1.8 M
 google-noto-sans-sinhala-vf-fonts noarch 20201206-2.fc34                   @updates  352 k
 gstreamer1-libav                  x86_64 1:1.18.4-3.fc34                   @rpmfusion-free-updates
                                                                                      885 k
 gstreamer1-plugins-bad-freeworld  x86_64 1:1.18.4-4.fc34                   @rpmfusion-free-updates
                                                                                      791 k
 gstreamer1-plugins-ugly           x86_64 1:1.18.4-2.fc34                   @rpmfusion-free-updates
                                                                                      517 k
 gutenprint                        x86_64 5.3.4-6.fc34                      @updates   27 M
 gutenprint-cups                   x86_64 5.3.4-6.fc34                      @updates  1.0 M
 hostname                          x86_64 3.23-4.fc34                       @fedora    50 k
 hplip                             x86_64 3.21.12-1.fc34                    @updates   26 M
 hyperv-daemons                    x86_64 0-0.34.20190303git.fc34           @fedora     0  
 ibus-cangjie-engine-cangjie       noarch 2.4-23.fc34                       @updates  3.8 k
 ibus-hangul                       x86_64 1.5.4-5.fc34                      @fedora   203 k
 ibus-kkc                          x86_64 1.5.22-16.fc34                    @fedora   251 k
 ibus-libpinyin                    x86_64 1.12.0-3.fc34                     @fedora   3.0 M
 ibus-libzhuyin                    x86_64 1.10.0-2.fc34                     @fedora    40 M
 ibus-typing-booster               noarch 2.15.16-1.fc34                    @updates  3.7 M
 iptstate                          x86_64 2.2.6-12.fc34                     @fedora    99 k
 ipw2100-firmware                  noarch 1.3-28.fc34                       @fedora   604 k
 ipw2200-firmware                  noarch 3.1-21.fc34                       @fedora   563 k
 irqbalance                        x86_64 2:1.7.0-5.fc34                    @fedora    83 k
 iwl100-firmware                   noarch 39.31.5.1-129.fc34                @updates  115 k
 iwl1000-firmware                  noarch 1:39.31.5.1-129.fc34              @updates  226 k
 iwl105-firmware                   noarch 18.168.6.1-129.fc34               @updates  194 k
 iwl135-firmware                   noarch 18.168.6.1-129.fc34               @updates  203 k
 iwl2000-firmware                  noarch 18.168.6.1-129.fc34               @updates  197 k
 iwl2030-firmware                  noarch 18.168.6.1-129.fc34               @updates  205 k
 iwl3160-firmware                  noarch 1:25.30.13.0-129.fc34             @updates  2.5 M
 iwl3945-firmware                  noarch 15.32.2.9-129.fc34                @updates   56 k
 iwl4965-firmware                  noarch 228.61.2.24-129.fc34              @updates   69 k
 iwl5000-firmware                  noarch 8.83.5.1_1-129.fc34               @updates  339 k
 iwl5150-firmware                  noarch 8.24.2.2-129.fc34                 @updates  112 k
 iwl6000-firmware                  noarch 9.221.4.1-129.fc34                @updates  131 k
 iwl6000g2a-firmware               noarch 18.168.6.1-129.fc34               @updates  311 k
 iwl6000g2b-firmware               noarch 18.168.6.1-129.fc34               @updates  318 k
 iwl6050-firmware                  noarch 41.28.5.1-129.fc34                @updates  270 k
 iwl7260-firmware                  noarch 1:25.30.13.0-129.fc34             @updates   15 M
 jomolhari-fonts                   noarch 0.003-32.fc34                     @fedora   2.2 M
 julietaula-montserrat-fonts       noarch 1:7.210-4.fc34                    @fedora   4.0 M
 jwhois                            x86_64 4.0-64.fc34                       @fedora   347 k
 libertas-usb8388-firmware         noarch 2:20220209-129.fc34               @updates   79 k
 linux-atm                         x86_64 2.5.1-28.fc34                     @fedora   1.4 M
 lohit-assamese-fonts              noarch 2.91.5-11.fc34                    @fedora   142 k
 lohit-bengali-fonts               noarch 2.91.5-11.fc34                    @fedora   142 k
 lohit-devanagari-fonts            noarch 2.95.5-1.fc34                     @updates  179 k
 lohit-gujarati-fonts              noarch 2.92.4-11.fc34                    @fedora    82 k
 lohit-kannada-fonts               noarch 2.5.4-10.fc34                     @fedora   202 k
 lohit-odia-fonts                  noarch 2.91.2-11.fc34                    @fedora    94 k
 lohit-tamil-fonts                 noarch 2.91.3-11.fc34                    @fedora    59 k
 lohit-telugu-fonts                noarch 2.5.5-10.fc34                     @fedora   343 k
 lrzsz                             x86_64 0.12.20-53.fc34                   @fedora   179 k
 man-db                            x86_64 2.9.3-3.fc34                      @fedora   2.5 M
 man-pages                         noarch 5.10-2.fc34                       @fedora   5.7 M
 mcelog                            x86_64 3:175-1.fc34                      @fedora   160 k
 microcode_ctl                     x86_64 2:2.1-46.1.fc34                   @updates  4.5 M
 minicom                           x86_64 2.7.1-15.fc34                     @fedora   909 k
 mlocate                           x86_64 0.26-28.fc34                      @fedora   376 k
 mpage                             x86_64 2.5.7-11.fc34                     @fedora   138 k
 mtr                               x86_64 2:0.95-1.fc34                     @updates  194 k
 net-tools                         x86_64 2.0-0.59.20160912git.fc34         @fedora   916 k
 nfs-utils                         x86_64 1:2.5.4-2.rc3.fc34                @updates  1.2 M
 nmap-ncat                         x86_64 3:7.80-11.fc34                    @fedora   469 k
 open-vm-tools-desktop             x86_64 11.3.0-1.fc34                     @updates  465 k
 opensc                            x86_64 0.22.0-1.fc34                     @updates  3.8 M
 openssh-server                    x86_64 8.6p1-5.fc34                      @updates  1.0 M
 paktype-naskh-basic-fonts         noarch 5.0-4.fc34                        @fedora   1.2 M
 pam_afs_session                   x86_64 2.6-14.fc34                       @fedora    98 k
 paps                              x86_64 0.7.1-2.fc34                      @fedora    68 k
 passwdqc                          x86_64 1.4.0-3.fc34                      @fedora     0  
 pinfo                             x86_64 0.6.10-27.fc34                    @fedora   300 k
 plymouth                          x86_64 0.9.5-2.20210331git1ea1020.fc34   @fedora   343 k
 plymouth-system-theme             x86_64 0.9.5-2.20210331git1ea1020.fc34   @fedora     0  
 psacct                            x86_64 6.6.4-9.fc34                      @fedora   218 k
 pulseaudio-utils                  x86_64 14.2-3.fc34                       @fedora   196 k
 qemu-guest-agent                  x86_64 2:5.2.0-9.fc34                    @updates  516 k
 quota                             x86_64 1:4.06-4.fc34                     @fedora   711 k
 rng-tools                         x86_64 6.14-2.git.b2b7934e.fc34          @updates  139 k
 rootfiles                         noarch 8.1-29.fc34                       @fedora   817  
 rp-pppoe                          x86_64 3.14-4.fc34                       @fedora   279 k
 rsyslog                           x86_64 8.2102.0-3.fc34                   @updates  2.6 M
 samba-client                      x86_64 2:4.14.12-0.fc34                  @updates  2.3 M
 sil-abyssinica-fonts              noarch 1.200-21.fc34                     @fedora   628 k
 sil-mingzat-fonts                 noarch 1.000-4.fc34                      @fedora   276 k
 sil-nuosu-fonts                   noarch 2.200-2.fc34                      @fedora   264 k
 sil-padauk-fonts                  noarch 3.003-7.fc34                      @fedora   1.6 M
 smartmontools                     x86_64 1:7.2-11.fc34                     @updates  1.9 M
 smc-meera-fonts                   noarch 7.0.3-3.fc34                      @fedora   341 k
 sos                               noarch 4.1-1.fc34                        @fedora   2.2 M
 spice-vdagent                     x86_64 0.21.0-4.fc34                     @updates  218 k
 sssd                              x86_64 2.5.2-2.fc34                      @updates   34 k
 sssd-common                       x86_64 2.5.2-2.fc34                      @updates  5.3 M
 sssd-kcm                          x86_64 2.5.2-2.fc34                      @updates  249 k
 stix-fonts                        noarch 2.0.2-9.fc34                      @fedora   2.5 M
 symlinks                          x86_64 1.7-4.fc34                        @fedora    22 k
 system-config-language            noarch 3.5.0-6.fc34                      @fedora   428 k
 system-config-printer-udev        x86_64 1.5.15-5.fc34                     @updates   50 k
 tcpdump                           x86_64 14:4.99.1-2.fc34                  @updates  1.4 M
 telnet                            x86_64 1:0.17-83.fc34                    @fedora   121 k
 thai-scalable-waree-fonts         noarch 0.7.2-3.fc34                      @fedora   229 k
 time                              x86_64 1.9-16.fc34                       @fedora    87 k
 traceroute                        x86_64 3:2.1.0-13.fc34                   @fedora   107 k
 tree                              x86_64 1.8.0-6.fc34                      @fedora   113 k
 usb_modeswitch                    x86_64 2.6.1-2.fc34                      @fedora   221 k
 util-linux-user                   x86_64 2.36.2-1.fc34                     @fedora    61 k
 vconfig                           x86_64 1.9-30.fc34                       @fedora    56 k
 virtualbox-guest-additions        x86_64 6.1.32-1.fc34                     @updates  8.4 M
 wireless-tools                    x86_64 1:29-27.fc34                      @fedora   276 k
 words                             noarch 3.0-37.fc34                       @fedora   4.7 M
 wvdial                            x86_64 1.61-26.fc34                      @fedora   219 k
 xorg-x11-drv-amdgpu               x86_64 21.0.0-1.fc34                     @updates  164 k
 xorg-x11-drv-ati                  x86_64 19.1.0-5.fc34                     @fedora   510 k
 xorg-x11-drv-evdev                x86_64 2.10.6-9.fc34                     @fedora    82 k
 xorg-x11-drv-fbdev                x86_64 0.5.0-8.fc34                      @fedora    34 k
 xorg-x11-drv-intel                x86_64 2.99.917-50.20200205.fc34         @fedora   2.1 M
 xorg-x11-drv-nouveau              x86_64 1:1.0.17-1.fc34                   @updates  219 k
 xorg-x11-drv-openchrome           x86_64 0.6.400-1.20210215git5dbad06.fc34 @fedora   300 k
 xorg-x11-drv-qxl                  x86_64 0.1.5-19.fc34                     @fedora   168 k
 xorg-x11-drv-vesa                 x86_64 2.4.0-11.fc34                     @fedora    34 k
 xorg-x11-drv-vmware               x86_64 13.2.1-15.fc34                    @fedora   169 k
 xorg-x11-drv-wacom                x86_64 0.40.0-1.fc34                     @fedora   1.0 M
 yum                               noarch 4.9.0-1.fc34                      @updates   22 k
 zd1211-firmware                   noarch 1.5-8.fc34                        @fedora    64 k
Removing unused dependencies:
 abrt-tui                          x86_64 2.14.6-4.fc34                     @updates   70 k
 adcli                             x86_64 0.9.1-3.fc34                      @fedora   317 k
 antiword                          x86_64 0.37-31.fc34                      @fedora   623 k
 avahi-tools                       x86_64 0.8-14.fc34                       @updates  104 k
 c-ares                            x86_64 1.17.2-1.fc34                     @updates  265 k
 cifs-utils-info                   x86_64 6.13-3.fc34                       @updates   34 k
 cldr-emoji-annotation             noarch 1:39-1.fc34                       @updates   77 M
 cldr-emoji-annotation-dtd         noarch 1:39-1.fc34                       @updates  204 k
 color-filesystem                  noarch 1-26.fc34                         @fedora   151  
 cups-filters-braille              x86_64 1.28.11-1.fc34                    @updates  158 k
 cups-filters-libs                 x86_64 1.28.11-1.fc34                    @updates  331 k
 cups-ipptool                      x86_64 1:2.3.3op2-13.fc34                @updates  4.4 M
 cyrus-sasl-gssapi                 x86_64 2.1.27-8.fc34                     @fedora    45 k
 foomatic-db                       noarch 4.0-70.20210209.fc34              @fedora   9.5 M
 foomatic-db-filesystem            noarch 4.0-70.20210209.fc34              @fedora     0  
 fprintd                           x86_64 1.90.9-2.fc34                     @fedora   751 k
 gdouros-symbola-fonts             noarch 10.24-8.fc34                      @fedora   3.8 M
 google-noto-cjk-fonts-common      noarch 20201206-2.fc34                   @fedora    32 k
 gssproxy                          x86_64 0.8.4-2.fc34                      @fedora   260 k
 gutenprint-libs                   x86_64 5.3.4-6.fc34                      @updates  398 k
 hplip-common                      x86_64 3.21.12-1.fc34                    @updates  1.3 M
 hplip-libs                        x86_64 3.21.12-1.fc34                    @updates  467 k
 hyperv-daemons-license            noarch 0-0.34.20190303git.fc34           @fedora    18 k
 hypervfcopyd                      x86_64 0-0.34.20190303git.fc34           @fedora    16 k
 hypervkvpd                        x86_64 0-0.34.20190303git.fc34           @fedora    35 k
 hypervvssd                        x86_64 0-0.34.20190303git.fc34           @fedora    20 k
 ibus-cangjie                      noarch 2.4-23.fc34                       @updates  118 k
 iwlax2xx-firmware                 noarch 20220209-129.fc34                 @updates   34 M
 jitterentropy                     x86_64 3.3.1-1.fc34                      @updates   67 k
 keyutils                          x86_64 1.6.1-2.fc34                      @fedora   141 k
 libXvMC                           x86_64 1.0.12-5.fc34                     @fedora    45 k
 libbasicobjects                   x86_64 0.1.1-47.fc34                     @fedora    57 k
 libcangjie                        x86_64 1.3-15.fc34                       @fedora    30 k
 libcangjie-data                   noarch 1.3-15.fc34                       @fedora   7.6 M
 libcollection                     x86_64 0.7.0-47.fc34                     @fedora    98 k
 libde265                          x86_64 1.0.8-3.fc34                      @rpmfusion-free
                                                                                      830 k
 libdhash                          x86_64 0.5.0-47.fc34                     @fedora    62 k
 libestr                           x86_64 0.1.11-1.fc34                     @fedora    45 k
 libev                             x86_64 4.33-3.fc34                       @fedora   106 k
 libfastjson                       x86_64 0.99.9-1.fc34                     @fedora    74 k
 libfprint                         x86_64 1.90.7-3.fc34                     @updates  698 k
 libhangul                         x86_64 0.1.0-23.fc34                     @fedora   6.4 M
 libini_config                     x86_64 1.3.1-47.fc34                     @fedora   159 k
 libipa_hbac                       x86_64 2.5.2-2.fc34                      @updates   62 k
 libkkc                            x86_64 0.3.5-19.fc34                     @fedora   758 k
 libkkc-common                     noarch 0.3.5-19.fc34                     @fedora   360 k
 libkkc-data                       x86_64 1:0.2.7-19.fc34                   @fedora    30 M
 liblouis                          x86_64 3.16.1-2.fc34                     @fedora   9.8 M
 liblouis-utils                    x86_64 3.16.1-2.fc34                     @fedora   227 k
 liblouisutdml                     x86_64 2.9.0-3.fc34                      @fedora   395 k
 liblouisutdml-utils               x86_64 2.9.0-3.fc34                      @fedora    63 k
 libmms                            x86_64 0.6.4-15.fc34                     @rpmfusion-free
                                                                                      112 k
 libmspack                         x86_64 0.10.1-0.5.alpha.fc34             @fedora   145 k
 libnfsidmap                       x86_64 1:2.5.4-2.rc3.fc34                @updates  186 k
 libpasswdqc                       x86_64 1.4.0-3.fc34                      @fedora    73 k
 libpath_utils                     x86_64 0.2.1-47.fc34                     @fedora    62 k
 libpipeline                       x86_64 1.5.3-2.fc34                      @fedora   113 k
 libref_array                      x86_64 0.1.5-47.fc34                     @fedora    58 k
 librtmp                           x86_64 2.4-19.20190330.gitc5f04a5.fc34   @rpmfusion-free
                                                                                      161 k
 libsane-hpaio                     x86_64 3.21.12-1.fc34                    @updates  190 k
 libsss_autofs                     x86_64 2.5.2-2.fc34                      @updates   62 k
 libsss_certmap                    x86_64 2.5.2-2.fc34                      @updates  123 k
 libsss_idmap                      x86_64 2.5.2-2.fc34                      @updates   78 k
 libsss_nss_idmap                  x86_64 2.5.2-2.fc34                      @updates   74 k
 libsss_sudo                       x86_64 2.5.2-2.fc34                      @updates   54 k
 liburing                          x86_64 0.7-4.fc34                        @fedora    46 k
 libverto-libev                    x86_64 0.3.2-1.fc34                      @fedora    16 k
 libwvstreams                      x86_64 4.6.1-35.fc34                     @fedora   2.0 M
 libzhuyin                         x86_64 2.6.0-2.fc34                      @fedora   545 k
 marisa                            x86_64 0.2.4-49.fc34                     @fedora   233 k
 mesa-libxatracker                 x86_64 21.1.8-3.fc34                     @updates  7.7 M
 mjpegtools-libs                   x86_64 2.2.0-1.fc34                      @rpmfusion-free
                                                                                      413 k
 net-snmp-libs                     x86_64 1:5.9.1-4.fc34                    @updates  3.1 M
 newt                              x86_64 0.52.21-9.fc34                    @fedora   215 k
 open-vm-tools                     x86_64 11.3.0-1.fc34                     @updates  3.2 M
 pam_passwdqc                      x86_64 1.4.0-3.fc34                      @fedora    21 k
 passwdqc-utils                    x86_64 1.4.0-3.fc34                      @fedora    36 k
 pcsc-lite                         x86_64 1.9.1-1.fc34                      @fedora   202 k
 pcsc-lite-ccid                    x86_64 1.4.34-1.fc34                     @fedora   1.5 M
 plymouth-core-libs                x86_64 0.9.5-2.20210331git1ea1020.fc34   @fedora   290 k
 plymouth-graphics-libs            x86_64 0.9.5-2.20210331git1ea1020.fc34   @fedora   169 k
 plymouth-plugin-label             x86_64 0.9.5-2.20210331git1ea1020.fc34   @fedora    20 k
 plymouth-plugin-two-step          x86_64 0.9.5-2.20210331git1ea1020.fc34   @fedora    76 k
 plymouth-scripts                  x86_64 0.9.5-2.20210331git1ea1020.fc34   @fedora    24 k
 plymouth-theme-spinner            x86_64 0.9.5-2.20210331git1ea1020.fc34   @fedora   141 k
 poppler-cpp                       x86_64 21.01.0-7.fc34                    @updates  126 k
 python3-argcomplete               noarch 1.12.0-3.fc34                     @fedora   219 k
 python3-canberra                  noarch 0-0.26.git88c53cd.fc34            @fedora    52 k
 python3-cangjie                   x86_64 1.2-24.fc34                       @fedora   217 k
 python3-enchant                   noarch 3.2.1-1.fc34                      @updates  311 k
 python3-newt                      x86_64 0.52.21-9.fc34                    @fedora   120 k
 python3-packaging                 noarch 20.9-1.fc34                       @fedora   248 k
 python3-pyparsing                 noarch 2.4.7-5.fc34                      @fedora   635 k
 python3-regex                     x86_64 2022.1.18-1.fc34                  @updates  1.7 M
 python3-simpleaudio               x86_64 1.0.4-3.fc34                      @fedora   2.2 M
 qpdf-libs                         x86_64 10.3.2-1.fc34                     @updates  1.7 M
 quota-nls                         noarch 1:4.06-4.fc34                     @fedora   273 k
 rpcbind                           x86_64 1.2.6-0.fc34                      @updates  112 k
 rtl-sdr                           x86_64 0.6.0-9.fc34                      @fedora   279 k
 skkdic                            noarch 20210217-1.git1ca80982c5.fc34     @updates   27 M
 smartmontools-selinux             noarch 1:7.2-11.fc34                     @updates   13 k
 sssd-ad                           x86_64 2.5.2-2.fc34                      @updates  405 k
 sssd-client                       x86_64 2.5.2-2.fc34                      @updates  309 k
 sssd-common-pac                   x86_64 2.5.2-2.fc34                      @updates  230 k
 sssd-ipa                          x86_64 2.5.2-2.fc34                      @updates  690 k
 sssd-krb5                         x86_64 2.5.2-2.fc34                      @updates   85 k
 sssd-krb5-common                  x86_64 2.5.2-2.fc34                      @updates  203 k
 sssd-ldap                         x86_64 2.5.2-2.fc34                      @updates  151 k
 sssd-nfs-idmap                    x86_64 2.5.2-2.fc34                      @updates   46 k
 sssd-proxy                        x86_64 2.5.2-2.fc34                      @updates  154 k
 svt-hevc-libs                     x86_64 1.5.1-1.fc34                      @rpmfusion-free-updates
                                                                                      2.2 M
 thai-scalable-fonts-common        noarch 0.7.2-3.fc34                      @fedora    18 k
 unicode-ucd                       noarch 14.0.0-1.fc34                     @updates   33 M
 usb_modeswitch-data               noarch 20191128-4.fc34                   @fedora   134 k
 xmlsec1-openssl                   x86_64 1.2.29-3.fc34                     @fedora   286 k
 xorg-x11-drv-wacom-serial-support x86_64 0.40.0-1.fc34                     @fedora    36 k
Removing Environment Groups:
 KDE Plasma Workspaces                                                                     
Removing Groups:
 base-x                                                                                    
 Dial-up Networking Support                                                                
 Administration Tools                                                                      
 Fonts                                                                                     
 Guest Desktop Agents                                                                      
 Common NetworkManager Submodules                                                          
 Hardware Support                                                                          
 Multimedia                                                                                
 Core                                                                                      
 Input Methods                                                                             
 Standard                                                                                  
 Printing Support                                                                          

Transaction Summary
============================================================================================
Remove  265 Packages

Freed space: 735 M
Is this ok [y/N]:
I have not yet selected y or N. Should I go for it? Some of the items near the bottom, like core, administration tools, Printing support, make me feel uneasy about it.

Last edited by will41; 03-06-2022 at 04:32 PM.
 
Old 03-08-2022, 02:47 PM   #8
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
you need to use the correct name "KDE Plasma Workspaces"
Code:
sudo dnf remove "KDE Plasma Workspaces"
 
Old 03-08-2022, 03:42 PM   #9
will41
Member
 
Registered: Jul 2020
Posts: 76

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by John VV View Post
you need to use the correct name "KDE Plasma Workspaces"
Code:
sudo dnf remove "KDE Plasma Workspaces"
Please see msg #7 above and the following:

Code:
bill@localhost:~$ sudo dnf remove "KDE Plasma Workspaces"
[sudo] password for bill: 
No match for argument: KDE Plasma Workspaces
No packages marked for removal.
Dependencies resolved.
Nothing to do.
Complete!
 
Old 03-11-2022, 04:03 PM   #10
goumba
Senior Member
 
Registered: Dec 2009
Location: New Jersey, USA
Distribution: Fedora, OpenSUSE, FreeBSD, OpenBSD, macOS (hack). Past: Debian, Arch, RedHat (pre-RHEL).
Posts: 1,335
Blog Entries: 7

Rep: Reputation: 402Reputation: 402Reputation: 402Reputation: 402Reputation: 402
Quote:
Originally Posted by John VV View Post
you need to use the correct name "KDE Plasma Workspaces"
Code:
sudo dnf remove "@KDE Plasma Workspaces"
You forgot the @. It's necessary when using non-group dnf commands on groups.
 
Old 03-11-2022, 04:58 PM   #11
will41
Member
 
Registered: Jul 2020
Posts: 76

Original Poster
Rep: Reputation: Disabled
I realize that I forgot it in that instance, but again, please refer back to message #7. My last question had to do with the command line that appears to be working. It got down to the point of "Is this OK [y/n]" and I didn't go farther because I feel uncomfortable with what it was going to remove. I'm looking for advice on whether I'm good to answer Y.
 
Old 03-11-2022, 06:37 PM   #12
goumba
Senior Member
 
Registered: Dec 2009
Location: New Jersey, USA
Distribution: Fedora, OpenSUSE, FreeBSD, OpenBSD, macOS (hack). Past: Debian, Arch, RedHat (pre-RHEL).
Posts: 1,335
Blog Entries: 7

Rep: Reputation: 402Reputation: 402Reputation: 402Reputation: 402Reputation: 402
Quote:
Originally Posted by will41 View Post
I realize that I forgot it in that instance, but again, please refer back to message #7. My last question had to do with the command line that appears to be working. It got down to the point of "Is this OK [y/n]" and I didn't go farther because I feel uncomfortable with what it was going to remove. I'm looking for advice on whether I'm good to answer Y.
Well, if you read it, and it gives you an uneasy feeling, you should probably answer no. That might be a good idea.

Unfortunately dnf isn't too smart. Even using the appropriate group command, it's going to want to take everything out.

If you read what you posted, there is NOTHING from KDE being removed.

businesskid was on the right track, you need to remove one of the base packages. I would go for

Code:
dnf rm plasma-workspace-common plasma-workspace-libs
There will probably be something leftover you'll have to clean up. Happy hunting.

I'd probably tell dnf to reinstall my chosen DE in case anything got uninstalled I didn't want to be.
 
Old 03-11-2022, 10:16 PM   #13
will41
Member
 
Registered: Jul 2020
Posts: 76

Original Poster
Rep: Reputation: Disabled
OK. Thanks for the advice. I thought this would be more straight forward. I think I am not going do anything for now. I understand that release 36 is coming mid April. I think I will do a clean install then.
Thanks again.
 
Old 03-12-2022, 05:30 AM   #14
goumba
Senior Member
 
Registered: Dec 2009
Location: New Jersey, USA
Distribution: Fedora, OpenSUSE, FreeBSD, OpenBSD, macOS (hack). Past: Debian, Arch, RedHat (pre-RHEL).
Posts: 1,335
Blog Entries: 7

Rep: Reputation: 402Reputation: 402Reputation: 402Reputation: 402Reputation: 402
Are you using btrfs? Use DNF to bootstrap a new install into a new subvolume. Update GRUB. No need to wipe everything.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Does Deepin Desktop Environment support addons that can heavily modify the desktop environment? Joe232 Linux - Software 1 02-07-2018 07:43 AM
LXer: KDE Plasma 5.7.4 Desktop Environment Is Out with Plasma Desktop and KWin Fixes LXer Syndicated Linux News 0 08-24-2016 01:13 AM
LXer: KDE Applications 16.04.2 Released for the KDE Plasma 5.6.5 Desktop Environment LXer Syndicated Linux News 0 06-14-2016 07:17 PM
Remove all (mostly) software and use a Desktop Environment (KDE preferred) stds_sak Linux - Software 9 07-25-2015 03:43 AM
Cannot remove KDE desktop environment? Ubuntonian Linux - Desktop 6 12-26-2010 09:06 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora

All times are GMT -5. The time now is 06:54 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration