This commit is contained in:
Legacy Installer 2024-08-09 13:12:07 +05:30
parent 523308d64b
commit 84aace7742
7 changed files with 145 additions and 2 deletions

View File

@ -1,7 +1,7 @@
---
keywords: [1970s, 1975]
image: ./1975.webp
description: "There was one operating system of our interest which was released in the year 1975. It was:"
description: "There were four operating system of our interest which were released in the year 1975. They were:"
sidebar_position: 7
---
@ -11,6 +11,6 @@ import DocCardList from '@theme/DocCardList';
![! Unix v6 from 1975](./1975.webp)
There was one operating system of our interest which was released in the year 1975. It was:
There were four operating system of our interest which were released in the year 1975. They were:
<DocCardList />

View File

@ -0,0 +1,42 @@
---
keywords: ["RT-11 v2", "PDP-11", 1970s, 1975]
image: ./rt-11-v2.webp
description: "! RT-11 v2 was an operating system for the DEC PDP-11 computer. We can run it on SIMH PDP-11 emulator."
sidebar_position: 4
---
import DocCardList from '@theme/DocCardList';
# ! RT-11 v2
![! RT-11 v2](./rt-11-v2.webp)
! RT-11 v2 was an operating system for the DEC PDP-11 computer. We can run it on SIMH PDP-11 emulator.
<DocCardList />
## Manuals
You can download the ! RT-11 v2 manuals from here:
- [! RT-11 v2 System Reference Manual](http://www.bitsavers.org/pdf/dec/pdp11/rt11/v2c_Jan76/RT11v2C_SysRefJan1976.pdf)
- [! RT-11 v2 Software Support Manual](http://www.bitsavers.org/pdf/dec/pdp11/rt11/v2c_Jan76/DEC-11-ORPGA-B-D_RT11v2cSup.pdf)
- [! RT-11 v2 System Generation Manual](http://www.bitsavers.org/pdf/dec/pdp11/rt11/v2c_Jan76/DEC-11-ORGMA-A-D_RT11v2Sysg.pdf)
- [! RT-11 v2 Software Product Description](http://www.bitsavers.org/pdf/dec/pdp11/rt11/v2c_Jan76/DEC-11-XPDAS-D-D_V2C_SPD.pdf)
- [! RT-11 v2 System Release Notes](http://www.bitsavers.org/pdf/dec/pdp11/rt11/v2c_Jan76/DEC-11-ORNRA-A-D_V2C_RelNot.pdf)
You may also be interested in the PDP-11 manuals. It was the computer on which ! RT-11 was supposed to run. You can download them from Bitsavers:
- [PDP-11 Manuals](http://bitsavers.org/pdf/dec/pdp11/)
## Related Pages
- [VirtualHub Screenshots](https://screenshots.virtualhub.eu.org/1970s/1975/rt-11-v2/)
- [Computer History Wiki page](https://gunkies.org/wiki/RT-11)
- [Wikipedia page](https://en.wikipedia.org/wiki/RT-11)
- [Computer History Wiki PDP-11 page](https://gunkies.org/wiki/PDP-11)
- [Wikipedia PDP-11 page](https://gunkies.org/wiki/PDP-11)
## Credits
- The manuals were taken from [Bitsavers](http://bitsavers.org).

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,101 @@
---
keywords: ["RT-11 v2", "PDP-11", SIMH, 1970s, 1975]
image: ./rt-11-v2-SIMH-3.webp
description: 'We can run ! RT-11 v2 on the SIMH PDP-11 emulator. First, we need to download the ! RT-11 image. You can download the image needed to run it on the SIMH PDP-11 emulator from here.'
sidebar_position: 1
sidebar_label: "! RT-11 v2 on SIMH"
---
# How to install ! RT-11 v2 on SIMH?
![SIMH PDP-11 emulator with ! RT-11 v2](./rt-11-v2-SIMH-3.webp)
We can run [! RT-11 v2](/1970s/1975/rt-11-v2) on the SIMH PDP-11 emulator. First, we need to download the ! RT-11 v2 image.
## Downloads
There are two different versions of RT-11 v2, whose image is available for us to use/ They are RT-11 v2B and v2C. Both of them are mostly same, and you can use either. You can download the image needed to run ! RT-11 v2 on the SIMH PDP-11 emulator from here:
- [! RT-11 v2B image](https://github.com/InstallerLegacy/RT11DV50/raw/main/RTV2RK.B)
- [! RT-11 v2C image](https://github.com/InstallerLegacy/RT11DV50/raw/main/RTV2RK.C)
## Using ! RT-11 v2
:::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 disk image file 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, if you chose the v2B image:
```ini
att rk0 RTV2RK.B
boot rk0
```
If you chose v2C instead, make your `pdp11.ini` file like this:
```ini
att rk0 RTV2RK.C
boot rk0
```
![pdp11.ini](./rt-11-v2-SIMH-1.webp)
Now open a terminal and move to the VM folder. Run the following command to start the emulator:
```bash
pdp11
```
![pdp11](./rt-11-v2-SIMH-2.webp)
After the emulator starts, you will get a `.` prompt. Type `R PIP` and press enter to start PIP. Now run `/L` to get a list of files.
![List of files in ! RT-11 v2](./rt-11-v2-SIMH-3.webp)
To exit PIP, press `Ctrl` + `C`. To exit the emulator, type `Ctrl` + `E`, and then run `exit`.
That's it! We used ! RT-11 v2. We can create a shell script to make it easy to launch the VM.
### Linux
Create a file called `rt-11-v2.sh` with the following content:
```bash
#!/bin/bash
pdp11
```
Now make the file executable:
```bash
chmod +x rt-11-v2.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/rt-11-v2/#manuals) on the [main ! RT-11 v2 page](/1970s/1975/rt-11-v2) to learn how to use it.
### Windows
Create a file called `rt-11-v2.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/rt-11-v2/#manuals) on the [main ! RT-11 v2 page](/1970s/1975/rt-11-v2) to learn how to use it.
## Credits
- The disk image and other files used above were extracted from [this ISO file](https://bitsavers.org/bits/DEC/pdp11/rt-11/Fine_RT-11_collection/RT11DV50.ISO.zip) on [Bitsavers](https://bitsavers.org/).
## 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/rt-11-v2/simh/).

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB