- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Starting KDE or GNOME using startx
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2003 10:24 PM
тАО04-16-2003 10:24 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2003 10:36 PM
тАО04-16-2003 10:36 PM
Re: Starting KDE or GNOME using startx
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.
Currently, this sort of service is availble if you are using either the Gnome (or KDE I beleive) login servers (gdm for Gnome).
However this means that there's always an X session open, just not necessarily logged in.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-16-2003 11:32 PM
тАО04-16-2003 11:32 PM
SolutionOn RedHat, you may use switchdesk before startx to select which X Window Environment you want to use.
But this is not "while using startx command".
So you write a small shell script to (1) select X Window Env, then
(2) start X Window.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2003 10:10 AM
тАО04-18-2003 10:10 AM
Re: Starting KDE or GNOME using startx
the key is .xinitrc
#!/bin/sh
...
if [ $ARG = "gnome" ]; then
WM=gnome-session
elif [ $ARG = "kde" ]; then
WM=startkde
fi
With this .xinitrc, from bash, just run startx gnome, startx kde.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2003 10:54 AM
тАО04-18-2003 10:54 AM
Re: Starting KDE or GNOME using startx
(a)gdm to start GNOME Desktop
(b)kdm to start KDE Desktop
The m stands for manager i guess
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2003 05:52 AM
тАО04-23-2003 05:52 AM
Re: Starting KDE or GNOME using startx
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2003 07:58 PM
тАО04-23-2003 07:58 PM
Re: Starting KDE or GNOME using startx
I think using the argument option in .xintrc is a good solution.