- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- setting a dump terminal
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
09-24-2002 01:20 AM
09-24-2002 01:20 AM
The dump terminal is meant to act as an indicator to user about the status of the program during testing operation.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 01:29 AM
09-24-2002 01:29 AM
Re: setting a dump terminal
open a telnet session and look at the device file
# who am i
From the terminal where you're running the script, before to run this run
# script
this saves all input/output against the file... and appears on the other window
good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 01:34 AM
09-24-2002 01:34 AM
Re: setting a dump terminal
There is no option to use dump terminal in this way.
May be you can check the logs(log files) generated by programs to know the status on the dump terminal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 02:32 AM
09-24-2002 02:32 AM
Re: setting a dump terminal
If I want to send the status to the terminal, how do I get its device file during setup and customize it to be a display window only.
Appreciate the helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 04:10 AM
09-24-2002 04:10 AM
Re: setting a dump terminal
Unix treat terminal as a file. If no o/p file is specified it writes to standard o/p (terminal/console) which is also a file.
you are trying to customize a shell window to be a small size dump terminal receiving status from another active shell window that is executing the program in a workplace.
Now the unix has to recognize the shell window has another o/p device, so this shell window must be a device file, which we can only dream
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 04:11 AM
09-24-2002 04:11 AM
Solutionsv1:/home/root>who am i
root pts/tc Sep 24 14:15
sv1:/home/root>Script started on Tue Sep 24 14:16:12 2002
sv1:/home/root>hola
sh: hola: not found.
sv1:/home/root>l
.ICEauthority, .TTauthority, .WindU, .Xauthority, .dt, .dtprofile,
.elm, .hh, .lsof_luna1, .netscape, .ovweb.conf, .profile,
.pvdrill_DISK.txt, .pvdrill_GLOBAL.txt, .pvdrill_PROCESS.txt,
.pvprinters_pattern, .rhosts, .sgmgr, .sh_history, .sw, .windu.hpito.seur.es,
CPU.csv, Mail, adviser.out, cfg, core, depotsg, etc, import,
kmtune_luna1, llll, mapfile, memoria.csv, nohup.out, nsmail,
sqlnet.log, swap.csv
sv1:/home/root>
In window 2
sv1:/home/root>script /dev/pts/tc
Script started, file is /dev/pts/tc
sv1:/home/root>hola
sh: hola: not found.
sv1:/home/root>l
.ICEauthority, .TTauthority, .WindU, .Xauthority, .dt, .dtprofile,
.elm, .hh, .lsof_luna1, .netscape, .ovweb.conf, .profile,
.pvdrill_DISK.txt, .pvdrill_GLOBAL.txt, .pvdrill_PROCESS.txt,
.pvprinters_pattern, .rhosts, .sgmgr, .sh_history, .sw, .windu.hpito.seur.es,
CPU.csv, Mail, adviser.out, cfg, core, depotsg, etc, import,
kmtune_luna1, llll, mapfile, memoria.csv, nohup.out, nsmail,
sqlnet.log, swap.csv
sv1:/home/root>
All that apperar in window 2 is copied to window 1 ....
try... it work!