- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Difference between a console and terminal in CDE
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
07-03-2002 03:29 AM
07-03-2002 03:29 AM
Difference between a console and terminal in CDE
I know there is a difference between console and terminal in CDE of Solaris. What about HP-UX CDE ?
Rgds,
YC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 03:47 AM
07-03-2002 03:47 AM
Re: Difference between a console and terminal in CDE
It is also same in HP.
Actual console can't be accessed using CDE(from desktop), it can be accessed unsing Web console, Lan console, or by directly connecting to machine.
If your machine has graphics card then console itself will be in CDE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 03:56 AM
07-03-2002 03:56 AM
Re: Difference between a console and terminal in CDE
CDE is common Desktop Environment.
You can have the CDE on your console if it has a graphical card.
Even you can access CDE on your remote machines by installing the X-windows software like
Exceed,ReflectionX and ManageX.
The CDE on Solaris and Hpux is the same.
All the files are located on the same path,it has similar features.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 04:02 AM
07-03-2002 04:02 AM
Re: Difference between a console and terminal in CDE
I don't know how to launch the console in HP-UX CDE, could you advice ?
Rgds,
YC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 04:49 AM
07-03-2002 04:49 AM
Re: Difference between a console and terminal in CDE
In CDE, at the down bar you can see a monitor, just above that there is atriangle shaped button, click that button, where u can see a console. by clicking on console you get a screen, which is the console.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 04:58 AM
07-03-2002 04:58 AM
Re: Difference between a console and terminal in CDE
Thanks but that is not a console, it is a terminal. I actually referring to console that able to display warning messages in CDE which CDE of Solaris is able to do it.
Rgds,
YC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 05:23 AM
07-03-2002 05:23 AM
Re: Difference between a console and terminal in CDE
The way to specify that a terminal window will act as a console is to start hpterm (xterm will work but has lots of limitations) using the -C option. In an open terminal window, start the console with:
hpterm -C -xrm '*loginShell: true' &
You may want to also have all your terminal windows actually login (they bypass normal logins by default). Do this by creating (or appending to) a .Xdefaults file in your $HOME directory:
*loginShell: true
*scrollBar: true
*saveLines: 10s
HPterm*background: navy
HPterm*foreground: white
Xterm*background: darkslateblue
Xterm*foreground: white
The first line causes dtterm, hpterm and xterm to all login (that is, run /etc/profile and then .profile). The other options are nice-to-have options. The color changes make it easier to identify what type of terminal emulator you are running.
Note that the default is to bypass 'normal' login steps due to customizations in /etc/profile and .profile that do not provide proper Xwindow inheritance, typically setting the $TERM value. You can (and should) escape these features with a conditional test in /etc/profile and/or .profile:
set -u
UNSET=IamNOTset
DT=${DT:-$UNSET}
VUE=${VUE:-$UNSET}
if [ "$VUE" = $UNSET -o "$DT" = $UNSET ]
then
.. do 'normal' login stuff like ttytype or tset
fi
[ $DT = $UNSET ] && unset DT
[ $VUE = $UNSET ] && unset VUE
The reason for the UNSET variable is to use set -u to prevent bad scripting (actually, spelling) errors from making big mistakes. DT and VUE ARE not defined if you aren't running these processes and set -u would cause an error in the if [ ... ] statement. This way, they become defined for testing and then are set back to their original value at the end of the script.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2002 05:39 AM
07-03-2002 05:39 AM
Re: Difference between a console and terminal in CDE
-C -title Console -n Console -iconic &
There may be still a real dtterm console under the application manager, but I can not say absolutely. You can also edit your dtwmrc file and add the entry manually so that you can launch in right-click on back ground like in solaris.
Regards,
Shannon