Tuesday, May 7, 2024
 Popular · Latest · Hot · Upcoming
10
rated 0 times [  10] [ 0]  / answers: 1 / hits: 4519  / 2 Years ago, sun, december 19, 2021, 3:55:35

As per How do I restart Unity? But I guess unity --replace would start the 3D variant.


More From » unity

 Answers
3

unity-2d has some of its own processes and some processes that derive from unity (unity-2d uses unity libraries).



You can find these processes with:



ps aux | grep unity


This yields these (see the right-most tokens in the above command output):




  • unity-2d-launcher

  • unity-2d-panel

  • /usr/lib/unity-place-applications/unity-applications-daemon

  • /usr/lib/unity-place-files/unity-files-daemon



Each of these can be individually stopped (and each will automatically restart) with:



sudo killall <process>


So to kill them all, list them all in the above command:



sudo killall unity-2d-launcher unity-2d-panel 
/usr/lib/unity-place-applications/unity-applications-daemon
/usr/lib/unity-place-files/unity-files-daemon

[#44309] Sunday, December 19, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
fishutt

Total Points: 391
Total Questions: 137
Total Answers: 106

Location: Mexico
Member since Tue, Aug 11, 2020
4 Years ago
;