Advertisement
johnmahugu

KALI: windows manager desktop

May 31st, 2016
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.55 KB | None | 0 0
  1.  
  2. Lightbulb How to install/remove different Desktop/Window Manager in Kali Linux 1.x
  3.  
  4. ----
  5. ## XFCE Desktop ##
  6. ----
  7. # How to install XFCE Desktop Environment in Kali Linux:
  8. Code:
  9.  
  10. apt-get install kali-defaults kali-root-login desktop-base xfce4 xfce4-places-plugin xfce4-goodies
  11.  
  12. # How to remove XFCE in Kali Linux:
  13. Code:
  14.  
  15. apt-get remove xfce4 xfce4-places-plugin xfce4-goodies
  16.  
  17. ----
  18. ## KDE Desktop ##
  19. ----
  20. # How to install KDE Plasma Desktop Environment in Kali Linux:
  21. Code:
  22.  
  23. apt-get install kali-defaults kali-root-login desktop-base kde-plasma-desktop
  24.  
  25. # How to install Netbook KDE Plasma Desktop Environment in Kali Linux:
  26. Code:
  27.  
  28. apt-get install kali-defaults kali-root-login desktop-base kde-plasma-netbook
  29.  
  30. # How to install Standard Debian selected packages and frameworks in Kali Linux:
  31. Code:
  32.  
  33. apt-get install kali-defaults kali-root-login desktop-base kde-standard
  34.  
  35. # How to install KDE Full Install in Kali Linux:
  36. Code:
  37.  
  38. apt-get install kali-defaults kali-root-login desktop-base kde-full
  39.  
  40. # How to remove KDE on Kali Linux:
  41. Code:
  42.  
  43. apt-get remove kde-plasma-desktop kde-plasma-netbook kde-standard
  44.  
  45. ----
  46. ## LXDE Desktop ##
  47. ----
  48. # How to install LXDE Desktop Environment in Kali Linux:
  49. Code:
  50.  
  51. apt-get install lxde-core lxde kali-defaults kali-root-login desktop-base
  52.  
  53. # How to remove LXDE on Kali Linux:
  54. Code:
  55.  
  56. apt-get remove lxde-core lxde
  57.  
  58. ----
  59. ## GNOME Desktop ##
  60. ----
  61. # How to install GNOME on Kali Linux:
  62. Code:
  63.  
  64. apt-get install gnome-core kali-defaults kali-root-login desktop-base
  65.  
  66. # How to remove GNOME on Kali Linux:
  67. Code:
  68.  
  69. apt-get remove gnome-core
  70.  
  71. ----
  72. ## Cinnamon Desktop ##
  73. ----
  74. # How to install Cinnamon Desktop Environment in Kali Linux:
  75. Code:
  76.  
  77. apt-get install kali-defaults kali-root-login desktop-base cinnamon
  78.  
  79. # How to remove Cinnamon Desktop Environment in Kali Linux:
  80. Code:
  81.  
  82. apt-get remove cinnamon
  83.  
  84. ----
  85. ## MATE Desktop ##
  86. ----
  87. # How to install MATE Desktop Environment in Kali Linux:
  88. Code:
  89.  
  90. echo "deb http://repo.mate-desktop.org/debian wheezy main" >> /etc/apt/sources.list && apt-get update
  91.  
  92. Code:
  93.  
  94. apt-get --yes --quiet --allow-unauthenticated install mate-archive-keyring
  95.  
  96. # This installs the base packages
  97. Code:
  98.  
  99. apt-get install kali-defaults kali-root-login desktop-base mate-core
  100.  
  101. # Or this to install mate-core and more extras
  102. Code:
  103.  
  104. apt-get install kali-defaults kali-root-login desktop-base mate-desktop-environment
  105.  
  106. # Or this to install mate-core + mate-desktop-environment and even more extras.
  107. Code:
  108.  
  109. apt-get install kali-defaults kali-root-login desktop-base mate-desktop-environment-extra
  110.  
  111. # How to remove MATE Desktop Environment in Kali Linux:
  112. Code:
  113.  
  114. apt-get remove mate-core
  115.  
  116. Now the only problem is MATE doesn't show the nice Kali Linux Menu. Fix posted by Silver Moon
  117.  
  118. To fix this edit the following file.
  119. Code:
  120.  
  121. leafpad /etc/xdg/menus/mate-applications.menu
  122.  
  123. In the file go down to the section named Internet and add the following line
  124. HTML Code:
  125.  
  126. <!-- Kali Linux Menu -->
  127. <MergeFile type="path">applications-merged/kali-applications.menu</MergeFile>
  128.  
  129. So it should look something like this
  130. HTML Code:
  131.  
  132. .....
  133. <!-- Internet -->
  134. <Menu>
  135. <Name>Internet</Name>
  136. <Directory>mate-network.directory</Directory>
  137. <Include>
  138. <And>
  139. <Category>Network</Category>
  140. </And>
  141. </Include>
  142. </Menu> <!-- End Internet -->
  143. <!-- Kali Linux -->
  144. <MergeFile type="path">applications-merged/kali-applications.menu</MergeFile>
  145. .....
  146.  
  147. Now save the file, Logout and Login back. The "Kali Linux" menu should display fine in Mate desktop's application menu.
  148. Credits
  149.  
  150. Last edited by blackMORE; 2013-10-25 at 03:04 PM. Reason: Added MATE Desktop and edited formatting/credits.
  151.  
  152. Reply With Quote Reply With Quote
  153. 2013-08-02, 03:36 PM #2
  154. teloris
  155. teloris is offline
  156. Junior Member
  157.  
  158. Join Date
  159. Jul 2013
  160. Posts
  161. 2
  162.  
  163. make lxde as default desktop
  164.  
  165. [SPOILER]
  166. Quote Originally Posted by blackMORE View Post
  167. ----
  168. ----
  169. ## LXDE Desktop ##
  170. ----
  171. # How to install LXDE Desktop Environment in Kali Linux:
  172. apt-get install lxde-core lxde kali-defaults kali-root-login desktop-base
  173.  
  174. # How to remove LXDE on Kali Linux:
  175. apt-get remove lxde-core lxde
  176.  
  177. ----
  178. ## GNOME Desktop ##
  179. ----
  180. # How to install GNOME on Kali Linux:
  181. apt-get install gnome-core kali-defaults kali-root-login desktop-base
  182.  
  183. # How to remove GNOME on Kali Linux:
  184. apt-get remove gnome-core
  185. [/SPOILER]
  186.  
  187. thanks for the great tuts....
  188.  
  189. my question is, how to make LXDE as default desktop (instead of Gnome) ??
  190. i use netbook (1024x800) and i feel that LXDE is load faster than Gnome
  191.  
  192. Reply With Quote Reply With Quote
  193. 2013-08-08, 06:20 PM #3
  194. Zombay
  195. Zombay is offline
  196. Junior Member
  197.  
  198. Join Date
  199. Aug 2013
  200. Posts
  201. 2
  202.  
  203. Recently installed KDE but I cant get it away anymore now :/
  204. Used your commands etc. but it was still there.
  205.  
  206. Reply With Quote Reply With Quote
  207. 2013-08-14, 02:39 AM #4
  208. blackMORE
  209. blackMORE is offline
  210. Senior Member
  211.  
  212. Join Date
  213. Jun 2013
  214. Posts
  215. 113
  216.  
  217. Quote Originally Posted by teloris View Post
  218. [SPOILER]
  219.  
  220. [/SPOILER]
  221.  
  222. thanks for the great tuts....
  223.  
  224. my question is, how to make LXDE as default desktop (instead of Gnome) ??
  225. i use netbook (1024x800) and i feel that LXDE is load faster than Gnome
  226. Code:
  227.  
  228. update-alternatives --config x-session-manager
  229.  
  230. Reply With Quote Reply With Quote
  231. 2013-08-14, 02:42 AM #5
  232. blackMORE
  233. blackMORE is offline
  234. Senior Member
  235.  
  236. Join Date
  237. Jun 2013
  238. Posts
  239. 113
  240.  
  241. Quote Originally Posted by Zombay View Post
  242. Recently installed KDE but I cant get it away anymore now :/
  243. Used your commands etc. but it was still there.
  244. Which KDE desktop environment you installed? Some more info would help. A quick way to find these is via going through your bash history and revert them (apt-get install to apt-get remove) and finally, apt-get autoremove.
  245.  
  246. I would tread carefully when you're using autoremove, depending on what you've done to your system, it's got a nasty habit of removing useful stuffs.
  247.  
  248. Reply With Quote Reply With Quote
  249. 2013-10-15, 03:17 PM #6
  250. adRn
  251. adRn is offline
  252. Junior Member
  253.  
  254. Join Date
  255. Oct 2013
  256. Posts
  257. 3
  258.  
  259. Quote Originally Posted by blackMORE View Post
  260. Code:
  261.  
  262. update-alternatives --config x-session-manager
  263.  
  264. I've instealled i3 wm and it doesn't get listed there. How can I add it? I want to get automatically logged in at i3wm as root when I boot up. Thx in advance
  265.  
  266.  
  267.  
  268. When I try to install them I get this happen, any ideas?
  269.  
  270. root@RedBox:~# apt-get install kali-defaults kali-root-login desktop-base xfce4 xfce4-places-plugin xfce4-goodies
  271. Reading package lists... Done
  272. Building dependency tree
  273. Reading state information... Done
  274. Package xfce4 is not available, but is referred to by another package.
  275. This may mean that the package is missing, has been obsoleted, or
  276. is only available from another source
  277.  
  278. E: Package 'xfce4' has no installation candidate
  279. E: Unable to locate package xfce4-places-plugin
  280. E: Unable to locate package xfce4-goodies
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement