Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 1438  / 2 Years ago, fri, february 18, 2022, 10:57:16

As you can see in the screenshot below, the user has managed to run KDE desktop in Unity (or vice versa?)



screenshot



I've already installed kubuntu-desktop package and CompizConfig Settings Manager and also able to switch to KDE desktop separately but couldn't find a way to run both on same screen.



So my question is, how to get this done?


More From » unity

 Answers
2

While I totally don't know why one would want this, it's certainly possible. From a standard Ubuntu (with Unity) installation:




  1. Install kubuntu-desktop Install kubuntu-desktop


  2. In a terminal within the Unity desktop, try to run the KDE desktop like this:



    nohup plasma-desktop &


    The nohup somecommand & pattern makes it run in the background and independent of the terminal you're running this in. (specifically, the process spawned isn't a child of terminal in the process tree, but given to the mother of all processes - init.)


  3. optional If you like this and you want to make it permanent you can create a startup script:




    • Create a text file (with for example Gedit) startkde.sh, containing



      #!/bin/bash
      # sleep seems necessary - getting kdeinit I/O errors otherwise
      sleep 3 && /usr/bin/nohup /usr/bin/plasma-desktop &

    • Make the file executable, from Nautilus (file properties), or by running chmod +x startkde.sh


    • Open Startup Applications from the Dash.


    • Add an entry "KDE" and browse to the script.




[#32873] Sunday, February 20, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ampust

Total Points: 133
Total Questions: 109
Total Answers: 111

Location: Reunion
Member since Fri, Jul 22, 2022
2 Years ago
;