T.R | Title | User | Personal Name | Date | Lines |
---|
3559.1 | other distribution sites? | DECWIN::BROUILLETTE | | Wed Oct 31 1990 16:53 | 6 |
|
If you copy the kits and would like to offer your node as an
additional distribution site, please post the location as a reply to
this note.
Thanks
|
3559.2 | DECW$STARTXTERMINAL.COM problem DECwindows IFT V3 | HANNAH::CHOU | | Wed Oct 31 1990 17:12 | 19 |
| There is a problem in DECW$STARTXTERMINAL.COM under DECwindows V3 IFT. This
problem is corrected with the LAT/Master which is also in field test now.
The symptom of the problem is the VT1000 can not find the 75DPI fonts.
The DECW$DEVICE.COM has changed for DECwindows V3, the 75DPI directory is
missing, the old DECW$STARTXTERMINAL.COM file can no longer load 75DPI
DECW$FONT on DECWwindows V3 and we get only 100 DPI fonts.
To fix this problem, do the following:
$ COPY DECW$STARTXTERMINAL.COM SYS$COMMON:[SMRMGR]:
$ DEASSIGN/EXE/TABLE=DECW$LOGICAL_NAMES DECW$XTERMINAL_FONT
$ @SYS$MANAGER:DECW$STARTUP XTERMINAL
**note** the DECW$STARTXTERMINAL.COM file in the next reply works with the
old LTDRIVER on V5.3 through V5.4-1.
Hal Chou
|
3559.3 | New DECW$STARTXTERMINAL.COM | HANNAH::CHOU | | Wed Oct 31 1990 17:18 | 166 |
| $ !
$ ! DECW$STARTXTERMINAL.COM - Start up the DECwindows Terminal support environment
$ !
$ !****************************************************************************
$ !* *
$ !* COPYRIGHT (c) 1989 BY *
$ !* DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASSACHUSETTS. *
$ !* ALL RIGHTS RESERVED. *
$ !* *
$ !* THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED *
$ !* ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE *
$ !* INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER *
$ !* COPIES THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY *
$ !* OTHER PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY *
$ !* TRANSFERRED. *
$ !* *
$ !* THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE *
$ !* AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT *
$ !* CORPORATION. *
$ !* *
$ !* DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS *
$ !* SOFTWARE ON EQUIPMENT WHICH IS NOT SUPPLIED BY DIGITAL. *
$ !* *
$ !* *
$ !****************************************************************************
$ !
$ ! This command file sets up the environment needed for support of DECwindows
$ ! Terminals. It should be run at system startup time.
$ !
$ ! It is not advisable to edit this procedure as it may be replaced in
$ ! future software updates. Instead, you should perform any site-specific
$ ! commands in your SYSTARTUP file.
$ !
$ ! p1 =
$ ! p2 =
$ ! p3 =
$ ! p4 =
$ !
$
$ !
$ ! If we aren't doing workstation setup, then don't do this.
$ !
$ if f$trnlnm("DECW$IGNORE_WORKSTATION") then exit
$
$ !
$ ! Check to make sure that DECwindows Terminal support is to be installed
$ !
$ if f$trnlnm("DECW$INSTALL_XTERMINAL") .nes ""
$then
$ if .not f$trnlnm("DECW$INSTALL_XTERMINAL") then exit
$else
$ exit
$! if decw$device .nes "NONE" then exit
$endif
$ !
$ !This command file work with the old LTDRIVER only.
$ !
$ ! Define logical names for font directories
$ !
$! @sys$manager:decw$logicals decw$xterminal_table decw$define_xterminal False
$
$ ! If DECW$DEVICE.COM failed to define the font directories, do it here.
$
$ decw$xterminalfont = "DECW$SYSCOMMON:[SYSFONT.DECW.*]"
$
$ on error then goto xterminal_done
$
$ !
$ ! Load class driver
$ !
$ sysgen := $sysgen
$ IF .NOT. F$GETDVI("_XT0:","EXISTS") -
THEN SYSGEN CONNECT xt0/NOADAPTER/DRIVER=xtdriver
$
$ !
$ ! Install LAT transport
$ !
$ if f$file("sys$share:decw$transport_lat.exe","known") -
then install replace sys$share:decw$transport_lat
$ if .not. f$file("sys$share:decw$transport_lat.exe","known") -
then install create sys$share:decw$transport_lat/open/share/header
$
$ !
$ ! Install DECnet access
$ !
$ decnet_access_name = "decw$dwt_decnet"
$
$ if f$file("sys$system:''decnet_access_name'.exe","known") -
then install replace sys$system:'decnet_access_name'
$ if .not. f$file("sys$system:''decnet_access_name'.exe","known") -
then install create sys$system:'decnet_access_name'/priv=SYSNAM
$
$ !
$ ! Clean up old log and data files and then start up the font daemon
$ !
$
$ font_daemon_proc = "DECW$FD"
$ font_daemon_name = "decw$dwt_font_daemon"
$
$ IF F$SEARCH("sys$manager:''font_daemon_name'_output.log;-1") .NES. "" -
THEN PURGE/NOLOG sys$manager:'font_daemon_name'_output.log
$ IF F$SEARCH("sys$manager:''font_daemon_name'_error.log;-1") .NES. "" -
THEN PURGE/NOLOG sys$manager:'font_daemon_name'_error.log
$
$ ! Stop running Font Daemon, if any
$
$ context = ""
$kill_fd_loop:
$ pid = f$pid(context)
$ if pid .eqs "" then goto kill_fd_done
$ if f$getjpi(pid,"PRCNAM") .nes font_daemon_proc then goto kill_fd_loop
$ stop /ident='pid'
$ wait 0:0:10
$kill_fd_done:
$
$ IF F$TRNLNM("''font_daemon_name'_dump") .NES. ""
$ THEN
$ dump = "/DUMP"
$ ELSE
$ dump = "/NODUMP"
$ ENDIF
$
$ wsdef = 500
$ if F$TRNLNM("''font_daemon_name'_wsdef") .NES. "" -
THEN wsdef = F$TRNLM("''font_daemon_name'_wsdef")
$
$ wsquota = 1300
$ IF F$TRNLNM("''font_daemon_name'_wsquota") .NES. "" -
THEN wsquota = F$TRNLM("''font_daemon_name'_wsquota")
$
$ wsextent = 4000
$ IF F$TRNLNM("''font_daemon_name'_wsextent") .NES. "" -
THEN wsextent = F$TRNLM("''font_daemon_name'_wsextent")
$
$ page_file = 25000
$ IF F$TRNLNM("''font_daemon_name'_page_file") .NES. "" -
THEN page_file = F$TRNLM("''font_daemon_name'_page_file")
$
$
$ if f$trnlnm("DECW$XTERMINAL_FONT") .eqs "" then -
decw$define decw$xterminal_font 'decw$xterminalfont'
$
$ RUN /DETACHED sys$system:'font_daemon_name' -
/INPUT= nl: -
/OUTPUT= sys$manager:'font_daemon_name'_output.log -
/ERROR= sys$manager:'font_daemon_name'_error.log -
/PROCESS_NAME= "''font_daemon_proc'" -
/PRIVILEGES= (noall,cmkrnl,tmpmbx,netmbx) -
/IO_BUF= 60 -
/IO_DIR= 100 -
/FILE= 92 -
/AST_LIM= 100 -
/BUFFER= 50000 -
/PAGE_FILE= 'page_file' -
/WORKING_SET= 'wsdef' -
/MAXIMUM_WORKING_SET= 'wsquota' -
/EXTENT= 'wsextent' -
/TIME_LIMIT= 0 -
/TIME_LIMIT= 0 -
/NOSWAP -
'dump'
$
$xterminal_done:
$ if .not $status then -
write sys$output "DECW$XTERMINAL startup failed, continuing..."
$ EXIT 1
|
3559.4 | Installation in SYS$SPECIFIC? | RAGS::SIEBOLD | Sentenced to PRISM again! | Thu Nov 01 1990 15:33 | 6 |
|
Does the kit allow me to install it in SYS$SPECIFIC so other cluster
members are not effected? Or do I have to take the kit apart ?
Thanks
Thomas
|
3559.5 | | LESLIE::LESLIE | Andy Leslie | Thu Nov 01 1990 17:05 | 6 |
| You'll have to take the kit apart.
I wouldn't recommend it, but you know what you're doing, Thomas :-)
/andy/
|
3559.6 | | HKOVC::TERENCE | From Middlesex, UWO | Thu Nov 01 1990 20:01 | 5 |
|
Do I really need a PAK to install V3 IFT?
-Terry
|
3559.7 | | KIKAHA::LESLIE | Andy Leslie | Fri Nov 02 1990 06:05 | 1 |
| Yes.
|
3559.8 | Central Mass (SHR) kit location | GOTIT::harley | Eat at Ralphs and live forever! | Fri Nov 02 1990 10:11 | 6 |
| I've placed a copy if the kits (no space for docs) in:
MPGS::VMS$Kits:<DECW.V3>
(DFS) .Eng.Stor_Sys.SHRISG.MPGS_VMS$Kits <DECW.V3>
/harley
|
3559.9 | | PRAVDA::JACKSON | You run your mouth, I'll run my business brother | Fri Nov 02 1990 11:16 | 8 |
| Mill Kit location
DECnet HARBOR::DISK$KITS:[DECW_V3]*.*;*
DFS .MLO.S.WRKSTN_BPM.DFS.HARBOR_KITS directory [DECW_V3]
-bill
|
3559.10 | Correction to the DW V3.0 PAK name | JARETH::HORN | | Tue Nov 06 1990 18:50 | 8 |
| There is an error in the directions given to pull the DW V3.0 PAK from
VTX. The PAK name is incorrect. The corrected PAK name is
DW-DEV-KIT-OSF-V.
As there are only 4 royalty bearing PAKs in VTX anyway, and 2 are
Ultrix products, I don't think this will confuse too many people!
Janis
|
3559.11 | | QUARK::LIONEL | Free advice is worth every cent | Wed Nov 07 1990 09:23 | 4 |
| How can we find out how much our cost center will be charged for
the PAK? There's no clue in the VTX PAK system.
Steve
|
3559.12 | | RTL::GRASS | Steve Grass | Wed Nov 07 1990 14:39 | 6 |
| Steve,
The charge does *not* come out of your cost center. DEC will be charged
$40 per license.
steve
|
3559.13 | | PSW::WINALSKI | Careful with that VAX, Eugene | Wed Nov 07 1990 14:54 | 4 |
| Why, then, does the PAK system ask for a cost center number before it will issue
you the PAK?
--PSW
|
3559.14 | Really? Then maybe someone should tell the VTX PAK folks... | QUARK::LIONEL | Free advice is worth every cent | Wed Nov 07 1990 16:03 | 14 |
| The following text is displayed by the VTX PAK menu for royalty PAKs. Note
that it explicitly says there will be a cost-center cross charge. Is the
text wrong or are we actually being charged?
The following Digital software product(s) are bound by a royalty agreement
with a third party, and use PAKs as the tracking mechanism for Digital to
fulfill its obligation for the usage of these product(s) internally. Each
PAK issued from the following list results in a cost center cross charge for
the royalty payment, and a royalty payment from DIGITAL to a third party.
For more information contact the Royalty Administration Organization.
Steve
|
3559.15 | And the answer is - $14 | QUARK::LIONEL | Free advice is worth every cent | Mon Nov 12 1990 11:49 | 7 |
| I asked my cost center manager whether or not we were being charged for
the Motif PAKs. The question eventually got routed to our financial planner
(I think) who said that "Royalty Administration" told her that the cost
centers were indeed being charged for each Motif PAK, but that the fee was
$14, not $40, per CPU. This is a one-time only charge for each system.
Steve
|
3559.16 | | R2ME2::GRASS | Steve Grass | Mon Nov 12 1990 13:01 | 3 |
| Sorry 'bout that. I guess I was given the wrong information.
steve
|
3559.17 | Area 37 Kit Source - Both Kits & Documentation | AITPLB::PBRIGGS | Pete Briggs - AITC (IDLB5-1/E9 [291-8674]) | Thu Nov 15 1990 11:36 | 14 |
| The complete kit and documentation are available on:
midevl::kits$disk:[DECWINDOWS.V3.KIT]
and
midevl::kits$disk:[DECWINDOWS.V3.DOC]
respectively.
The DFS access point for the disk is:
.eng.ai.aiis.DISK$MIDEVL_FT$1
|