- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Getting two contemporary CDE logins with two monit...
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
Forums
Discussions
Discussions
Discussions
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
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
02-28-2003 05:30 AM
02-28-2003 05:30 AM
Thanks,
Roberto.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2003 09:48 AM
02-28-2003 09:48 AM
Re: Getting two contemporary CDE logins with two monitors.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90122/B2355-90122_top.html&con=/hpux/onlinedocs/B2355-90122/00/00/35-con.html&toc=/hpux/onlinedocs/B2355-90122/00/00/35-toc.html&searchterms=TWO%20MONITORS&queryid=20030228-105401
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 07:56 AM
03-04-2003 07:56 AM
Re: Getting two contemporary CDE logins with two monitors.
I'd like to have one login sessions (dtlogin) for each monitor and activate them just by moving over the mouse pointer.
In this way I might login and work as two different users and switch between them just by entering one of the two monitors. This feature is needed by a department of the Company I work for and would allow me to throw away an old Entria X Terminal.
Roberto.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 08:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 08:07 AM
03-04-2003 08:07 AM
Re: Getting two contemporary CDE logins with two monitors.
Multi-Screen Support
This section refers to multi-screen configurations only. Running one X server on more than one graphics display is called a "multi-screen" operation. The keyboard and pointer are shared among the screens. Multiple screens are enabled via the /etc/X11/X*screens file. The X*screens file is used to configure the operation of the X server. The screens are defined in the X*screens file by specifying the appropriate special device files. See the section in this document on special device files and /etc/X11/X0screens for more information.
A separate screen entry for each graphics display is entered in the X*screens file. The order of entries always determines the screen number starting at 0. The devices can be arranged in any order.
For example, in the following multi-screen system, the screen numbers are assigned as indicated:
Screen /dev/crt1 # first entry is screen 0 (as in local:0.0)
Screen /dev/crt0 # second entry is screen 1 (as in local:0.1)
Screen /dev/crt2 # third entry is screen 2 (as in local:0.2)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 08:29 AM
03-04-2003 08:29 AM
Re: Getting two contemporary CDE logins with two monitors.
Basically you'll need to run insf -evd framebuf to create the appropriate graphics device files : insf -evd framebuf followed by :
How to setup a system to use multple screens
To accomplish this you need to edit /etc/X11/X0screens. You will specify the device files for the cards you wish to use. For instance, suppose you have an internal graphics card whose device file is /dev/crt and a CRX-48Z whose device file is /dev/crt2. To have the Xserver start on both graphics devices and to have dtwm manage both displays, perform the following: Edit /etc/X11/X0screens make sure the ONLY 2 uncommented lines in this file are:
Screen /dev/crt
Screen /dev/crt2
The X0screen configuration can also be done via the SAM application on systems with an OS level of 10.10 or higher.
sam --> Xserver Configuration --> Action --> Modify Screen Options
At this point, you would need to log out of CDE and kill the local Xserver. This can be done by killing the pid or holding down Shift, Control and Break simultaneously.
If you're running mwm, the only difference is to use:
Mwm*multiScreen: true
Mwm*screenList: screen_0 screen_1
in the /usr/lib/X11/app-defaults/Mwm file.
How to setup a system to use single logical screen
To have the Xserver and CDE treat the two monitors like one large, rectangular display, you will want to edit /etc/X11/X0screens and add the following line:
SingleLogicalScreen 1 2
/dev/crt0 /dev/crt1
In the same manner as described for the multi-headed display, you will need to exit out of CDE and restart the Xserver. The CDE login banner will then be split across the two screens.
NB see also man dtwm wrt cde's multiscreen and screenlist resources.