mirror of
https://github.com/InstallerLegacy/virtualhub.eu.org.git
synced 2024-10-22 12:06:03 +00:00
OS/32
This commit is contained in:
38
docs/1970s/1975/os-32/index.md
Normal file
38
docs/1970s/1975/os-32/index.md
Normal file
@ -0,0 +1,38 @@
|
||||
---
|
||||
keywords: ["OS/32", "Interdata 7/32", "Interdata", "Interdata 32-bit", "Interdata 8/32", "1970s", "1975"]
|
||||
image: ./os-32.webp
|
||||
description: "! OS/32 was an operating system for the Interdata 32-bit computers. We can run it on SIMH emulator."
|
||||
sidebar_position: 5
|
||||
---
|
||||
|
||||
import DocCardList from '@theme/DocCardList';
|
||||
|
||||
# ! OS/32
|
||||
|
||||

|
||||
|
||||
! OS/32 was an operating system for the Interdata 32-bit computers. We can run it on SIMH emulator.
|
||||
|
||||
<DocCardList />
|
||||
|
||||
## Manuals
|
||||
|
||||
You can download a set of ! OS/32 Manuals here:
|
||||
|
||||
- [! OS/32 Manuals](https://github.com/davygoat/simh-os32/releases/latest/download/os32doc.zip)
|
||||
|
||||
You can find many other manuals about Interdata 32-bit computers, and OS/32 on Bitsavers:
|
||||
|
||||
- [Interdata 32-bit page on Bitsavers](https://bitsavers.org/pdf/interdata/32bit/)
|
||||
|
||||
## Related Pages
|
||||
|
||||
- [VirtualHub Screenshots](https://screenshots.virtualhub.eu.org/1970s/1975/os-32/)
|
||||
- [A GitHub repository about OS/32](https://github.com/davygoat/simh-os32)
|
||||
- [Wikipedia Interdata 32-bit page](https://en.wikipedia.org/wiki/Interdata_7/32_and_8/32)
|
||||
- [Computer History Wiki Interdata 7/32 page](https://gunkies.org/wiki/Interdata_7/32)
|
||||
- [Computer History Wiki Interdata 8/32 page](https://gunkies.org/wiki/Interdata_8/32)
|
||||
|
||||
## Credits
|
||||
|
||||
- The manuals were taken from [this GitHub repository](https://github.com/davygoat/simh-os32) and [Bitsavers](https://bitsavers.org).
|
BIN
docs/1970s/1975/os-32/os-32.webp
Normal file
BIN
docs/1970s/1975/os-32/os-32.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 49 KiB |
104
docs/1970s/1975/os-32/simh/index.md
Normal file
104
docs/1970s/1975/os-32/simh/index.md
Normal file
@ -0,0 +1,104 @@
|
||||
---
|
||||
keywords: ["OS/32", "Interdata 7/32", "Interdata", "Interdata 32-bit", "Interdata 8/32", "SIMH", "1970s", "1975"]
|
||||
image: ./os-32-simh-3.webp
|
||||
description: 'We can run ! OS/32 on the SIMH ID32 emulator. First, we need to download the ! OS/32 kit. You can download the kit needed to run it on the SIMH ID32 emulator from this GitHub repository:'
|
||||
sidebar_position: 1
|
||||
sidebar_label: "! OS/32 on SIMH"
|
||||
---
|
||||
|
||||
# How to install ! OS/32 on SIMH?
|
||||
|
||||

|
||||
|
||||
We can run ! OS/32 on the SIMH ID32 emulator. First, we need to download the ! OS/32 kit.
|
||||
|
||||
## Downloads
|
||||
|
||||
You can download the kit needed to run ! OS/32 from [this GitHub repository](https://github.com/davygoat/simh-os32/):
|
||||
|
||||
- [! OS/32 kit](https://github.com/davygoat/simh-os32/releases/latest/download/os32kit.zip)
|
||||
|
||||
## Using ! OS/32
|
||||
|
||||
:::tip
|
||||
|
||||
If you have not already installed SIMH Interdata 7/32 emulator, see [the VirtualHub Setup tutorial on how to do so](https://setup.virtualhub.eu.org/simh-id32/) on Linux and Windows.
|
||||
|
||||
:::
|
||||
|
||||
Extract the archive you downloaded. Inside you will find a file called several files. Create a folder somewhere to store the files for this VM and move the file named `os32.dsk` into it.
|
||||
|
||||
Now we will create a config file for our VM. Create a text file called `id32.ini` with the following content in the VM folder:
|
||||
|
||||
```ini
|
||||
set cpu 832
|
||||
set cpu idle
|
||||
set throttle 50%
|
||||
set ttp enabled
|
||||
set pas devno=20
|
||||
attach pas 1026
|
||||
set pt enabled
|
||||
set pt devno=13
|
||||
attach -e dm0 os32.dsk
|
||||
attach -n lpt printer.out
|
||||
set lpt lc
|
||||
deposit 7c 002
|
||||
boot dm0
|
||||
```
|
||||
|
||||

|
||||
|
||||
Now open a terminal and move to the VM folder. Run the following command to start the emulator:
|
||||
|
||||
```bash
|
||||
id32
|
||||
```
|
||||
|
||||

|
||||
|
||||
After the emulator starts, you will get a `*` prompt. Run `set time 05/16/22,19:00`. Set the date and time you want, but make sure the syntax remains the same. Try entering a date from 1970s or 80s to avoid any problem.
|
||||
|
||||
Then run `mark dsc4:,on`, and at last `startup`. ! OS/32 will start. Run `dir` to see a list of files on the disk.
|
||||
|
||||

|
||||
|
||||
That's it! We used ! OS/32 on SIMH Interdata 7/32 emulator. You can now run `shutdown` to shut down OS/32. Then run `mark dsc4:,off`. Finally, hit `Ctrl` + `E` and run `exit` to stop the emulator. We can create a shell script to make it easy to launch the VM.
|
||||
|
||||
### Linux
|
||||
|
||||
Create a file called `os-32.sh` with the following content:
|
||||
|
||||
```bash
|
||||
#!/bin/bash
|
||||
id32
|
||||
```
|
||||
|
||||
Now make the file executable:
|
||||
|
||||
```bash
|
||||
chmod +x os-32.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/os-32/#manuals) on the [main ! OS/32 page](/1970s/1975/os-32) to learn how to use it.
|
||||
|
||||
### Windows
|
||||
|
||||
Create a file called `os-32.bat` with the following content:
|
||||
|
||||
```bash
|
||||
id32
|
||||
```
|
||||
|
||||
Now you can start the VM by double-clicking the shell script. See the [manuals section](/1970s/1975/os-32/#manuals) on the [main ! OS/32 page](/1970s/1975/os-32) to learn how to use it.
|
||||
|
||||
## Credits
|
||||
|
||||
- The disk image and other files used above are from a kit available on [this GitHub repository](https://github.com/davygoat/simh-os32/).
|
||||
|
||||
## 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/os-32/simh/).
|
BIN
docs/1970s/1975/os-32/simh/os-32-simh-1.webp
Normal file
BIN
docs/1970s/1975/os-32/simh/os-32-simh-1.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
docs/1970s/1975/os-32/simh/os-32-simh-2.webp
Normal file
BIN
docs/1970s/1975/os-32/simh/os-32-simh-2.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
docs/1970s/1975/os-32/simh/os-32-simh-3.webp
Normal file
BIN
docs/1970s/1975/os-32/simh/os-32-simh-3.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 49 KiB |
Reference in New Issue
Block a user