- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Disable SMG-style screen scrolling for ANALYZE...
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-07-2006 01:31 AM
07-07-2006 01:31 AM
Disable SMG-style screen scrolling for ANALYZE/AUDIT
$ ANALYZE/AUDIT SYS$MANAGER:
Otherwise the output can appear (and scroll away) so quickly that it's lost, i.e., it's not possible to use the scroll bar to look at what's scrolled off the screen.
The author of DFU kindly supplied us with the DFU$NOSMG logical to prevent just this sort of thing when using that utility. Maybe there's some obscure or undocumented logical to do this for ANALYZE/AUDIT??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2006 01:34 AM
07-07-2006 01:34 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
how about the /PAUSE=seconds qualifier ? The default is 3 seconds, but you can specify much larger values.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2006 01:35 AM
07-07-2006 01:35 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2006 01:44 AM
07-07-2006 01:44 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
how about this:
$ pipe anal/audit SYS$MANAGER:SECURITY.AUDIT$JOURNAL | type/page sys$pipe
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2006 01:54 AM
07-07-2006 01:54 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2006 02:19 AM
07-07-2006 02:19 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
Volker's last suggestion about using TYPE/PAGE=SAVE is useful, and Ian's about SET TERM/LA75 a little less so :-)
I'm trying to make things easy for a new-to-VMS security officer to do simple audits. A bit of DCL could do the trick to keep them from having to type the whole PIPE sequence. Though he's unix-savvy and gets the concept, I'd like to make it easier for him.
* Side note for HP VMS folks: *
It would sure be nice if there were a /NOSMG qualifier or else a /PAGE=SAVE qualifier like the one available with TYPE.
The same issue exists for LATCP though I don't use it and suspect it's not a big enough issue for anyone at HP worry about either
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2006 04:35 AM
07-07-2006 04:35 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
looks lke a nice one for HP Advocacy.
It has irritated me just enough that I can promise you my vote!
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2006 08:51 PM
07-09-2006 08:51 PM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2006 12:49 AM
07-10-2006 12:49 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
But for simplicity, you can set the Pipe statement (given by Volker Halle) into a symbol in the login script. But you may also need to use /Since= so that it does not always display to the beginning of the file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2006 07:45 AM
09-05-2006 07:45 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
e.g.
$ ANALYZE/AUDIT SYS$MANAGER:/output=d.d
or create a commandfile to do this for you.
Something like:
$ ANALYZE/AUDIT SYS$MANAGER:/output=d.d
$ type/page/save d.d
$ delete d.d;
Doug
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2006 08:10 AM
09-05-2006 08:10 AM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
sufficiently annoying that my usual procedure
is to hit CTRL/Z as soon as it says anything
(other than "End Of File for input reached.").
Then I re-run the command with a /OUTP = file
qualifier, and use an editor to look at that
file.
I'm normally looking for the (roughly) daily
SSH break-in attempts, and these typically
run more than 1000 lines, so a real editor is
more useful to me than any tool with more
limited capability.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2006 09:14 PM
09-05-2006 09:14 PM
Re: Disable SMG-style screen scrolling for ANALYZE/AUDIT
$ PIPE ANALYZE/AUDIT | TYPE/PAGE=SAVE SYS$INPUT
But I still think it would be good for utilities that use this SMG-like scrolling to provide a way to disable it.