- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to run CDE interface remote from linux cli...
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
04-04-2003 04:44 AM
04-04-2003 04:44 AM
Anyone with such an experience ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 05:00 AM
04-04-2003 05:00 AM
Re: how to run CDE interface remote from linux client ?
http://www.linux.org/docs/ldp/howto/mini/Remote-X-Apps.html
Regards
Col.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 05:05 AM
04-04-2003 05:05 AM
SolutionI have done this the following way:
. on the linux machine start the x-server
with this command:
/usr/bin/X11/X -query
where ipaddress is the address for the
machine you want to get a CDE login from.
You will then probalby experience a problem with the fonts that CDE require. To fix this
do the following:
1. Log in on the HP-UX machine.
2. Edit the configuration file of the font server:
# cd /etc/X11/fs
# vi config
add the directory /usr/dt/config/xfonts/C to the "catalogue"
line (comma seperated list)
3. Copy /usr/dt/config/Xsetup to /etc/dt/config (if it doesn't already exist
4. Edit /etc/dt/config/Xsetup and add the following line at the end of
the file:
$XDIR/xset fp+ tcp/
Example: $XDIR/xset fp+ tcp/192.15.32.5:7000
5. Edit /etc/rc.config.d/xfs and set RUN_X_FONT_SERVER to 1.
6. Restart the font server
# /sbin/init.d/xfs stop
# /sbin/init.d/xfs start
7. Check with the following command that xfs is running:
# ps -ef | grep xfs
8. Log in again on the PC. Check with the command xset -q that
the fontpath now includes a reference to the fonserver. You shuold
find this in the font-path:
tcp/
where ip-adresse is the address to the server you specified in step 4.
Regards
Olav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 05:18 AM
04-04-2003 05:18 AM
Re: how to run CDE interface remote from linux client ?
> Normally spoken if I want to get a CDE from 1 machine to
> another i Test with the X command something like this
>
>
> /usr/bin/X11/X -query 15.160.35.105 -fp
> tcp/15.160.35.105:7000 -terminate
>
> Where 15.160.35.105 is the ip address of the machine I want
> and also a machine where xfs is running to give me the CDE fonts.
>
> CDE includes a small set of fonts and font aliases which are
> not part of the standard MIT X distribution. In order for
> CDE to function correctly, these fonts must be made available
> to X-servers (X-Terminals) displaying CDE.
>
>
> The simple solution to this problem involves configuring and
> running a font-server on the system which is running CDE and
> forcing the font server into the X-Server (X-Terminal) font-path.
>
> To do this a few things are required:
>
> 1 - The font server needs to be configured to include the CDE
> fonts in its catalog
>
> EDIT: /etc/X11/fs/config
>
> Append ",/usr/dt/config/xfonts/C" to the end of the
> "catalogue = ..." line
>
> EDIT: /etc/rc.config.d/xfs
>
> Set the following variable: "RUN_X_FONT_SERVER=1"
>
> EXECUTE: /sbin/init.d/xfs start
>
> If the font-server is already running, kill it and
> restart it.
>
> 2 - Force CDE to add the font-server to the X-Server font-path
> by editing the Xsetup file. (NOTE: This steps REQUIRES
> the IP address of the CDE session server. You can get
> this information by running: nslookup `hostname`.)
>
> COPY: /usr/dt/config/Xsetup to /etc/dt/config/Xsetup
> EDIT: /etc/dt/config/Xsetup
>
> Add the following line to /etc/dt/config/Xsetup replacing
> "IPADDRESS" with the IP address of the server as returned
> from "nslookup `hostname`":
>
> $XDIR/xset fp+ tcp/IPADDRESS:7000 1>/dev/null
>
>
>
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2003 01:18 AM
04-05-2003 01:18 AM
Re: how to run CDE interface remote from linux client ?
Thanks very much,
Marian Popeanag