mirror of
https://github.com/InstallerLegacy/virtualhub.eu.org.git
synced 2024-10-22 14:06:03 +02:00
Compare commits
2 Commits
e1490b5910
...
4fb1560da6
Author | SHA1 | Date | |
---|---|---|---|
4fb1560da6 | |||
373e7ca1c9 |
@ -5,7 +5,7 @@ description: "! RSTS-11 v4B was an operating system for the DEC PDP-11 computer.
|
||||
sidebar_position: 2
|
||||
---
|
||||
|
||||
<!-- import DocCardList from '@theme/DocCardList'; -->
|
||||
import DocCardList from '@theme/DocCardList';
|
||||
|
||||
# ! RSTS-11 v4B
|
||||
|
||||
@ -13,7 +13,7 @@ sidebar_position: 2
|
||||
|
||||
! RSTS-11 v4B was an operating system for the DEC PDP-11 computer. We can run it on SIMH PDP-11 emulator.
|
||||
|
||||
<!-- >DocCardList /> -->
|
||||
<DocCardList />
|
||||
|
||||
## Manuals
|
||||
|
||||
@ -31,7 +31,7 @@ You may also be interested in the PDP-11 manuals. It was the computer on which !
|
||||
|
||||
- [VirtualHub Screenshots](https://screenshots.virtualhub.eu.org/1970s/1975/rsts-11-v4b/)
|
||||
- [A guide providing instructions on how to install ! RSTS-11 v4B manually on SIMH PDP-11 emulator](https://iamvirtual.ca/PDP-11/RSTS-11/Install.htm)
|
||||
- [Run ! RSTS-11 v4B in your web browser (Not working as of 05-June-2024))](https://skn.noip.me/pdp11/pdp11.html) (Instructions given on that page)
|
||||
- [Run ! RSTS-11 v4B in your web browser (Not working as of 05-June-2024)](https://skn.noip.me/pdp11/pdp11.html) (Instructions given on that page)
|
||||
- [Computer History Wiki page](https://gunkies.org/wiki/RSTS/E)
|
||||
- [Wikipedia page](https://en.wikipedia.org/wiki/RSTS/E)
|
||||
- [Computer History Wiki PDP-11 page](https://gunkies.org/wiki/PDP-11)
|
||||
|
120
docs/1970s/1975/rsts-11-v4b/simh/index.md
Normal file
120
docs/1970s/1975/rsts-11-v4b/simh/index.md
Normal file
@ -0,0 +1,120 @@
|
||||
---
|
||||
keywords: ["RSTS-11 v4B", "PDP-11", SIMH, 1970s, 1975]
|
||||
image: ./rsts-11-v4b-SIMH-3.webp
|
||||
description: 'We can run ! RSTS-11 v4B on the SIMH PDP-11 emulator. First, we need to download the ! RSTS-11 image. You can download the image needed to run it on the SIMH PDP-11 emulator from here.'
|
||||
sidebar_position: 1
|
||||
sidebar_label: "! RSTS-11 v4B on SIMH"
|
||||
---
|
||||
|
||||
# How to install ! RSTS-11 v4B on SIMH?
|
||||
|
||||
![SIMH PDP-11 emulator with ! RSTS-11 v4B](./rsts-11-v4b-SIMH-3.webp)
|
||||
|
||||
We can run [! RSTS-11 v4B](/1970s/1975/rsts-11-v4b) on the SIMH PDP-11 emulator. First, we need to download the ! RSTS-11 v4B image.
|
||||
|
||||
## Downloads
|
||||
|
||||
:::tip
|
||||
|
||||
This tutorial covers how to use ! RSTS-11 v4B on SIMH PDP-11 emulator using a pre-installed image. If you want to manually install RSTS-11 v4B from its tape image, visit [this page](https://iamvirtual.ca/PDP-11/RSTS-11/Install.htm).
|
||||
|
||||
:::
|
||||
|
||||
You can download the image needed to run ! RSTS-11 v4B on the SIMH PDP-11 emulator from here:
|
||||
|
||||
- [! RSTS-11 v4B image](https://iamvirtual.ca/PDP-11/RSTS-11/RSTS11v4B.DSK)
|
||||
|
||||
## Using ! RSTS-11 v4B
|
||||
|
||||
:::tip
|
||||
|
||||
If you have not already installed SIMH PDP-11 emulator, see [the VirtualHub Setup tutorial on how to do so](https://setup.virtualhub.eu.org/simh-pdp11/) on Linux and Windows.
|
||||
|
||||
:::
|
||||
|
||||
Create a folder somewhere to store the files for this VM, and move the file named `RSTS11v4B.DSK` into it.
|
||||
|
||||
Now we will create a config file for our VM. Create a text file called `pdp11.ini` with the following content in the VM folder:
|
||||
|
||||
```ini
|
||||
set cpu 11/05
|
||||
set cpu 64K
|
||||
set clk 60HZ
|
||||
set hk disable
|
||||
set ptr disable
|
||||
set dz disable
|
||||
set rl disable
|
||||
set rx disable
|
||||
set rp disable
|
||||
set rq disable
|
||||
set tm disable
|
||||
set ts disable
|
||||
set tq disable
|
||||
set tc disable
|
||||
set tm enable
|
||||
set rk enable
|
||||
attach rk0 RSTS11v4B.DSK
|
||||
attach lpt lineprinter.txt
|
||||
boot rk0
|
||||
```
|
||||
|
||||
![pdp11.ini](./rsts-11-v4b-SIMH-1.webp)
|
||||
|
||||
Now open a terminal and move to the VM folder. Run the following command to start the emulator:
|
||||
|
||||
```bash
|
||||
pdp11
|
||||
```
|
||||
|
||||
![pdp11](./rsts-11-v4b-SIMH-2.webp)
|
||||
|
||||
After the emulator starts, you will get a `OPTION?` prompt. Type `START` and press enter. Next, you will be asked for date. Provide the date in `DD-MMM-YY` format. For example, `05-JUN-74`. Try entering a date before the year 2000, to avoid problems related to [Y2K](https://en.wikipedia.org/wiki/Year_2000_problem).
|
||||
|
||||
After that, you will be asked for time. Enter the time in `HH:MM` format. For example, `19:23`. You will be asked if you want to enable crash dump. Type `Y` and press enter.
|
||||
|
||||
![Date and Time](./rsts-11-v4b-SIMH-3.webp)
|
||||
|
||||
Now start PIP by executing `RUN PIP`. After PIP starts, you will get a `#` prompt. You can now type `/DI` followed by enter. It will list all the files available on the disk.
|
||||
|
||||
![List of files in ! RSTS-11 v4B](./rsts-11-v4b-SIMH-4.webp)
|
||||
|
||||
That's it! We used ! RSTS-11 v4B. We can create a shell script to make it easy to launch the VM.
|
||||
|
||||
### Linux
|
||||
|
||||
Create a file called `rsts-11-v4b.sh` with the following content:
|
||||
|
||||
```bash
|
||||
#!/bin/bash
|
||||
pdp11
|
||||
```
|
||||
|
||||
Now make the file executable:
|
||||
|
||||
```bash
|
||||
chmod +x rsts-11-v4b.sh
|
||||
```
|
||||
|
||||
Now you can start the VM using the shell script. For example, on KDE you can right-click the file and choose `Run in Konsole` or on GNOME, where you can right-click the file and choose `Run as executable`. The VM will start.
|
||||
|
||||
See the [manuals section](/1970s/1975/rsts-11-v4b/#manuals) on the [main ! RSTS-11 v4B page](/1970s/1975/rsts-11-v4b) to learn how to use it.
|
||||
|
||||
### Windows
|
||||
|
||||
Create a file called `rsts-11-v4b.bat` with the following content:
|
||||
|
||||
```bash
|
||||
pdp11
|
||||
```
|
||||
|
||||
Now you can start the VM by double-clicking the shell script. See the [manuals section](/1970s/1975/rsts-11-v4b/#manuals) on the [main ! RSTS-11 v4B page](/1970s/1975/rsts-11-v4b) to learn how to use it.
|
||||
|
||||
## Credits
|
||||
|
||||
- The disk image and other files used above are from [https://iamvirtual.ca/PDP-11/RSTS-11/Install.htm](https://iamvirtual.ca/PDP-11/RSTS-11/Install.htm).
|
||||
|
||||
## Video tutorial
|
||||
|
||||
Do you want to follow the tutorial by watching a video? We will post a video on our [YouTube channel](https://www.youtube.com/@virtua1hub) soon.
|
||||
|
||||
Archives of this tutorial are available on [Wayback Machine](https://web.archive.org/web/*/https://virtualhub.eu.org/1970s/1975/rsts-11-v4b/simh/).
|
BIN
docs/1970s/1975/rsts-11-v4b/simh/rsts-11-v4b-SIMH-1.webp
Normal file
BIN
docs/1970s/1975/rsts-11-v4b/simh/rsts-11-v4b-SIMH-1.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
BIN
docs/1970s/1975/rsts-11-v4b/simh/rsts-11-v4b-SIMH-2.webp
Normal file
BIN
docs/1970s/1975/rsts-11-v4b/simh/rsts-11-v4b-SIMH-2.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
docs/1970s/1975/rsts-11-v4b/simh/rsts-11-v4b-SIMH-3.webp
Normal file
BIN
docs/1970s/1975/rsts-11-v4b/simh/rsts-11-v4b-SIMH-3.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
docs/1970s/1975/rsts-11-v4b/simh/rsts-11-v4b-SIMH-4.webp
Normal file
BIN
docs/1970s/1975/rsts-11-v4b/simh/rsts-11-v4b-SIMH-4.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
@ -11,3 +11,4 @@ These operating systems were made by [DEC](https://en.wikipedia.org/wiki/Digital
|
||||
|
||||
- [! CAPS-11](/1970s/1970/caps-11/)
|
||||
- [! DOS-11](/1970s/1970/dos-11/)
|
||||
- [! RSTS-11 v4B](/1970s/1975/rsts-11-v4b/)
|
||||
|
24
package-lock.json
generated
24
package-lock.json
generated
@ -3919,9 +3919,9 @@
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@types/node": {
|
||||
"version": "20.14.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.1.tgz",
|
||||
"integrity": "sha512-T2MzSGEu+ysB/FkWfqmhV3PLyQlowdptmmgD20C6QxsS8Fmv5SjpZ1ayXaEC0S21/h5UJ9iA6W/5vSNU5l00OA==",
|
||||
"version": "20.14.2",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz",
|
||||
"integrity": "sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"undici-types": "~5.26.4"
|
||||
@ -5036,9 +5036,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/caniuse-lite": {
|
||||
"version": "1.0.30001627",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001627.tgz",
|
||||
"integrity": "sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==",
|
||||
"version": "1.0.30001628",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001628.tgz",
|
||||
"integrity": "sha512-S3BnR4Kh26TBxbi5t5kpbcUlLJb9lhtDXISDPwOfI+JoC+ik0QksvkZtUVyikw3hjnkgkMPSJ8oIM9yMm9vflA==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "opencollective",
|
||||
@ -6498,9 +6498,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/electron-to-chromium": {
|
||||
"version": "1.4.789",
|
||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.789.tgz",
|
||||
"integrity": "sha512-0VbyiaXoT++Fi2vHGo2ThOeS6X3vgRCWrjPeO2FeIAWL6ItiSJ9BqlH8LfCXe3X1IdcG+S0iLoNaxQWhfZoGzQ==",
|
||||
"version": "1.4.790",
|
||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.790.tgz",
|
||||
"integrity": "sha512-eVGeQxpaBYbomDBa/Mehrs28MdvCXfJmEFzaMFsv8jH/MJDLIylJN81eTJ5kvx7B7p18OiPK0BkC06lydEy63A==",
|
||||
"license": "ISC"
|
||||
},
|
||||
"node_modules/emoji-regex": {
|
||||
@ -9370,9 +9370,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/jiti": {
|
||||
"version": "1.21.1",
|
||||
"resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.1.tgz",
|
||||
"integrity": "sha512-KMXpzEJMsOFyRj6ZpDTnnlJrdr9umUY+eut5vlRvjVixohitnRFIRTFw9MEu9zPlBxTHZo6xD5ftKYiQZuJYQw==",
|
||||
"version": "1.21.3",
|
||||
"resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.3.tgz",
|
||||
"integrity": "sha512-uy2bNX5zQ+tESe+TiC7ilGRz8AtRGmnJH55NC5S0nSUjvvvM2hJHmefHErugGXN4pNv4Qx7vLsnNw9qJ9mtIsw==",
|
||||
"license": "MIT",
|
||||
"bin": {
|
||||
"jiti": "bin/jiti.js"
|
||||
|
Loading…
Reference in New Issue
Block a user