mirror of
https://github.com/InstallerLegacy/virtualhub.eu.org.git
synced 2024-10-22 12:06:03 +00:00
Nova DOS (1970)
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
---
|
||||
keywords: [1970s, 1970]
|
||||
image: ./1970.webp
|
||||
description: "There were six operating system of our interest which were released in the year 1970. They were:"
|
||||
description: "There were seven operating system of our interest which were released in the year 1970. They were:"
|
||||
sidebar_position: 2
|
||||
---
|
||||
|
||||
@ -11,6 +11,6 @@ import DocCardList from '@theme/DocCardList';
|
||||
|
||||

|
||||
|
||||
There were six operating system of our interest which were released in the year 1970. They were:
|
||||
There were seven operating system of our interest which were released in the year 1970. They were:
|
||||
|
||||
<DocCardList />
|
||||
|
38
docs/1970s/1970/nova-dos/index.md
Normal file
38
docs/1970s/1970/nova-dos/index.md
Normal file
@ -0,0 +1,38 @@
|
||||
---
|
||||
keywords: ["Data General", "DG Nova", "Nova", "Nova DOS", 1970s, 1970]
|
||||
image: ./nova-dos.webp
|
||||
description: "! Nova DOS, as the name suggests, was an operating system for the Data General Nova computer."
|
||||
sidebar_position: 7
|
||||
---
|
||||
|
||||
# ! Nova DOS
|
||||
|
||||
import DocCardList from '@theme/DocCardList';
|
||||
|
||||

|
||||
|
||||
! Nova DOS, as the name suggests, was an operating system for the Data General Nova computer. We can run using the Wild Hare Nova emulator.
|
||||
|
||||
<DocCardList />
|
||||
|
||||
## Manuals
|
||||
|
||||
You can download the ! Nova DOS manuals from here:
|
||||
|
||||
- [! Nova DOS User's Manual](http://www.novasareforever.org/archive/public/docs/dg/sw/os/dos5/093-000048-06__DOS_Disk_Operating_System_Users_Manual__1970-1972.pdf)
|
||||
- [! Nova DOS Operator's Guide](http://www.novasareforever.org/archive/public/docs/dg/sw/os/dos5/093-000076-00__DOS_Operators_Guide__1972.pdf)
|
||||
|
||||
You may also be interested in the Data General Nova manuals. They were the computers on which ! Nova DOS was supposed to run. You can download them from here:
|
||||
|
||||
- [Data General Nova Manuals](http://www.novasareforever.org/dgdocs.hw/)
|
||||
|
||||
## Related Pages
|
||||
|
||||
- [VirtualHub Screenshots](https://screenshots.virtualhub.eu.org/1970s/1970/nova-dos/)
|
||||
- [Data General Nova Wikipedia page](https://en.wikipedia.org/wiki/Data_General_Nova)
|
||||
- [Data General Nova Computer History Wiki page](https://gunkies.org/wiki/Data_General_Nova)
|
||||
- [History of Nova - Wild Hare Legacy Preservation Website](http://www.novasareforever.org/gallery/index.php?nova)
|
||||
|
||||
## Credits
|
||||
|
||||
- The manuals were taken from [Wild Hare Legacy Preservation Website](http://www.novasareforever.org).
|
BIN
docs/1970s/1970/nova-dos/nova-dos.webp
Normal file
BIN
docs/1970s/1970/nova-dos/nova-dos.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
114
docs/1970s/1970/nova-dos/wh/index.md
Normal file
114
docs/1970s/1970/nova-dos/wh/index.md
Normal file
@ -0,0 +1,114 @@
|
||||
---
|
||||
keywords: ["Wild Hare", "Nova", "DG Nova", "Nova DOS", "Data General", 1970s, 1970]
|
||||
image: ./nova-dos-wh-3.webp
|
||||
description: 'We can run ! Nova DOS on the Wild Hare Nova emulator. First, we need to download the ! Nova DOS disk image. You can download the disk image needed to run ! Nova DOS on the Wild Hare Nova emulator from the Wild Hare Legacy Preservation Website website:'
|
||||
sidebar_position: 1
|
||||
sidebar_label: "! Nova DOS on Wild Hare Nova emulator"
|
||||
---
|
||||
|
||||
# How to install ! Nova DOS on Wild Hare Nova emulator?
|
||||
|
||||

|
||||
|
||||
We can run [! Nova DOS](/1970s/1970/nova-dos) on the Wild Hare Nova emulator. First, we need to download the ! Nova DOS disk image.
|
||||
|
||||
## Downloads
|
||||
|
||||
You can download the disk image needed to run ! Nova DOS on the Wild Hare Nova emulator from the [Wild Hare Legacy Preservation Website website](http://www.novasareforever.org/):
|
||||
|
||||
- [! Nova DOS disk image](http://www.novasareforever.org/archive/public/wh/simh/disks/DKP.4047.DOS.raw)
|
||||
|
||||
## Using ! Nova DOS
|
||||
|
||||
:::tip
|
||||
|
||||
If you have not already installed Wild Hare Nova emulator, see [the VirtualHub Setup tutorial on how to do so](https://setup.virtualhub.eu.org/wh-nova/) on Linux and Windows.
|
||||
|
||||
:::
|
||||
|
||||
Create a folder somewhere to store the files for this VM and move the disk image you just downloaded into it. Now we will create a config file for our VM. Create a text file called `nova.ini` with the following content in the VM folder:
|
||||
|
||||
```ini
|
||||
set CPU Nova
|
||||
set MAP disable
|
||||
set MAP1 disable
|
||||
set PTR enable
|
||||
set PTP enable
|
||||
set PLT enable
|
||||
set LPT enable
|
||||
set DSK enable
|
||||
set DEP disable
|
||||
set DKP enable
|
||||
set DZP disable
|
||||
set TTI1 disable
|
||||
set TTO1 disable
|
||||
set ALM disable
|
||||
set FPU disable
|
||||
set FPU1 disable
|
||||
set FPU2 disable
|
||||
set TTI bs
|
||||
set TTO bs
|
||||
dep TTO time 200
|
||||
set RTC MIPSsec=5
|
||||
set DKP0 4047
|
||||
attach DKP0 DKP.4047.DOS.raw
|
||||
dep DKP stime 1000
|
||||
dep DKP rtime 1000
|
||||
boot DKP
|
||||
continue
|
||||
```
|
||||
|
||||

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

|
||||
|
||||
After the emulator starts, type `LIST` and press enter. It will list all the files available on the disk.
|
||||
|
||||

|
||||
|
||||
That's it! We used ! Nova DOS. We can create a shell script to make it easy to launch the VM.
|
||||
|
||||
### Linux
|
||||
|
||||
Create a file called `Nova-DOS.sh` with the following content:
|
||||
|
||||
```bash
|
||||
#!/bin/bash
|
||||
nova
|
||||
```
|
||||
|
||||
Now make the file executable:
|
||||
|
||||
```bash
|
||||
chmod +x Nova-DOS.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/1970/nova-dos/#manuals) on the [main ! Nova DOS page](/1970s/1970/nova-dos/) to learn how to use it.
|
||||
|
||||
### Windows
|
||||
|
||||
Create a file called `Nova-DOS.bat` with the following content:
|
||||
|
||||
```bash
|
||||
nova
|
||||
```
|
||||
|
||||
Now you can start the VM by double-clicking the shell script. See the [manuals section](/1970s/1970/nova-dos/#manuals) on the [main ! Nova DOS page](/1970s/1970/nova-dos/) to learn how to use it.
|
||||
|
||||
## Credits
|
||||
|
||||
- The disk image and other files used above are from the [Wild Hare Legacy Preservation Website website](http://www.novasareforever.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/1970/nova-dos/wh/).
|
BIN
docs/1970s/1970/nova-dos/wh/nova-dos-wh-1.webp
Normal file
BIN
docs/1970s/1970/nova-dos/wh/nova-dos-wh-1.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
docs/1970s/1970/nova-dos/wh/nova-dos-wh-2.webp
Normal file
BIN
docs/1970s/1970/nova-dos/wh/nova-dos-wh-2.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
BIN
docs/1970s/1970/nova-dos/wh/nova-dos-wh-3.webp
Normal file
BIN
docs/1970s/1970/nova-dos/wh/nova-dos-wh-3.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
Reference in New Issue
Block a user