- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- XDialog obsolete
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
05-16-2002 11:35 PM
05-16-2002 11:35 PM
in HP-UX 11.11 the XDialog tool is no more supported.
Can someone suggest a simple alternative to this tool?
Thanks in advance
Enrico
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 11:56 PM
05-16-2002 11:56 PM
SolutionGo to www.software.hp.com
Public Domain Software
I am sure there is something there.
Or make one.
This puts a message to DISPLAY after n hours and minutes
#!/bin/ksh
hours=$1
shift 1
min=$1
shift 1
let seconds=$hours*60
let seconds=$seconds+$min
let seconds=$seconds*60
sleep $seconds
/usr/bin/X11/hpterm -fn courB24 -geometry 90x9 -fg red -bg khaki -e /bin/ksh -c
"echo $* ;echo return to exit;read a"&
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 12:13 AM
05-17-2002 12:13 AM
Re: XDialog obsolete
there ist a good thread:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0x29f36c96588ad4118fef0090279cd0f9,00.html
this should give you all needed information. In short: there is a xdialog replacement on the porting center. And the official replacement is the dtksh (which seems pretty complicated to me).
I think i also read that you are able to copy xdialog from 10.20 and use it on 11.11 but i can't confirm it.
Hope this helps
Regards Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 05:41 AM
05-20-2002 05:41 AM
Re: XDialog obsolete
I've been in the process of upgrading all our workstations to 11.11. I, too, have noticed that xdialog is not available with 11.11. Many of our applications use this function to send messages to the user. I've just copied the 10.20 executable to the /usr/bin/X11 directory under 11.11, and have had no complaints. Testing reveals that is functions the same as in 10.20. (Now if I can convince the programmers to use something other that xdialog...).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 05:50 AM
05-20-2002 05:50 AM
Re: XDialog obsolete
thank you for your reply.
Actually we use from several times the xdialog 10.20 in the HP-UX 11 environment, and it works fine! My doubt was about the sudden obsolescence in some next release of HP-UX, so I prefere to use something else supported by HP.
Thanks again
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 06:11 AM
05-20-2002 06:11 AM
Re: XDialog obsolete
actually you can simply write a (very small) DeskTop KornSHell (dtksh) script to substitute the missing "xdialog"...
And since "dtksh" is part of CDE, it is available to you!
Just my $0.02,
Wodisch