This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$! SET NOVERIFY | |
$ SET NOON | |
$ ON CONTROL_Y THEN GOTO ERR_EXIT | |
$! | |
$! ----------------------- | |
$! HECNET-SCAN.COM | |
$! | |
$! READS LIST OF HECnet NODES, CREATES HTML FILES CONTAINING LIST, AND DETAILED STATUS OF INDIVIDUAL REACHABLE NODES | |
$! SEE THE FOLLOWING URL FOR OUTPUT OF THIS PROCEDURE: | |
$! http://sanyalnet-openvms-vax.freeddns.org:82/falserver/hecnet-status.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$! Runs every seven days at 4 AM from current time to update HECnet node status HTML files served by WASD | |
$ set noon | |
$ mynameis = f$environment("PROCEDURE") | |
$ goto 'f$mode()' | |
$interactive: | |
$ on warning then goto submit_error | |
$ submit /after="TODAY+7-04:00"/noprint/keep 'mynameis' | |
$ write sys$output "Periodic job has been requeued" | |
$ exit | |
$network: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$! Runs at 5 AM system time every day to copy nodenames.dat from MIM:: to DUA2:[FAL$SERVER] | |
$ set noon | |
$ mynameis = f$environment("PROCEDURE") | |
$ goto 'f$mode()' | |
$interactive: | |
$ on warning then goto submit_error | |
$ submit /after="tomorrow+5:00"/noprint/keep 'mynameis' | |
$ write sys$output "Periodic job has been requeued" | |
$ exit | |
$network: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* syslogd.c | |
* Take OPCOM messages received over a set of pseduo-ttys and redirect | |
* them to a UNIX syslogd. Tested with Multinet and UCX software under | |
* VMS 1.5 & 6.1 (AXP) and VMS 5.5 & 6.0 (VAX). | |
* | |
* The chan structure defines the translation of the opcom classes to | |
* Unix facilities/priorities. The Unix server is defined via the | |
* logical name SYSLOGD_SERVER in the LNM$SYSTEM_TABLE logical name table. | |
* Either a host name or an IP address may be used. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! This is the bridge configuration file. | |
! | |
! Comments start with a '!'. Empty lines are ignored. The file | |
! is re-read on a SIGHUP. | |
! | |
! ************************************************************* | |
! | |
! The bridge section defines all sources and destinations for | |
! this bridge program. | |
! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! This is the bridge configuration file. | |
! | |
! Comments start with a '!'. Empty lines are ignored. The file | |
! is re-read on a SIGHUP. | |
! | |
! ************************************************************* | |
! | |
! The bridge section defines all sources and destinations for | |
! this bridge program. | |
! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[openvms@sanyalnet-cloud-vps2 pdp11]$ cp ~/simh/simh-master/BIN/pdp | |
pdp11 pdp8 | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ cp ~/simh/simh-master/BIN/pdp* . | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ ls -al | |
total 2408 | |
drwxrwxr-x 2 openvms openvms 29 Nov 20 16:08 . | |
drwx------ 9 openvms openvms 4096 Nov 18 04:28 .. | |
-rwx------ 1 openvms openvms 1767283 Nov 20 16:08 pdp11 | |
-rwx------ 1 openvms openvms 690234 Nov 20 16:08 pdp8 | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[openvms@sanyalnet-cloud-vps2 pdp11]$ ############################### | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ ### Based on the fantastic instructions at http://pdp2011.sytse.net/wordpress/install-2/ | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ ############################### | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ vi rundecnet | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ ######################## | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ cat rundecnet | |
set cpu 11/70 | |
set cpu 2m | |
set lpt disable | |
set ptr disable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[openvms@sanyalnet-cloud-vps2 pdp11]$ ################### | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ #Based on instructions at http://pdp2011.sytse.net/wordpress/install-3/ | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ ################### | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ ./pdp11 | |
PDP-11 simulator V4.0-0 Beta git commit id: c9af9a70 | |
Disabling XQ | |
libpcap version 1.5.3 | |
Eth: opened OS device tap2 | |
sim> set ts ena |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[openvms@sanyalnet-cloud-vps2 pdp11]$ ################ | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ BASED ON INSTRUCTIONS AT http://pdp2011.sytse.net/wordpress/install-4/ | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ ################ | |
[openvms@sanyalnet-cloud-vps2 pdp11]$ wget ftp://ftp.trailing-edge.com/pub/rsxdists/dibol_v1_4.zip | |
--2016-11-20 19:06:03-- ftp://ftp.trailing-edge.com/pub/rsxdists/dibol_v1_4.zip | |
=> ‘dibol_v1_4.zip’ | |
Resolving ftp.trailing-edge.com (ftp.trailing-edge.com)... 71.191.185.32 | |
Connecting to ftp.trailing-edge.com (ftp.trailing-edge.com)|71.191.185.32|:21... connected. | |
Logging in as anonymous ... Logged in! | |
==> SYST ... done. ==> PWD ... done. |