<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Starting KDE or GNOME using startx in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953500#M4317</link>
    <description>while using startx command, how to give option to launch either GNOME or KDE as needed. By default startx launches GNOME and if I modify a file Desktop, I can launch KDE. In either case only one of the two ie. either GNOME or KDE can be launched but not as preferred. Say, first time i like to launch GNOME and at the next login I may wish to launch KDE. I dont want to go and change Desktop file each and everytime. Please give an option to launch KDE or GNOME as I wish using startx.</description>
    <pubDate>Thu, 17 Apr 2003 05:24:13 GMT</pubDate>
    <dc:creator>NavalurIT</dc:creator>
    <dc:date>2003-04-17T05:24:13Z</dc:date>
    <item>
      <title>Starting KDE or GNOME using startx</title>
      <link>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953500#M4317</link>
      <description>while using startx command, how to give option to launch either GNOME or KDE as needed. By default startx launches GNOME and if I modify a file Desktop, I can launch KDE. In either case only one of the two ie. either GNOME or KDE can be launched but not as preferred. Say, first time i like to launch GNOME and at the next login I may wish to launch KDE. I dont want to go and change Desktop file each and everytime. Please give an option to launch KDE or GNOME as I wish using startx.</description>
      <pubDate>Thu, 17 Apr 2003 05:24:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953500#M4317</guid>
      <dc:creator>NavalurIT</dc:creator>
      <dc:date>2003-04-17T05:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Starting KDE or GNOME using startx</title>
      <link>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953501#M4318</link>
      <description>I'm unaware of any software which allows you to do this that is distributed with most of the major distributions.&lt;BR /&gt;&lt;BR /&gt;I'm sure there are plenty of little applications which would allow you to do this.  You might want to search for a 'desktop switching' program in Google, or on sourceforge.net.&lt;BR /&gt;&lt;BR /&gt;Currently, this sort of service is availble if you are using either the Gnome (or KDE I beleive) login servers (gdm for Gnome).&lt;BR /&gt;&lt;BR /&gt;However this means that there's always an X session open, just not necessarily logged in.</description>
      <pubDate>Thu, 17 Apr 2003 05:36:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953501#M4318</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-04-17T05:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Starting KDE or GNOME using startx</title>
      <link>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953502#M4319</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;On RedHat, you may use switchdesk  before startx to select which X Window Environment you want to use. &lt;BR /&gt;&lt;BR /&gt;But this is not "while using startx command".&lt;BR /&gt;&lt;BR /&gt;So you write a small shell script to (1) select X Window Env, then&lt;BR /&gt;(2) start X Window.&lt;BR /&gt;&lt;BR /&gt;Good luck&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Apr 2003 06:32:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953502#M4319</guid>
      <dc:creator>I_M</dc:creator>
      <dc:date>2003-04-17T06:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: Starting KDE or GNOME using startx</title>
      <link>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953503#M4320</link>
      <description>From &lt;A href="http://www.rapierbit.org/linux/winmgrs.html" target="_blank"&gt;http://www.rapierbit.org/linux/winmgrs.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;the key is .xinitrc &lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;...&lt;BR /&gt;if [ $ARG = "gnome" ]; then&lt;BR /&gt;  WM=gnome-session           &lt;BR /&gt;elif [ $ARG = "kde" ]; then&lt;BR /&gt;  WM=startkde&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;With this .xinitrc, from bash, just run startx gnome, startx kde.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Apr 2003 17:10:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953503#M4320</guid>
      <dc:creator>C.W.Holeman II</dc:creator>
      <dc:date>2003-04-18T17:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Starting KDE or GNOME using startx</title>
      <link>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953504#M4321</link>
      <description>alternatively you can use either of these commands &lt;BR /&gt;(a)gdm to start GNOME Desktop &lt;BR /&gt;(b)kdm to start KDE Desktop&lt;BR /&gt;The m stands for manager i guess</description>
      <pubDate>Fri, 18 Apr 2003 17:54:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953504#M4321</guid>
      <dc:creator>Paddy_1</dc:creator>
      <dc:date>2003-04-18T17:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Starting KDE or GNOME using startx</title>
      <link>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953505#M4322</link>
      <description>Go with Paddy,&lt;BR /&gt;instead of using startx to start the GUI, use which window manager you wish. gdm starts Gnome and kdm starts KDE, both of these will invoke the startx command.</description>
      <pubDate>Wed, 23 Apr 2003 12:52:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953505#M4322</guid>
      <dc:creator>Matthew Couper</dc:creator>
      <dc:date>2003-04-23T12:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Starting KDE or GNOME using startx</title>
      <link>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953506#M4323</link>
      <description>I think gdm and kde works only when logged in as root. when i tried these commands from other login it gives an error like only root can invoke this command. any comments.&lt;BR /&gt;&lt;BR /&gt;I think using the argument option in .xintrc is a good solution.</description>
      <pubDate>Thu, 24 Apr 2003 02:58:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/starting-kde-or-gnome-using-startx/m-p/2953506#M4323</guid>
      <dc:creator>Satish Kumar_2</dc:creator>
      <dc:date>2003-04-24T02:58:49Z</dc:date>
    </item>
  </channel>
</rss>

