- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- configuring a new que in a vax4100
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
12-14-2004 05:59 AM
12-14-2004 05:59 AM
I know that in alphasystem is
$set printer/lowercase/printall/passall LRA0:
$init/que/on=LRA0:/start/processor=PRTSMB myque
$show printer/LRA0:
I appreciate your help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 06:10 AM
12-14-2004 06:10 AM
SolutionIf the VAX4100 (don't recall, sorry) has any devices on the motherboard, then they are likely called something like TTA0: (a small warning: don't try '$ SHOW DEVICE TT', because there is a logical name "TT" that points to your own current input device - try '$ SHOW DEVICE _TT' instead).
If you have additional ports on a serial I/O board, they might be named 'TXAu:' - you can try '$ SHOW DEVICE _T', but that might find other devices as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 06:17 AM
12-14-2004 06:17 AM
Re: configuring a new que in a vax4100
First check what is the name of the serial port. The sympliest way is to attach a terminal to it login and do a $ SHOW TERMINAL command. It should be TTA0. If it is OPA0 this is the console port and you should not configure a queue on it! Try with another port.
After obtaining the port (terminal) name you configure the queue by setting the terminal and init the queue with (replace TTA0 with yours name):
$ set terminal TTA0: /nobroadcast/width= ...
$ init/que/on=TTA0:/start myque
Remember that you must put all set terminal commands in yours systartup_vms.com.
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 06:37 AM
12-14-2004 06:37 AM
Re: configuring a new que in a vax4100
1-I am going to attach my laptop to the free MMJ port in the VAX system.
2- I will do a show terminal , must send me what kind of terminal it is.
3- Then
$set terminal YYYYx:/nobroadcast/width=132
$init/que/on=YYYYx:/start myque
$start/que myque
$print/que=myque login.com/copies=2
what do you think
another thing that I have to take care?
Thank you
w.s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 06:42 AM
12-14-2004 06:42 AM
Re: configuring a new que in a vax4100
SET TEMINAL/PERM/SPEED=19200/PARITY=EVEN
or whatever.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 08:12 AM
12-14-2004 08:12 AM
Re: configuring a new que in a vax4100
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 06:52 PM
12-14-2004 06:52 PM
Re: configuring a new que in a vax4100
I guess you would connect your laptop to vax and receive data from it.
If is true:
- you can set terminal with no broadcast and declare that has a printer port; you don't need set its width 132.
$ SET TERM tt/NOBROAD/NOWRAP/PRINTER
- You can create a new queue with terminal attribute.
$ INIT/QUE myqueue /ON=tt:/DEV=TERM/START
On your laptop you must set emulator printer to local printer. This may be a big problem, because most common PC printers don't work well or don't work any.
I need more information about laptop printer to help you in PC configuration.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 10:46 PM
12-14-2004 10:46 PM
Re: configuring a new que in a vax4100
Thank you.
W.S