mirror of
https://github.com/InstallerLegacy/virtualhub.eu.org.git
synced 2024-10-22 14:06:03 +02:00
Add Unix v6 Interdata 7/32 port
This commit is contained in:
parent
aa8ed3454f
commit
4b776f848a
106
docs/1970s/1975/unix-v6/simh-id32/index.md
Normal file
106
docs/1970s/1975/unix-v6/simh-id32/index.md
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
---
|
||||||
|
keywords: ["Unix v6", "Unix", "Interdata 7/32", "SIMH", "1970s", "1975"]
|
||||||
|
image: ./unix-v6-SIMH-id32-5.webp
|
||||||
|
description: 'We can run ! Unix v6 Interdata 7/32 port on the SIMH ID32 emulator. First, we need to download the ! Unix v6 kit for the Interdata 7/32. You can download the kit needed to run it on the SIMH Interdata 7/32 emulator from the "SIMH Legacy" website.'
|
||||||
|
sidebar_position: 2
|
||||||
|
sidebar_label: "! Unix v6 on SIMH Interdata 7/32"
|
||||||
|
---
|
||||||
|
|
||||||
|
# How to install ! Unix v6 on SIMH Interdata 7/32 emulator?
|
||||||
|
|
||||||
|
![SIMH ID32 emulator with ! Unix v6](./unix-v6-SIMH-id32-5.webp)
|
||||||
|
|
||||||
|
We can run ! Unix v6 Interdata 7/32 port on the SIMH ID32 emulator. First, we need to download the ! Unix v6 kit for the Interdata 7/32.
|
||||||
|
|
||||||
|
## Downloads
|
||||||
|
|
||||||
|
You can download the kit needed to run it on the SIMH Interdata 7/32 emulator from the [“SIMH Legacy” website](http://simh.trailing-edge.com/):
|
||||||
|
|
||||||
|
- [! Unix-v6 Interdata 7/32 kit](http://simh.trailing-edge.com/kits/iu6swre.zip)
|
||||||
|
|
||||||
|
## Using ! Unix-v6 Interdata 7/32 port
|
||||||
|
|
||||||
|
:::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 `iu6_dp0.dsk` file 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 ttp ena
|
||||||
|
set pas dev=12
|
||||||
|
d lfc tps 100
|
||||||
|
att -e dp0 iu6_dp0.dsk
|
||||||
|
boot dp0
|
||||||
|
```
|
||||||
|
|
||||||
|
![id32.ini](./unix-v6-SIMH-id32-1.webp)
|
||||||
|
|
||||||
|
Now open a terminal and move to the VM folder. Run the following command to start the emulator:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
id32
|
||||||
|
```
|
||||||
|
|
||||||
|
![id32](./unix-v6-SIMH-id32-2.webp)
|
||||||
|
|
||||||
|
After the emulator starts, you will get a `?` prompt. Type `unix` and press enter to run the `unix` kernel.
|
||||||
|
|
||||||
|
![boot](./unix-v6-SIMH-id32-3.webp)
|
||||||
|
|
||||||
|
You will be asked to log in. Type `root` and press enter to log in. There is no password.
|
||||||
|
|
||||||
|
![! Unix-v6 login](./unix-v6-SIMH-id32-4.webp)
|
||||||
|
|
||||||
|
You will be notified that you have unread mail. Run `mail` to read a message from 1978! When asked whether you want to save it, type `n` and press enter.
|
||||||
|
|
||||||
|
![Mail from 1978](./unix-v6-SIMH-id32-5.webp)
|
||||||
|
|
||||||
|
You can now run `ls` to see the list of files. To change directory, you need to use the `chdir` command, `cd` is not available.
|
||||||
|
|
||||||
|
![! Unix-v6 list of files in root](./unix-v6-SIMH-id32-6.webp)
|
||||||
|
|
||||||
|
That's it! We used ! Unix-v6 on SIMH Interdata 7/32 emulator. We can create a shell script to make it easy to launch the VM.
|
||||||
|
|
||||||
|
### Linux
|
||||||
|
|
||||||
|
Create a file called `unix-v6-id32.sh` with the following content:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
#!/bin/bash
|
||||||
|
id32
|
||||||
|
```
|
||||||
|
|
||||||
|
Now make the file executable:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
chmod +x unix-v6-id32.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/unix-v6/#manuals) on the [main ! Unix-v6 page](/1970s/1975/unix-v6) to learn how to use it. For documents specific to the Interdata 7/32 port, see [this section](/1970s/1975/unix-v6/#interdata-732-specific-documentation).
|
||||||
|
|
||||||
|
### Windows
|
||||||
|
|
||||||
|
Create a file called `unix-v6-id32.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/unix-v6/#manuals) on the [main ! Unix-v6 page](/1970s/1975/unix-v6) to learn how to use it. For documents specific to the Interdata 7/32 port, see [this section](/1970s/1975/unix-v6/#interdata-732-specific-documentation).
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
- The disk image and other files used above are from a kit available on [SimH “Classic” website](http://simh.trailing-edge.com/).
|
||||||
|
|
||||||
|
## 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/unix-v6/simh-id32/).
|
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-1.webp
Normal file
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-1.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-2.webp
Normal file
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-2.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-3.webp
Normal file
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-3.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-4.webp
Normal file
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-4.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-5.webp
Normal file
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-5.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-6.webp
Normal file
BIN
docs/1970s/1975/unix-v6/simh-id32/unix-v6-SIMH-id32-6.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
60
package-lock.json
generated
60
package-lock.json
generated
@ -3550,9 +3550,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/express-serve-static-core": {
|
"node_modules/@types/express-serve-static-core": {
|
||||||
"version": "4.19.1",
|
"version": "4.19.2",
|
||||||
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.1.tgz",
|
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.2.tgz",
|
||||||
"integrity": "sha512-ej0phymbFLoCB26dbbq5PGScsf2JAJ4IJHjG10LalgUV36XKTmA4GdA+PVllKvRk0sEKt64X8975qFnkSi0hqA==",
|
"integrity": "sha512-dPSEQElyVJ97BuGduAqQjpBocZWAs0GR94z+ptL7JXQJeJdHw2WBG3EWdFrK36b8Q6j8P4cXOMhgUoi0IIfIsg==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/node": "*",
|
"@types/node": "*",
|
||||||
"@types/qs": "*",
|
"@types/qs": "*",
|
||||||
@ -3651,9 +3651,9 @@
|
|||||||
"integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g=="
|
"integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g=="
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "20.12.12",
|
"version": "20.12.13",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.12.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.13.tgz",
|
||||||
"integrity": "sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==",
|
"integrity": "sha512-gBGeanV41c1L171rR7wjbMiEpEI/l5XFQdLLfhr/REwpgDy/4U8y89+i8kRiLzDyZdOkXh+cRaTetUnCYutoXA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~5.26.4"
|
"undici-types": "~5.26.4"
|
||||||
}
|
}
|
||||||
@ -4110,9 +4110,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/algoliasearch-helper": {
|
"node_modules/algoliasearch-helper": {
|
||||||
"version": "3.20.0",
|
"version": "3.21.0",
|
||||||
"resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.20.0.tgz",
|
"resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.21.0.tgz",
|
||||||
"integrity": "sha512-6EVhAmVug0+hdRHWbubF7hLHHhLoQ8NjLk6iS6d4k5chWawpS5EDexrF6Jx/hPZvUKIeNrzsbTpjAkcvrjNLHg==",
|
"integrity": "sha512-hjVOrL15I3Y3K8xG0icwG1/tWE+MocqBrhW6uVBWpU+/kVEMK0BnM2xdssj6mZM61eJ4iRxHR0djEI3ENOpR8w==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@algolia/events": "^4.0.1"
|
"@algolia/events": "^4.0.1"
|
||||||
},
|
},
|
||||||
@ -4664,9 +4664,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/caniuse-lite": {
|
"node_modules/caniuse-lite": {
|
||||||
"version": "1.0.30001621",
|
"version": "1.0.30001625",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001621.tgz",
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001625.tgz",
|
||||||
"integrity": "sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==",
|
"integrity": "sha512-4KE9N2gcRH+HQhpeiRZXd+1niLB/XNLAhSy4z7fI8EzcbcPoAqjNInxVHTiTwWfTIV4w096XG8OtCOCQQKPv3w==",
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
"type": "opencollective",
|
"type": "opencollective",
|
||||||
@ -4810,9 +4810,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/chrome-trace-event": {
|
"node_modules/chrome-trace-event": {
|
||||||
"version": "1.0.3",
|
"version": "1.0.4",
|
||||||
"resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
|
||||||
"integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==",
|
"integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.0"
|
"node": ">=6.0"
|
||||||
}
|
}
|
||||||
@ -6010,9 +6010,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/electron-to-chromium": {
|
"node_modules/electron-to-chromium": {
|
||||||
"version": "1.4.783",
|
"version": "1.4.785",
|
||||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.783.tgz",
|
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.785.tgz",
|
||||||
"integrity": "sha512-bT0jEz/Xz1fahQpbZ1D7LgmPYZ3iHVY39NcWWro1+hA2IvjiPeaXtfSqrQ+nXjApMvQRE2ASt1itSLRrebHMRQ=="
|
"integrity": "sha512-V94FSLwW6V1JYeYT/pl23zIdwiAbeod7gBjyud2uhuWTa2yV3gZ4IaWt6l0t808y4l6NwOspyR5hiENGrYQqvA=="
|
||||||
},
|
},
|
||||||
"node_modules/emoji-regex": {
|
"node_modules/emoji-regex": {
|
||||||
"version": "9.2.2",
|
"version": "9.2.2",
|
||||||
@ -9028,9 +9028,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/mdast-util-from-markdown": {
|
"node_modules/mdast-util-from-markdown": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz",
|
||||||
"integrity": "sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==",
|
"integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/mdast": "^4.0.0",
|
"@types/mdast": "^4.0.0",
|
||||||
"@types/unist": "^3.0.0",
|
"@types/unist": "^3.0.0",
|
||||||
@ -12707,9 +12707,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/react-dev-utils/node_modules/loader-utils": {
|
"node_modules/react-dev-utils/node_modules/loader-utils": {
|
||||||
"version": "3.2.1",
|
"version": "3.2.2",
|
||||||
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.2.tgz",
|
||||||
"integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==",
|
"integrity": "sha512-vjJi4vQDasD8t0kMpxe+9URAcgbSuASqoj/Wuk3MawTk97LYa2KfdHreAkd1G/pmPLMvzZEw7/OsydADNemerQ==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 12.13.0"
|
"node": ">= 12.13.0"
|
||||||
}
|
}
|
||||||
@ -13529,9 +13529,9 @@
|
|||||||
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
||||||
},
|
},
|
||||||
"node_modules/sax": {
|
"node_modules/sax": {
|
||||||
"version": "1.3.0",
|
"version": "1.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz",
|
||||||
"integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA=="
|
"integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg=="
|
||||||
},
|
},
|
||||||
"node_modules/scheduler": {
|
"node_modules/scheduler": {
|
||||||
"version": "0.23.2",
|
"version": "0.23.2",
|
||||||
@ -15752,9 +15752,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/workbox-build": {
|
"node_modules/workbox-build": {
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-7.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-7.1.1.tgz",
|
||||||
"integrity": "sha512-F6R94XAxjB2j4ETMkP1EXKfjECOtDmyvt0vz3BzgWJMI68TNSXIVNkgatwUKBlPGOfy9n2F/4voYRNAhEvPJNg==",
|
"integrity": "sha512-WdkVdC70VMpf5NBCtNbiwdSZeKVuhTEd5PV3mAwpTQCGAB5XbOny1P9egEgNdetv4srAMmMKjvBk4RD58LpooA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apideck/better-ajv-errors": "^0.3.1",
|
"@apideck/better-ajv-errors": "^0.3.1",
|
||||||
"@babel/core": "^7.24.4",
|
"@babel/core": "^7.24.4",
|
||||||
|
Loading…
Reference in New Issue
Block a user