This repository has been archived by the owner on Mar 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
957 lines (900 loc) · 106 KB
/
feed.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>VirtualHub</title>
<link href="https://old.virtualhub.eu.org/feed.xml" rel="self" />
<link href="https://old.virtualhub.eu.org" />
<updated>2022-06-08T17:43:14+05:30</updated>
<author>
<name>Legacy Installer</name>
</author>
<id>https://old.virtualhub.eu.org</id>
<entry>
<title>How to install PC DOS 1.10 on DOSBox-X?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox-x/"/>
<id>https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox-x/</id>
<category term="PC DOS"/>
<category term="DOSBox-X"/>
<category term="DOS"/>
<updated>2022-06-08T17:41:05+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/31/PCDOS1.10-DOSBox-X-4.webp" alt="PC DOS 1.10 on DOSBox-X" />
In the last tutorial, we saw how to install PC DOS 1.10 on DOSBox. In this tutorial, we are going…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/31/PCDOS1.10-DOSBox-X-4.webp" alt="PC DOS 1.10 on DOSBox-X" />
<p>In the last tutorial, we saw <a href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox/" target="_blank" rel="noopener noreferrer">how to install PC DOS 1.10 on DOSBox</a>. In this tutorial, we are going to install PC DOS 1.10 on DOSBox-X. If you want an introduction to PC DOS 1.10, I suggest you to read the first few paragraphs of our post <a href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-86box/" target="_blank" rel="noopener noreferrer">how to install PC DOS 1.10 on 86Box</a>. DOSBox-X already emulates DOS, but we can use it to install a different version of DOS also.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c3acc3b4-c3b9-15c2-adc3-9611c3a5c28f" target="_blank" rel="noopener noreferrer">IBM PC DOS 1.10 archive</a></li>
</ul>
<p class="msg msg--success"><strong><span style="text-decoration: underline;"><em>Note</em></span><br></strong>This tutorial uses DOSBox-X. It is not compatible with DOSBox, DOSBox-SVN or DOSBox-Staging. For DOSBox/DOSBox-SVN, see <a href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox/" target="_blank" rel="noopener noreferrer">how to install PC DOS 1.10 on DOSBox</a>. For DOSBox-Staging, we will post a tutorial soon.</p>
<h2>Creating the Virtual Machine</h2>
<p>If you have not already installed DOSBox-X, you can install it from its <a href="https://dosbox-x.com/" target="_blank" rel="noopener noreferrer">homepage</a>. On Linux, you can also install it from your distribution's repositories or other third-party repository for your distribution.</p>
<p>Create a folder to store the files related to you VM. Extract the PC DOS 1.10 archive and open the extracted folder. Go to the images folder inside it and open the Raw folder. Copy the file called <code>DISK01.IMA</code> to the VM folder. You may want to rename it to something like <code>PCDOS1.10.IMA</code> to avoid confusion later.</p>
<p>Now copy the default DOSBox-X config file to this folder. You can see <a href="https://dosbox-x.com/wiki/Home#_dosbox_xs_configuration_file" target="_blank" rel="noopener noreferrer">this page</a> to know where the file exists on you system or you can download it from <a href="https://raw.githubusercontent.com/joncampbell123/dosbox-x/master/dosbox-x.reference.conf" target="_blank" rel="noopener noreferrer">here</a> ( You may need to right click and click on Save As to save the file). Rename it to something suitable such as <code>pcdos1.10.conf</code> and open it in your favourite text editor.</p>
<p>Add the following line to the end of that file:</p>
<pre>IMGMOUNT a PCDOS1.10.IMA<br>boot a:</pre>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/31/PCDOS1.10-DOSBox-X-1.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-1-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-1-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-1-md.webp 768w" alt="DOSBox-X config file for PC DOS 1.10" width="861" height="665"></figure>
<p>Save and close the file. Open a terminal/command prompt and navigate to that folder. Now run DOSBox-X:</p>
<pre>dosbox-x -conf pcdos1.10.conf</pre>
<p>On Windows, you may need to add the path to DOSBox-X before this command if you have not added it to the PATH environment variable. So the command would likely become:</p>
<pre>"C:\Program Files\DOSBox-X\dosbox-x.exe" -conf pcdos1.10.conf</pre>
<p>The DOSBox-X program will open and boot PC DOS 1.10:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/31/PCDOS1.10-DOSBox-X-2.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-2-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-2-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-2-md.webp 768w" alt="PC DOS 1.10 on DOSBox-X" width="740" height="465"></figure>
<p>When asked for Date and time, just press enter. Do not enter anything. PC DOS 1.10 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/31/PCDOS1.10-DOSBox-X-3.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-3-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-3-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/31/responsive/PCDOS1.10-DOSBox-X-3-md.webp 768w" alt="List of files on PC DOS 1.10 on DOSBox-X" width="740" height="465"></figure>
<p>You can now close that window. Now we will create a script to launch the VM. On linux create a file called PCDOS1.10.sh with the following lines:</p>
<pre>#!/bin/bash<br>dosbox-x -conf pcdos1.10.conf</pre>
<p>Then make the script executable by running the following command in terminal after navigating to that folder:</p>
<pre>sudo chmod +x ./PCDOS1.10.sh</pre>
<p>Then we can right click on that file and click on Run as Program to open the VM. Some DEs and distros may have other methods of running shell scripts.</p>
<p>On Windows, create a file called PCDOS1.10.bat in that folder with the following contents:</p>
<pre>"C:\Program Files\DOSBox-X\dosbox-x.exe" -conf pcdos1.10.conf</pre>
<p>Then double click on that file to launch the VM.</p>
<p>That's it. We used PC DOS 1.10 on DOSBox-X. You can now close the VM window. The next time you start it, you do not need to insert the disk file again. PC DOS 1.10 will start without any problem. Read the manual linked below to learn more about PC DOS 1.10. You can also read the MS DOS 1.25 manual which I posted in <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-x/" target="_blank" rel="noopener noreferrer">its tutorial</a>, since they both are almost same.</p>
<h2>Manuals</h2>
<ul>
<li><a href="https://web.archive.org/web/20220408191257/http://www.bitsavers.org/pdf/ibm/pc/dos/IBM_DOS_1.1_May82.pdf" target="_blank" rel="noopener noreferrer">PC DOS 1.10 Manual</a></li>
<li><a href="https://web.archive.org/web/20200803043016/http://www.bitsavers.org/pdf/ibm/pc/languages/BASIC_1.1_May82.pdf" target="_blank" rel="noopener noreferrer">BASIC Manual</a></li>
</ul>
<p>You may also want to read the IBM PC manuals. IBM PC DOS 1.10 was meant to be used on the IBM PC and the above manual refers to the IBM PC manuals many times. The following are the IBM PC manuals:</p>
<ul>
<li><a href="https://web.archive.org/web/20220525044729/http://www.minuszerodegrees.net/manuals/IBM_5150_Guide_to_Operations_6322510_APR84.pdf" target="_blank" rel="noopener noreferrer">Guide to Operations</a></li>
<li><a href="https://web.archive.org/web/20220601195619/http://www.minuszerodegrees.net/manuals/IBM_5150_Technical_Reference_6322507_APR84.pdf" target="_blank" rel="noopener noreferrer">Technical Reference</a></li>
<li><a href="https://web.archive.org/web/20220522180745/http://www.minuszerodegrees.net/manuals/IBM_5150_Hardware_Maintenance_and_Service_6025072_AUG81.pdf" target="_blank" rel="noopener noreferrer">Hardware Maintenance and Service</a></li>
</ul>
<p>You can also read the IBM PC XT manuals:</p>
<ul>
<li><a href="https://web.archive.org/web/20211226042605/http://www.minuszerodegrees.net/manuals/IBM_5160_Guide_to_Operations_6322511_APR84.pdf" target="_blank" rel="noopener noreferrer">Guide to Operations</a></li>
<li><a href="https://web.archive.org/web/20220522162518/http://www.minuszerodegrees.net/manuals/IBM_5160_Technical_Reference_APR83.pdf" target="_blank" rel="noopener noreferrer">Technical Reference</a></li>
</ul>
<p>You can read a lot more manuals related to IBM PCs and many other software and hardware at <a href="http://www.minuszerodegrees.net/" target="_blank" rel="noopener noreferrer">www.minuszerodegrees.net</a> and <a href="http://www.bitsavers.org/pdf/" target="_blank" rel="noopener noreferrer">www.bitsavers.org/pdf/</a>.</p>
<h2>Related Pages</h2>
<ul>
<li><a href="https://winworldpc.com/product/pc-dos/1x" target="_blank" rel="noopener noreferrer">WinWorld page</a></li>
<li><a href="https://en.wikipedia.org/wiki/IBM_PC_DOS#PC_DOS_1.x" target="_blank" rel="noopener noreferrer">Wikipedia</a></li>
<li><a href="https://www.pcjs.org/software/pcx86/sys/dos/ibm/1.10/" target="_blank" rel="noopener noreferrer">PCjs page - Run PC DOS 1.10 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/IBM_PC-DOS_1.00" target="_blank" rel="noopener noreferrer">BetaWiki page</a></li>
<li><a href="https://www.os2museum.com/wp/dos/dos-1-0-and-1-1/" target="_blank" rel="noopener noreferrer">OS/2 Museum Page</a></li>
<li><a href="https://www.ibm.com/ibm/history/exhibits/pc25/pc25_intro.html" target="_blank" rel="noopener noreferrer">The IBM PC's debut - IBM Archive</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/ZyYPmD5zjFI">https://youtu.be/ZyYPmD5zjFI</a></li>
<li><a href="https://youtu.be/-aC_9Q5AW3U">https://youtu.be/-aC_9Q5AW3U</a></li>
<li><a href="https://youtu.be/0PceJO3CAGI">https://youtu.be/0PceJO3CAGI</a></li>
<li><a href="https://youtu.be/tWKAxqyjA4I">https://youtu.be/tWKAxqyjA4I</a></li>
<li><a href="https://youtu.be/yXPpLLYMRqI">https://youtu.be/yXPpLLYMRqI</a></li>
</ul>
</li>
</ul>
<h2>Credits</h2>
<ul>
<li>The DOSBox-X emulator is an open source project hosted on <a href="https://github.com/joncampbell123/dosbox-x/" target="_blank" rel="noopener noreferrer">GitHub</a>. Visit <a href="https://dosbox-x.com/" target="_blank" rel="noopener noreferrer">its website</a> to know more.</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/" target="_blank" rel="noopener noreferrer">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install PC DOS 1.10 on DOSBox?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox/"/>
<id>https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox/</id>
<category term="PC DOS"/>
<category term="DOSBox"/>
<category term="DOS"/>
<updated>2022-06-08T17:43:14+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/30/PCDOS1.10-DOSBox-4.webp" alt="PC DOS 1.10 on DOSBox" />
In the last tutorial, we saw how to install PC DOS 1.10 on 86Box. We also introduce PC DOS 1.10…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/30/PCDOS1.10-DOSBox-4.webp" alt="PC DOS 1.10 on DOSBox" />
<p>In the last tutorial, we saw <a href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-86box/" target="_blank" rel="noopener noreferrer">how to install PC DOS 1.10 on 86Box</a>. We also introduce PC DOS 1.10 in that tutorial. If you want to know background information about PC DOS 1.10, I suggest you to read that tutorial. In this tutorial, we are going to use PC DOS 1.10 on DOSBox. DOSBox already emulates DOS, but we can use it to install a different version of DOS also.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c3acc3b4-c3b9-15c2-adc3-9611c3a5c28f" target="_blank" rel="noopener noreferrer">IBM PC DOS 1.10 archive</a></li>
</ul>
<p class="msg msg--success"><strong><span style="text-decoration: underline;">Note</span><br></strong>This tutorial includes screenshots taken using a SVN build of DOSBox. But, I have verified this tutorial to work on release version of DOSBox too. You can use either of them. Note that DOSBox-staging and DOSBox-X are different for DOSBox and don't work for this tutorial. For DOSBox-X, see <a href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox-x/" target="_blank" rel="noopener noreferrer">this tutorial</a>. I will post another tutorial for DOSBox-Staging soon.</p>
<h2>Creating the Virtual Machine</h2>
<p>If you have not already installed DOSBox, you can visit out tutorial <a href="https://legacyinstaller.pcriot.com/vm-software/dosbox" target="_blank" rel="noopener noreferrer">on how to do so on windows</a>. On Linux, you can just install the <code>dosbox</code> package on your favourite distribution.</p>
<p>Create a folder where you will store all the files related to this tutorial. Extract the PC DOS 1.10 archive and open the extracted folder. Go to the images folder inside it and open the Raw folder. Copy the file called <code>DISK01.IMA</code> to the VM folder. You may want to rename it to something like <code>PCDOS1.10.IMA</code> to avoid confusion later.</p>
<p>Now copy the default DOSBox config file to this folder. You can see <a href="https://www.dosbox.com/wiki/Dosbox.conf" target="_blank" rel="noopener noreferrer">this page</a> to know where the file exists on you system or you can download it from <a href="https://virtualhub.eu.org/media/files/dosbox.conf">here</a>. Rename it to something suitable such as <code>pcdos1.10.conf</code> and open it in your favourite text editor.</p>
<p>Add the following line to the end of that file:</p>
<pre>IMGMOUNT a PCDOS1.10.IMA -t floppy<br>boot -l a</pre>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/30/PCDOS1.10-DOSBox-1.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-1-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-1-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-1-md.webp 768w" alt="DOSBox config file for PC DOS 1.10" width="720" height="568"></figure>
<p>Save and close the file. Open a terminal/command prompt and navigate to that folder. Now run DOSBox:</p>
<pre>dosbox -conf pcdos1.10.conf</pre>
<p>On Windows, you may need to add the path to DOSBox before this command if you have not added it to the PATH environment variable. So the command would likely become:</p>
<pre>"C:\Program Files (x86)\dosbox-0.74-3\dosbox.exe" -conf pcdos1.10.conf</pre>
<p>The DOSBox program will open and boot PC DOS 1.10:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/30/PCDOS1.10-DOSBox-2.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-2-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-2-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-2-md.webp 768w" alt="PC DOS 1.10 on DOSBox" width="642" height="432"></figure>
<p>When asked for Date and time, just press enter. Do not enter anything. MS DOS 1.25 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/30/PCDOS1.10-DOSBox-3.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-3-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-3-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/30/responsive/PCDOS1.10-DOSBox-3-md.webp 768w" alt="List of files on PC DOS 1.10 on DOSBox" width="642" height="432"></figure>
<p>You can now close that window. Now we will create a script to launch the VM. On linux create a file called PCDOS1.10.sh with the following lines:</p>
<pre>#!/bin/bash<br>dosbox -conf pcdos1.10.conf</pre>
<p>Then make the script executable by running the following command in terminal after navigating to that folder:</p>
<pre>sudo chmod +x ./PCDOS1.10.sh</pre>
<p>Then we can right click on that file and click on Run as Program to open the VM. Some DEs and distros may have other methods of running shell scripts.</p>
<p>On Windows, create a file called PCDOS1.10.bat in that folder with the following contents:</p>
<pre>"C:\Program Files (x86)\dosbox-0.74-3\dosbox.exe" -conf pcdos1.10.conf</pre>
<p>Then double click on that file to launch the VM.</p>
<p>That's it. We used PC DOS 1.10 on DOSBox. You can now close the VM window. The next time you start it, you do not need to insert the disk file again. PC DOS 1.10 will start without any problem. Read the manual linked below to learn more about PC DOS 1.10. You can also read the MS DOS 1.25 manual which I posted in <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox/" target="_blank" rel="noopener noreferrer">its tutorial</a>, since they both are almost same.</p>
<h2>Manuals</h2>
<ul>
<li><a href="https://web.archive.org/web/20220408191257/http://www.bitsavers.org/pdf/ibm/pc/dos/IBM_DOS_1.1_May82.pdf" target="_blank" rel="noopener noreferrer">PC DOS 1.10 Manual</a></li>
<li><a href="https://web.archive.org/web/20200803043016/http://www.bitsavers.org/pdf/ibm/pc/languages/BASIC_1.1_May82.pdf" target="_blank" rel="noopener noreferrer">BASIC Manual</a></li>
</ul>
<p>You may also want to read the IBM PC manuals. IBM PC DOS 1.10 was meant to be used on the IBM PC and the above manual refers to the IBM PC manuals many times. The following are the IBM PC manuals:</p>
<ul>
<li><a href="https://web.archive.org/web/20220525044729/http://www.minuszerodegrees.net/manuals/IBM_5150_Guide_to_Operations_6322510_APR84.pdf" target="_blank" rel="noopener noreferrer">Guide to Operations</a></li>
<li><a href="https://web.archive.org/web/20220601195619/http://www.minuszerodegrees.net/manuals/IBM_5150_Technical_Reference_6322507_APR84.pdf" target="_blank" rel="noopener noreferrer">Technical Reference</a></li>
<li><a href="https://web.archive.org/web/20220522180745/http://www.minuszerodegrees.net/manuals/IBM_5150_Hardware_Maintenance_and_Service_6025072_AUG81.pdf" target="_blank" rel="noopener noreferrer">Hardware Maintenance and Service</a></li>
</ul>
<p>You can also read the IBM PC XT manuals:</p>
<ul>
<li><a href="https://web.archive.org/web/20211226042605/http://www.minuszerodegrees.net/manuals/IBM_5160_Guide_to_Operations_6322511_APR84.pdf" target="_blank" rel="noopener noreferrer">Guide to Operations</a></li>
<li><a href="https://web.archive.org/web/20220522162518/http://www.minuszerodegrees.net/manuals/IBM_5160_Technical_Reference_APR83.pdf" target="_blank" rel="noopener noreferrer">Technical Reference</a></li>
</ul>
<p>You can read a lot more manuals related to IBM PCs and many other software and hardware at <a href="http://www.minuszerodegrees.net/" target="_blank" rel="noopener noreferrer">www.minuszerodegrees.net</a> and <a href="http://www.bitsavers.org/pdf/" target="_blank" rel="noopener noreferrer">www.bitsavers.org/pdf/</a>.</p>
<h2>Related Pages</h2>
<ul>
<li><a href="https://winworldpc.com/product/pc-dos/1x" target="_blank" rel="noopener noreferrer">WinWorld page</a></li>
<li><a href="https://en.wikipedia.org/wiki/IBM_PC_DOS#PC_DOS_1.x" target="_blank" rel="noopener noreferrer">Wikipedia</a></li>
<li><a href="https://www.pcjs.org/software/pcx86/sys/dos/ibm/1.10/" target="_blank" rel="noopener noreferrer">PCjs page - Run PC DOS 1.10 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/IBM_PC-DOS_1.00" target="_blank" rel="noopener noreferrer">BetaWiki page</a></li>
<li><a href="https://www.os2museum.com/wp/dos/dos-1-0-and-1-1/" target="_blank" rel="noopener noreferrer">OS/2 Museum Page</a></li>
<li><a href="https://www.ibm.com/ibm/history/exhibits/pc25/pc25_intro.html" target="_blank" rel="noopener noreferrer">The IBM PC's debut - IBM Archive</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/ZyYPmD5zjFI">https://youtu.be/ZyYPmD5zjFI</a></li>
<li><a href="https://youtu.be/-aC_9Q5AW3U">https://youtu.be/-aC_9Q5AW3U</a></li>
<li><a href="https://youtu.be/0PceJO3CAGI">https://youtu.be/0PceJO3CAGI</a></li>
<li><a href="https://youtu.be/tWKAxqyjA4I">https://youtu.be/tWKAxqyjA4I</a></li>
<li><a href="https://youtu.be/yXPpLLYMRqI">https://youtu.be/yXPpLLYMRqI</a></li>
</ul>
</li>
</ul>
<h2>Credits</h2>
<ul>
<li>The DOSBox emulator is an open source project hosted on <a href="https://sourceforge.net/projects/dosbox/" target="_blank" rel="noopener noreferrer">Sourceforge</a>. Visit <a href="https://www.dosbox.com/" target="_blank" rel="noopener noreferrer">its website</a> to know more.</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/" target="_blank" rel="noopener noreferrer">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install PC DOS 1.10 on 86Box?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-86box/"/>
<id>https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-86box/</id>
<category term="PC DOS"/>
<category term="DOS"/>
<category term="86Box"/>
<updated>2022-06-03T18:27:51+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-6-2.webp" alt="PC DOS 1.10 on 86Box" />
In the last few tutorials, we installed MS DOS 1.25 on various emulators and hypervisors. Now we will continue with…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-6-2.webp" alt="PC DOS 1.10 on 86Box" />
<p>In the last few tutorials, we installed MS DOS 1.25 on various emulators and hypervisors. Now we will continue with IBM PC DOS. IBM PC-DOS was an IBM branded version of MS DOS licensed from Microsoft for use on the IBM PC system. Versions of PC DOS paralleled that of MS DOS up until version 6.1, where PC DOS was independently maintained by IBM up until 7.1, the last version. Although not the only OS available for the IBM PC when it came out, it quickly became popular due to its low cost in comparison to the others.</p>
<p>The first version of PC DOS was released in August 1981 with the IBM PC. IBM PC DOS 1.0 was a port of 86-DOS purchased by Microsoft in 1981 for use on the IBM PC. This version of DOS resembles that of CP/M at the time. 1.0 only supports single sided 8-sector 160k 5.25 inch floppy disks. 1.1 adds support for double sided 320k disks. Directory support did not exist with this version of DOS. PC DOS 1.x was a floppy-only version of DOS. It cannot be installed to a hard drive.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c3acc3b4-c3b9-15c2-adc3-9611c3a5c28f" target="_blank" rel="noopener noreferrer">IBM PC DOS 1.10 archive</a></li>
</ul>
<h2>Creating the Virtual Machine</h2>
<p>If you have not installed 86Box yet, see our tutorial on <a href="https://legacyinstaller.pcriot.com/vm-software/86box" target="_blank" rel="noopener noreferrer">how to do so on windows</a> and <a href="https://legacyinstaller.pcriot.com/vm-software/how-to-install-86box-on-linux-along-with-a-manager" target="_blank" rel="noopener noreferrer">on Linux</a>.</p>
<p>Open the 86Box Manager. Click on Add and enter the details for your VM. Tick the "Configure this VM now" checkbox. Then click on Add.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-1.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-1-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-1-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-1-md.webp 768w" alt="86Box New VM wizard" width="600" height="298"></figure>
<p><span style="color: var(--text-primary-color); font-family: var(--editor-font-family); font-size: inherit; font-weight: var(--font-weight-normal);">The machine settings window will open. In Machine tab, leave the Machine type to </span><code style="font-weight: var(--font-weight-normal);">8088</code><span style="color: var(--text-primary-color); font-family: var(--editor-font-family); font-size: inherit; font-weight: var(--font-weight-normal);">. In the Machine Dropbox, choose </span><code style="font-weight: var(--font-weight-normal);">[8088] IBM XT (1986)</code><span style="color: var(--text-primary-color); font-family: var(--editor-font-family); font-size: inherit; font-weight: var(--font-weight-normal);">. Change the FPU to </span><code style="font-weight: var(--font-weight-normal);">8087</code><span style="color: var(--text-primary-color); font-family: var(--editor-font-family); font-size: inherit; font-weight: var(--font-weight-normal);">. Change the speed to </span><code style="font-weight: var(--font-weight-normal);">16</code><span style="color: var(--text-primary-color); font-family: var(--editor-font-family); font-size: inherit; font-weight: var(--font-weight-normal);"> and memory to </span><code style="font-weight: var(--font-weight-normal);">640 KB</code><span style="color: var(--text-primary-color); font-family: var(--editor-font-family); font-size: inherit; font-weight: var(--font-weight-normal);">.</span></p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-2.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-2-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-2-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-2-md.webp 768w" alt="Machine Settings 86Box " width="1004" height="719"></figure>
<p>Move to Display tab. Choose <code>[ISA] VGA</code> from the Video list.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-3.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-3-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-3-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-3-md.webp 768w" alt="86Box Video settings" width="1004" height="719"></figure>
<p>Move to Input devices. Choose <code>Microsoft Serial Mouse</code> from the mouse drop-down list.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-4.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-4-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-4-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-4-md.webp 768w" alt="86Box Input devices settings" width="1004" height="719"></figure>
<p>Click on <code>OK</code> to close the settings window. Extract the PC DOS 1.10 archive and open the extracted folder. Go to the images folder inside it and open the Raw folder. Copy the file called <code>DISK01.IMA</code> to the VM folder. You may want to rename it to something like <code>PCDOS1.10.IMA</code> to avoid confusion later.</p>
<p>Start the Virtual Machine. Click on <code>Media</code> > <code>Floppy 1 (5.25" 360k): (empty)</code> > <code>Existing image...</code> and choose the disk image you just copied.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-5.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-5-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-5-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-5-md.webp 768w" alt="Change floppy drive" width="723" height="519"></figure>
<p>Click on <code>Action</code> > <code>Ctrl + Alt + Del</code> to restart the VM. PC DOS 1.10 should load.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-6.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-6-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-6-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-6-md.webp 768w" alt="PC DOS 1.10 on 86Box" width="722" height="518"></figure>
<p>When asked for Date and time, just press enter. Do not enter anything. PC DOS 1.10 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/29/PCDOS1.10-86Box-7.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-7-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-7-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/29/responsive/PCDOS1.10-86Box-7-md.webp 768w" alt="List of files on PC DOS 1.10 on 86Box" width="722" height="518"></figure>
<p>That's it. We used PC DOS 1.10. You can now close the VM window. The next time you start it, you do not need to insert the disk file again. PC DOS 1.10 will start without any problem. Read the manual linked below to learn more about PC DOS 1.10. You can also read the MS DOS 1.25 manual which I posted in <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/" target="_blank" rel="noopener noreferrer">its tutorial</a>, since they both are almost same.</p>
<h2>Manuals</h2>
<ul>
<li><a href="https://web.archive.org/web/20220408191257/http://www.bitsavers.org/pdf/ibm/pc/dos/IBM_DOS_1.1_May82.pdf" target="_blank" rel="noopener noreferrer">PC DOS 1.10 Manual</a></li>
<li><a href="https://web.archive.org/web/20200803043016/http://www.bitsavers.org/pdf/ibm/pc/languages/BASIC_1.1_May82.pdf" target="_blank" rel="noopener noreferrer">BASIC Manual</a></li>
</ul>
<p>You may also want to read the IBM PC manuals. IBM PC DOS 1.10 was meant to be used on the IBM PC and the above manual refers to the IBM PC manuals many times. The following are the IBM PC manuals:</p>
<ul>
<li><a href="https://web.archive.org/web/20220525044729/http://www.minuszerodegrees.net/manuals/IBM_5150_Guide_to_Operations_6322510_APR84.pdf" target="_blank" rel="noopener noreferrer">Guide to Operations</a></li>
<li><a href="https://web.archive.org/web/20220601195619/http://www.minuszerodegrees.net/manuals/IBM_5150_Technical_Reference_6322507_APR84.pdf" target="_blank" rel="noopener noreferrer">Technical Reference</a></li>
<li><a href="https://web.archive.org/web/20220522180745/http://www.minuszerodegrees.net/manuals/IBM_5150_Hardware_Maintenance_and_Service_6025072_AUG81.pdf" target="_blank" rel="noopener noreferrer">Hardware Maintenance and Service</a></li>
</ul>
<p>You can also read the IBM PC XT manuals:</p>
<ul>
<li><a href="https://web.archive.org/web/20211226042605/http://www.minuszerodegrees.net/manuals/IBM_5160_Guide_to_Operations_6322511_APR84.pdf" target="_blank" rel="noopener noreferrer">Guide to Operations</a></li>
<li><a href="https://web.archive.org/web/20220522162518/http://www.minuszerodegrees.net/manuals/IBM_5160_Technical_Reference_APR83.pdf" target="_blank" rel="noopener noreferrer">Technical Reference</a></li>
</ul>
<p>You can read a lot more manuals related to IBM PCs and many other software and hardware at <a href="http://www.minuszerodegrees.net/" target="_blank" rel="noopener noreferrer">www.minuszerodegrees.net</a> and <a href="http://www.bitsavers.org/pdf/" target="_blank" rel="noopener noreferrer">www.bitsavers.org/pdf/</a>.</p>
<h2>Related Pages</h2>
<ul>
<li><a href="https://winworldpc.com/product/pc-dos/1x" target="_blank" rel="noopener noreferrer">WinWorld page</a></li>
<li><a href="https://en.wikipedia.org/wiki/IBM_PC_DOS#PC_DOS_1.x" target="_blank" rel="noopener noreferrer">Wikipedia</a></li>
<li><a href="https://www.pcjs.org/software/pcx86/sys/dos/ibm/1.10/" target="_blank" rel="noopener noreferrer">PCjs page - Run PC DOS 1.10 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/IBM_PC-DOS_1.00" target="_blank" rel="noopener noreferrer">BetaWiki page</a></li>
<li><a href="https://www.os2museum.com/wp/dos/dos-1-0-and-1-1/" target="_blank" rel="noopener noreferrer">OS/2 Museum Page</a></li>
<li><a href="https://www.ibm.com/ibm/history/exhibits/pc25/pc25_intro.html" target="_blank" rel="noopener noreferrer">The IBM PC's debut - IBM Archive</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/ZyYPmD5zjFI">https://youtu.be/ZyYPmD5zjFI</a></li>
<li><a href="https://youtu.be/-aC_9Q5AW3U">https://youtu.be/-aC_9Q5AW3U</a></li>
<li><a href="https://youtu.be/0PceJO3CAGI">https://youtu.be/0PceJO3CAGI</a></li>
<li><a href="https://youtu.be/tWKAxqyjA4I">https://youtu.be/tWKAxqyjA4I</a></li>
<li><a href="https://youtu.be/yXPpLLYMRqI">https://youtu.be/yXPpLLYMRqI</a></li>
</ul>
</li>
</ul>
<h2>Credits</h2>
<ul>
<li>The 86Box emulator is an open source project hosted on <a href="https://github.com/86Box" target="_blank" rel="noopener noreferrer">GitHub</a>. Visit <a href="https://86box.net/" target="_blank" rel="noopener noreferrer">its website</a> to know more.</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/" target="_blank" rel="noopener noreferrer">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install MS DOS 1.25 on PCem?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-pcem/"/>
<id>https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-pcem/</id>
<category term="PCem"/>
<category term="MS DOS"/>
<category term="DOS"/>
<updated>2022-06-02T13:45:40+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-10-2.webp" alt="List of files in MS DOS 1.25 on PCem" />
In the last tutorial, we saw how to install MS DOS 1.25 on VirtualBox. In this tutorial, we are going to…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-10-2.webp" alt="List of files in MS DOS 1.25 on PCem" />
<p>In the last tutorial, we saw <a href="https://virtualhub.eu.org/how-to-install-ms-dos-125-on-mame/" target="_blank" data-link-popup-id="1654071738927" rel="noopener">how to install MS DOS 1.25 on VirtualBox</a><a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-virtualbox/" target="_blank" rel="noopener noreferrer"></a>. In this tutorial, we are going to install MS DOS 1.25 on PCem. If you want an introduction to MS DOS 1.25, I suggest you to read the first few paragraphs of our post <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on 86Box</a>.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c38ac396-c2a7-6f3c-e280-9e11c3a4c2a8" target="_blank" rel="noopener">MS DOS 1.25 CDP OEM archive</a></li>
</ul>
<p>MS DOS 1.25 was not sold as a retailed package. It was only available to OEMs. In this tutorial we use the Columbia Data Products OEM that works well on IBM PC clones.</p>
<h2 id="creating-the-virtual-machine">Creating the Virtual Machine</h2>
<p>If you have not already installed PCem, do that now. You can <a href="https://legacyinstaller.pcriot.com/vm-software/pcem" target="_blank" rel="noopener noreferrer">follow our tutorial on how to do so on Windows</a>. On Linux, you need to compile PCem from <a href="https://github.com/sarah-walker-pcem/pcem" target="_blank" rel="noopener noreferrer">source</a>. On Arch Linux, you can use the AUR: <a href="https://aur.archlinux.org/packages/pcem" target="_blank" rel="noopener noreferrer">pcem</a> or <a href="https://aur.archlinux.org/packages/pcem-git" target="_blank" rel="noopener noreferrer">pcem-git</a>.</p>
<p class="msg msg--success"><strong><span style="text-decoration: underline;">Note<br></span></strong>This tutorial uses the pcem-git AUR package. Since it is he latest development build, it contains some changes from the last released version - 17. Mainly, the settings window was redesigned. The functionality of the settings window remains same, just the categories are on the left side now instead of on the top.</p>
<p>Create a folder for storing the files for the VM. Extract the MS DOS 1.25 archive you downloaded from above and open the extracted folder. Go to the images folder inside it and copy the file called CDPDOS.IMG to the VM folder.</p>
<p>Now open PCem, and click on the New VM button. The new config dialog box will open:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-1.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-1-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-1-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-1-md.webp 768w" alt="PCem new config dialog box" width="356" height="181"></figure>
<p>Enter the name of the VM and click on <code>OK</code>. Now, the settings window will open:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-2.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-2-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-2-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-2-md.webp 768w" alt="Pcem Settings window" width="807" height="475"></figure>
<p>In the Motherboard section, change the following options:</p>
<ul>
<li>Machine to <code>[8088] IBM XT</code></li>
<li>CPU to <code>8088/16</code></li>
<li>FPU to <code>8087</code></li>
<li>Memory to <code>640 KB</code></li>
</ul>
<p>Now move to the video devices section.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-3.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-3-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-3-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-3-md.webp 768w" alt="PCem settings- video devices" width="807" height="475"></figure>
<p>In Device, choose <code>VGA</code>. Now move to the Storage Devices section.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-4.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-4-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-4-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-4-md.webp 768w" alt="PCem settings - Storage devices" width="807" height="475"></figure>
<p>Chande FDD1 and FDD2 to <code>5.25" 360k</code>. Now click on <code>OK</code> to close the settings dialog. Star the Virtual Machine.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-5.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-5-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-5-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-5-md.webp 768w" alt="PCem starting" width="722" height="432"></figure>
<p>Wait a few seconds while the VM starts. When it has started, you will see the following screen:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-6.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-6-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-6-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-6-md.webp 768w" alt="PCem started" width="722" height="432"></figure>
<p>Now depending on your host Operating System, you might see a menu bar on top of the window or a pop up menu when you right click on the window. Since I am using Linux, I need to right click on the window to open the pop up menu. On Windows, you can use the top menu bar.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-7.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-7-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-7-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-7-md.webp 768w" alt="PCem change drive" width="778" height="428"></figure>
<p>Choose <code>Disc</code> > <code>Change drive A:...</code>. Now open the CDPDOS.IMG file. Now right click again and choose <code>System</code> > <code>Ctrl + Alt + Del</code>.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-8.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-8-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-8-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-8-md.webp 768w" alt="Ctrl + Alt + Del" width="726" height="435"></figure>
<p>The VM will restart. MS DOS 1.25 will boot:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-9.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-9-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-9-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-9-md.webp 768w" alt="MS DOS 1.25 on PCem" width="722" height="432"></figure>
<p>When asked for Date and time, just press enter. Do not enter anything. MS DOS 1.25 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/28/MSDOS1.25-PCem-10.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-10-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-10-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/28/responsive/MSDOS1.25-PCem-10-md.webp 768w" alt="List of files in MS DOS 1.25 on PCem" width="722" height="432"></figure>
<p>That's it. We used MS DOS 1.25 in PCem. Read the manual linked below to learn more about MS DOS 1.25. Also read the manuals which I will post with the IBM PC DOS 1.10 tutorial because they are more detailed and MS DOS and PC DOS are almost same at this stage.</p>
<h2 id="manuals">Manuals</h2>
<ul>
<li><a href="https://winworldpc.com/download/c387c5b8-c38c-c38e-3ce2-809e11c3a4ef" target="_blank" rel="noopener">MS DOS 1.25 Manual</a></li>
</ul>
<h2 id="related-pages">Related Pages</h2>
<ul>
<li><a href="https://en.wikipedia.org/wiki/MS-DOS" target="_blank" rel="noopener">WinWorld page</a></li>
<li><a href="https://youtu.be/pKcuHmpTMk0" target="_blank" rel="noopener">Wikipedia</a></li>
<li><a href="https://youtu.be/WtoDbu6dOC4" target="_blank" rel="noopener">PCjs page - Run MS DOS 1.25 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/MS-DOS_1.25" target="_blank" data-link-popup-id="1654074475808" rel="noopener">BetaWiki page</a></li>
<li><a href="https://github.com/Microsoft/MS-DOS" target="_blank" data-link-popup-id="1654074475808" rel="noopener">MS DOS 1.25 Source Code (Open Source) - Microsoft GitHub</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/WtoDbu6dOC4" target="_blank" data-link-popup-id="1654074475808" rel="noopener">https://youtu.be/WtoDbu6dOC4</a></li>
<li><a href="https://youtu.be/pKcuHmpTMk0" data-link-popup-id="1654074475808">https://youtu.be/pKcuHmpTMk0</a></li>
</ul>
</li>
</ul>
<h2 id="credits">Credits</h2>
<ul>
<li>The <a href="https://pcem-emulator.co.uk/" target="_blank" rel="noopener noreferrer">PCem emulator</a> is an open source project hosted on <a href="https://github.com/sarah-walker-pcem/pcem/" target="_blank" rel="noopener noreferrer">Github</a>. Visit its <a href="https://pcem-emulator.co.uk/phpBB3/" target="_blank" rel="noopener noreferrer">forums</a>.</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/home" target="_blank" data-link-popup-id="1654074603188" rel="noopener">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install MS DOS 1.25 on VirtualBox?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-virtualbox/"/>
<id>https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-virtualbox/</id>
<category term="VirtualBox"/>
<category term="MS DOS"/>
<category term="DOS"/>
<updated>2022-06-01T15:39:06+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-7-2.webp" alt="List of Files in MS DOS 1.25 on VirtualBox" />
In the last tutorial, we saw how to install MS DOS 1.25 on MAME. In this tutorial, we are going…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-7-2.webp" alt="List of Files in MS DOS 1.25 on VirtualBox" />
<p>
In the last tutorial, we saw <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-mame/" target="_blank" class="" data-link-popup-id="1654071738927">how to install MS DOS 1.25 on MAME</a>. In this tutorial, we are going to install MS DOS 1.25 on VirtualBox. If you want an introduction to MS DOS 1.25, I suggest you to read the first few paragraphs of our post <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/" target="_blank">how to install MS DOS 1.25 on 86Box</a>.<br>
</p>
<p>
You need to download the following file to follow this tutorial:
</p>
<ul>
<li><a href="https://winworldpc.com/download/c38ac396-c2a7-6f3c-e280-9e11c3a4c2a8" target="_blank">MS DOS 1.25 CDP OEM archive</a></li>
</ul>
<p>
MS DOS 1.25 was not sold as a retailed package. It was only available to OEMs. In this tutorial we use the Columbia Data Products OEM that works well on IBM PC clones.
</p>
<h2 id="creating-the-virtual-machine">
Creating the Virtual Machine
</h2>
<p>
If you have not already installed VirtualBox, you can <a href="https://www.virtualbox.org/wiki/Downloads" target="_blank">download</a> and install it from its <a href="https://www.virtualbox.org/" target="_blank">website</a>. On Linux, you can also install it from your distribution's repositories or other third-party repository for your distribution.
</p>
<p>
Open VirtualBox, and click on New Machine. The new machine dialog box will open:
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-1.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-1-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-1-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-1-md.webp 768w" height="422" width="655" alt="VirtualBox New VM Wizard Step - 1" />
</figure>
<p>
Enter the name of the VM as you wish and make sure the Type is set to Other and Version is set to DOS. Click on <code>Next ></code> to continue.
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-2.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-2-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-2-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-2-md.webp 768w" height="422" width="655" alt="VirtualBox New VM Wizard Step - 2" />
</figure>
<p>
4 MB or memory is much more than enough for this VM. Set it and click on <code>Next ></code>.
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-3.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-3-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-3-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-3-md.webp 768w" height="422" width="655" alt="VirtualBox New VM Wizard Step - 3" />
</figure>
<p>
This version of DOS does not support hard disks, so click on Do not add a virtual hard disk and click on <code>Create</code> button.
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-4.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-4-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-4-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-4-md.webp 768w" height="234" width="315" alt="VirtualBox New VM Wizard Step - 4" />
</figure>
<p>
You will be warned that there is no hard disk. Click on <code>Continue</code>. Now the Virtual Machine is created. Extract the MS DOS 1.25 archive you downloaded from above and open the extracted folder. Go to the images folder inside it and copy the file called CDPDOS.IMG to the VM folder.
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-5.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-5-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-5-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-5-md.webp 768w" height="614" width="768" alt="Choosing the floppy disk" />
</figure>
<p>
Back on the VirtualBox window, click on <code>Empty</code> that is written in front of <code>Floppy Device 0:</code> (See the above image). Now click on <code>Choose a disk file ...</code> and choose the CDPDOS.IMG image (You may need to choose <code>All Files</code> from the bottom right corner of your file chooser to see the disk image file).
</p>
<p>
Now click on <code>Start</code> to start the virtual machine:
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-6.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-6-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-6-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-6-md.webp 768w" height="501" width="740" alt="MS DOS 1.25 on VirtualBox" />
</figure>
<p>
When asked for Date and time, just press enter. Do not enter anything. MS DOS 1.25 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-7.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-7-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-7-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-7-md.webp 768w" height="501" width="740" alt="List of files on MS DOS 1.25 on VirtualBox" />
</figure>
<p>
You can now close that window. When you will try to close the window this window will open:
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-8.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-8-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-8-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-8-md.webp 768w" height="221" width="312" alt="VM closing wizard" />
</figure>
<p>
Make sure to choose to <code>Power off the machine</code> and then click on <code>OK</code>.
</p>
<p>
Since MS DOS 1.25 is used from floppy disks, it is better to add another floppy drive as it is the required setup for many software and more convenient with others. Click on Settings and choose storage from the left sidebar. Now click on the small floppy icon next to <code>Controller: Floppy</code> to add a floppy drive (see the below image):
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-9.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-9-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-9-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-9-md.webp 768w" height="600" width="798" alt="Adding a floppy drive" />
</figure>
<p>
Click on <code>Leave Empty</code> when the following window opens:
</p>
<figure class="post__image post__image--center">
<img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/27/MSDOS1.25-VirtualBox-10.webp" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-10-xs.webp 300w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-10-sm.webp 480w ,https://old.virtualhub.eu.org/media/posts/27/responsive/MSDOS1.25-VirtualBox-10-md.webp 768w" height="311" width="475" alt="Click on Leave Empty" />
</figure>
<p>
Now click on <code>OK</code> to close the settings window. Now we can add another floppy if we want and it will show up as <code>B:</code>.
</p>
<p>
That's it. We used MS DOS 1.25 in VirtualBox. Read the manual linked below to learn more about MS DOS 1.25. Also read the manuals which I will post with the IBM PC DOS 1.10 tutorial because they are more detailed and MS DOS and PC DOS are almost same at this stage.
</p>
<h2 id="manuals">
Manuals
</h2>
<ul>
<li><a href="https://winworldpc.com/download/c387c5b8-c38c-c38e-3ce2-809e11c3a4ef" target="_blank">MS DOS 1.25 Manual</a></li>
</ul>
<h2 id="related-pages">
Related Pages
</h2>
<ul>
<li><a href="https://en.wikipedia.org/wiki/MS-DOS" target="_blank" class="">WinWorld page</a></li><li><a href="https://youtu.be/pKcuHmpTMk0" class="" target="_blank">Wikipedia</a></li><li><a href="https://youtu.be/WtoDbu6dOC4" target="_blank" class="">PCjs page - Run MS DOS 1.25 in you web browser</a></li><li><a href="https://betawiki.net/wiki/MS-DOS_1.25" target="_blank" class="" data-link-popup-id="1654074475808">BetaWiki page</a></li><li><a href="https://github.com/Microsoft/MS-DOS" target="_blank" class="" data-link-popup-id="1654074475808">MS DOS 1.25 Source Code (Open Source) - Microsoft GitHub</a></li><li>Some related YouTube videos:</li><ul><li><a href="https://youtu.be/WtoDbu6dOC4" target="_blank" class="" data-link-popup-id="1654074475808">https://youtu.be/WtoDbu6dOC4</a></li><li><a href="https://youtu.be/pKcuHmpTMk0" class="" data-link-popup-id="1654074475808">https://youtu.be/pKcuHmpTMk0</a></li></ul>
</ul>
<h2 id="credits">
Credits
</h2>
<ul>
<li>The VirtualBox hypervisor is an <a href="https://www.virtualbox.org/svn/vbox/trunk/" target="_blank">open source project</a>. Visit <a href="https://www.virtualbox.org/" target="_blank">its website</a> to know more.</li><li>The disk image used above was taken from <a href="https://winworldpc.com/home" target="_blank" class="" data-link-popup-id="1654074603188">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install MS DOS 1.25 on MAME?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-mame/"/>
<id>https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-mame/</id>
<category term="MS DOS"/>
<category term="MAME"/>
<category term="DOS"/>
<updated>2022-05-26T12:00:00+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/26/MSDOS1.25-MAME-3-2.png" alt="List of Files on MS DOS 1.25 on MAME" />
In the last tutorial, we saw how to install MS DOS 1.25 on DOSBox-Staging. In this tutorial, we are going…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/26/MSDOS1.25-MAME-3-2.png" alt="List of Files on MS DOS 1.25 on MAME" />
<p>In the last tutorial, we saw <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-staging/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox-Staging</a>. In this tutorial, we are going to install MS DOS 1.25 on MAME. If you want an introduction to MS DOS 1.25, I suggest you to read the first few paragraphs of our post <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on 86Box</a>.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c38ac396-c2a7-6f3c-e280-9e11c3a4c2a8" target="_blank" rel="noopener noreferrer">MS DOS 1.25 CDP OEM archive</a></li>
<li><a href="https://archive.org/download/mame-merged/mame-merged/ibm5150.zip">MAME ibm5150 ROM</a></li>
<li><a href="https://archive.org/download/mame-merged/mame-merged/isa_hdc.zip">MAME isa_hdc ROM</a></li>
<li><a href="https://archive.org/download/mame-merged/mame-merged/keytronic_pc3270.zip">MAME keytronic_pc3270 ROM</a></li>
<li><a href="https://old.virtualhub.eu.org/media/files/mame.ini.linux.tar.xz" download>mame.ini file for Linux</a></li>
<li><a href="https://old.virtualhub.eu.org/media/files/mame.ini.windows.zip" download>mame.ini file for Windows</a></li>
</ul>
<p>MS DOS 1.25 was not sold as a retailed package. It was only available to OEMs. In this tutorial we use the Columbia Data Products OEM that works well on IBM PC clones.</p>
<h2>Creating the Virtual Machine</h2>
<p>First you need to make sure you have installed MAME. For windows, see our tutorial on Legacy Installer on <a href="https://legacyinstaller.pcriot.com/vm-software/mame" target="_blank" rel="noopener noreferrer">how to install MAME on Windows</a>. For linux, you can install mame from the official repository of your distribution. See <a href="https://pkgs.org/download/mame" target="_blank" rel="noopener noreferrer">this page</a> for a list of distributions offering the package. If your distribution does not include mame in its repositories (highly unlikely), you can <a href="https://docs.mamedev.org/initialsetup/compilingmame.html" target="_blank" rel="noopener noreferrer">build MAME from source</a>.</p>
<p>After you have installed MAME, you need to create a folder in which all the files related to the emulator will reside. Open a Terminal/Command Prompt window and move to that folder. Then run:</p>
<pre>mame -cc</pre>
<p>You may need to specify the path to MAME if you are on Windows:</p>
<pre>"C:\Program Files\MAME\mame.exe" -cc</pre>
<p>This command will create some basic config files for MAME in that folder. Now open the folder in your File Manager and delete the <code>mame.ini</code> file. Extract the <code>mame.ini</code> file from the archive you downloaded above according to your platform and copy it to the folder in which you are storing all the files related to the emulator. Create a folder called <code>roms</code> in that folder. Copy the ROM archives to that folder. Do not extract the ROMs from the zip files. Move the zip files without extracting to the <code>roms</code> folder.</p>
<p>Extract the MS DOS 1.25 archive and open the extracted folder. Go to the images folder inside it and copy the file called <code>CDPDOS.IMG</code> to the folder where you are storing all the files related to the emulator.</p>
<p>Now switch back to the terminal and run:</p>
<pre>mame ibm5150 -flop1 CDPDOS.IMG</pre>
<p>You need to prefix <code>mame</code> with the path on Windows as shown above. The mame window should open:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/26/MSDOS1.25-MAME-1.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-1-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-1-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-1-md.png 768w" alt="MAME with ibm5150" width="702" height="535"></figure>
<p> If the window does not open and you get a ROM not found or similar error, see the troubleshooting section below. Press any key to continue. The emulation of this machine is not perfect. You will be informed about this by MAME. Press any key to continue. It might take a long time depending on your system for MS DOS 1.25 to boot. After it has booted, you will see the following screen:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/26/MSDOS1.25-MAME-2.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-2-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-2-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-2-md.png 768w" alt="MS DOS 1.25 on MAME" width="697" height="551"></figure>
<p>When asked for Date and time, just press enter. Do not enter anything. MS DOS 1.25 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/26/MSDOS1.25-MAME-3.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-3-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-3-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/26/responsive/MSDOS1.25-MAME-3-md.png 768w" alt="List of files on MS DOS 1.25 on MAME" width="697" height="551"></figure>
<p>Now, you can close this window. Now, we can make a shell script which runs the VM on linux:</p>
<pre>#!/bin/bash<br>mame ibm5150 -flop1 CDPDOS.IMG</pre>
<p>and save the file as MSDOS1.25.sh. Then make the script executable by running the following command in terminal after navigating to that folder:</p>
<pre>sudo chmod +x ./MSDOS1.25.sh</pre>
<p>Then we can right click on that file and click on Run as Program to open the emulator. Some DEs and distros may have other methods of running shell scripts.</p>
<p>On Windows, create a file called MSDOS1.25.bat in that folder with the following contents:</p>
<pre>"C:\Program Files\MAME\mame.exe" ibm5150 -flop1 CDPDOS.IMG</pre>
<p>Then double click on that file to launch the emulator.</p>
<p>That's it. We have installed and run MS DOS 1.25 using the MAME.</p>
<h2>Troubleshooting</h2>
<p>First make sure that you have placed the roms files in the correct place. Do not extract the files. Place the zip files directly in the <code>roms</code> folder.</p>
<p>On Linux, there might be another error. MAME might have been configured to look in your <code>~/.mame</code> folder for its config files. If that is the case, running the command <code>mame</code> without any parameters in the folder where you have stored the files would result in MAME opening in full screen instead of a window. If you are affected by this problem, here is the solution:</p>
<ul>
<li>Configure your file manager to show hidden files.</li>
<li>Go to the <code>~/.mame</code> folder.</li>
<li>Delete the <code>mame.ini</code> file there.</li>
<li>Copy the <code>mame.ini</code> file you downloaded from above to that folder.</li>
</ul>
<p>The <code>mame.ini</code> file you downloaded above instructs MAME to look for another mame.ini file in the current folder and use it if found. So, you can then follow the tutorial and everything will work.</p>
<h3>Some explanation</h3>
<p>I asked you to replace the <code>mame.ini</code> file with the one you downloaded from here. What are the differences between those files? Here are they:</p>
<ul>
<li>It instructs MAME to open in windowed mode instead of full screen.</li>
<li>It modifies the key needed for enabling UI controls from Scroll Lock to Caps Lock. This is done because many keyboards do not have a Scroll Lock key.</li>
<li>On Linux, it instructs MAME to first look for configuration files in the current directory, and if found, use them instead of the one from <code>~/.mame</code> folder.</li>
</ul>
<p>That is it.</p>
<h2>Manuals</h2>
<ul>
<li><a href="https://winworldpc.com/download/c387c5b8-c38c-c38e-3ce2-809e11c3a4ef" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Manual</a></li>
</ul>
<h2>Related Pages</h2>
<ul>
<li><a href="https://winworldpc.com/product/ms-dos/1x" target="_blank" rel="noopener noreferrer">WinWorld page</a></li>
<li><a href="https://en.wikipedia.org/wiki/MS-DOS" target="_blank" rel="noopener noreferrer">Wikipedia</a></li>
<li><a href="https://www.pcjs.org/software/pcx86/sys/dos/compaq/1.12/" target="_blank" rel="noopener noreferrer">PCjs page - Run MS DOS 1.25 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/MS-DOS_1.25" target="_blank" rel="noopener noreferrer">BetaWiki page</a></li>
<li><a href="https://github.com/Microsoft/MS-DOS" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Source Code (Open Source) - Microsoft GitHub</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/WtoDbu6dOC4">https://youtu.be/WtoDbu6dOC4</a></li>
<li><a href="https://youtu.be/pKcuHmpTMk0">https://youtu.be/pKcuHmpTMk0</a></li>
</ul>
</li>
</ul>
<h2>Credits</h2>
<ul>
<li>The <a href="https://mamedev.org/" target="_blank" rel="noopener noreferrer">MAME emulator</a> is an open source project hosted on <a href="https://github.com/mamedev/mame" target="_blank" rel="noopener noreferrer">github</a> developed by MAMEDev and contributors</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/" target="_blank" rel="noopener noreferrer">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install MS DOS 1.25 on DOSBox-Staging?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-staging/"/>
<id>https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-staging/</id>
<category term="MS DOS"/>
<category term="DOSBox-Staging"/>
<category term="DOS"/>
<updated>2022-05-25T18:47:27+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/25/MSDOS1.25-DOSBox-Staging-2-2.png" alt="MS DOS 1.25 on DOSBox-Staging" />
In the last tutorial, we saw how to install MS DOS 1.25 on DOSBox-X. In this tutorial, we are going…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/25/MSDOS1.25-DOSBox-Staging-2-2.png" alt="MS DOS 1.25 on DOSBox-Staging" />
<p>In the last tutorial, we saw <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-x/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox-X</a>. In this tutorial, we are going to install MS DOS 1.25 on DOSBox-Staging. If you want an introduction to MS DOS 1.25, I suggest you to read the first few paragraphs of our post <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on 86Box</a>. DOSBox-Staging already emulates DOS, but we can use it to install a different version of DOS also.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c38ac396-c2a7-6f3c-e280-9e11c3a4c2a8" target="_blank" rel="noopener noreferrer">MS DOS 1.25 CDP OEM archive</a></li>
</ul>
<p>MS DOS 1.25 was not sold as a retailed package. It was only available to OEMs. In this tutorial we use the Columbia Data Products OEM that works well on IBM PC clones.</p>
<p class="msg msg--success"><strong>Note<br></strong>This tutorial uses DOSBox-Staging. It is not compatible with DOSBox, DOSBox-SVN or DOSBox-X. For DOSBox/DOSBox-SVN, see <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox</a>. For DOSBox-X, see <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-x/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox-X</a>.</p>
<h2>Creating the Virtual Machine</h2>
<p>If you have not already installed DOSBox-Staging, you can install it from its <a href="https://dosbox-staging.github.io/" target="_blank" rel="noopener noreferrer">website</a>. On Linux, you can also install it from your distribution's repositories or other third-party repository for your distribution.</p>
<p>Create a folder to store the files related to you VM. Make sure that the path to the folder does not include a space. Extract the MS DOS 1.25 archive and open the extracted folder. Go to the images folder inside it and copy the file called <code>CDPDOS.IMG</code> to that folder.</p>
<p>Now copy the default DOSBox-Staging config file to this folder. You can see <a href="https://github.com/dosbox-staging/dosbox-staging/wiki/Config-file-examples#global-config-file" target="_blank" rel="noopener noreferrer">this page</a> to know where the file exists on you system. Rename it to something suitable such as <code>msdos1.25.conf</code> and open it in your favourite text editor. Add the following line to the end of that file:</p>
<pre>IMGMOUNT a CDPDOS.IMG -t floppy<br>boot a:</pre>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/25/MSDOS1.25-DOSBox-Staging-1.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-1-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-1-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-1-md.png 768w" alt="Editing the default DOSBox-Staging config file" width="724" height="545"></figure>
<p>Save and close the file. Open a terminal/command prompt and navigate to that folder. Now run DOSBox-Staging:</p>
<pre>dosbox -conf msdos1.25.conf</pre>
<p>The executable may be called <code>dosbox</code> or <code>dosbox-staging</code> depending on from where you installed it. On Windows, you may need to add the path to DOSBox-Staging before this command if you have not added it to the PATH environment variable. So the command would likely become:</p>
<pre>"C:\Program Files\DOSBox-Staging\dosbox.exe" -conf msdos1.25.conf</pre>
<p>The DOSBox-Staging program will open and boot MS DOS 1.25:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/25/MSDOS1.25-DOSBox-Staging-2.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-2-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-2-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-2-md.png 768w" alt="MS DOS 1.25 on DOSBox-staging" width="660" height="528"></figure>
<p>When asked for Date and time, just press enter. Do not enter anything. MS DOS 1.25 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/25/MSDOS1.25-DOSBox-Staging-3.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-3-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-3-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/25/responsive/MSDOS1.25-DOSBox-Staging-3-md.png 768w" alt="List of files on MS DOS 1.25 on DOSBox-Staging" width="660" height="528"></figure>
<p>You can now close that window. Now we will create a script to launch the VM. On linux create a file called MSDOS1.25.sh with the following lines:</p>
<pre>#!/bin/bash<br>dosbox -conf msdos1.25.conf</pre>
<p>Then make the script executable by running the following command in terminal after navigating to that folder:</p>
<pre>sudo chmod +x ./MSDOS1.25.sh</pre>
<p>Then we can right click on that file and click on Run as Program to open the VM. Some DEs and distros may have other methods of running shell scripts.</p>
<p>On Windows, create a file called MSDOS1.25.bat in that folder with the following contents:</p>
<pre>"C:\Program Files\DOSBox-Staging\dosbox.exe" -conf msdos1.25.conf</pre>
<p>Then double click on that file to launch the VM.</p>
<p>That's it. We used MS DOS 1.25 in DOSBox-Staging. Read the manual linked below to learn more about MS DOS 1.25. Also read the manuals which I will post with the IBM PC DOS 1.10 tutorial because they are more detailed and MS DOS and PC DOS are almost same at this stage.</p>
<h2>Manuals</h2>
<ul>
<li><a href="https://winworldpc.com/download/c387c5b8-c38c-c38e-3ce2-809e11c3a4ef" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Manual</a></li>
</ul>
<h2>Related Pages</h2>
<ul>
<li><a href="https://winworldpc.com/product/ms-dos/1x" target="_blank" rel="noopener noreferrer">WinWorld page</a></li>
<li><a href="https://en.wikipedia.org/wiki/MS-DOS" target="_blank" rel="noopener noreferrer">Wikipedia</a></li>
<li><a href="https://www.pcjs.org/software/pcx86/sys/dos/compaq/1.12/" target="_blank" rel="noopener noreferrer">PCjs page - Run MS DOS 1.25 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/MS-DOS_1.25" target="_blank" rel="noopener noreferrer">BetaWiki page</a></li>
<li><a href="https://github.com/Microsoft/MS-DOS" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Source Code (Open Source) - Microsoft GitHub</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/WtoDbu6dOC4">https://youtu.be/WtoDbu6dOC4</a></li>
<li><a href="https://youtu.be/pKcuHmpTMk0">https://youtu.be/pKcuHmpTMk0</a></li>
</ul>
</li>
</ul>
<h2>Credits</h2>
<ul>
<li>The DOSBox-Staging emulator is an open source project hosted on <a href="https://github.com/dosbox-staging/dosbox-staging" target="_blank" rel="noopener noreferrer">GitHub</a>. Visit <a href="https://dosbox-staging.github.io/about/" target="_blank" rel="noopener noreferrer">its website</a> to know more.</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/" target="_blank" rel="noopener noreferrer">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install MS DOS 1.25 on DOSBox-X?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-x/"/>
<id>https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-x/</id>
<category term="MS DOS"/>
<category term="DOSBox-X"/>
<category term="DOS"/>
<updated>2022-06-08T17:42:08+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/24/MSDOS1.25-DOSBox-X-2-2.png" alt="MS DOS 1.25 on DOSBox-X" />
In the last tutorial, we saw how to install MS DOS 1.25 on DOSBox. In this tutorial, we are going…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/24/MSDOS1.25-DOSBox-X-2-2.png" alt="MS DOS 1.25 on DOSBox-X" />
<p>In the last tutorial, we saw <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox</a>. In this tutorial, we are going to install MS DOS 1.25 on DOSBox-X. If you want an introduction to MS DOS 1.25, I suggest you to read the first few paragraphs of our post <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on 86Box</a>. DOSBox-X already emulates DOS, but we can use it to install a different version of DOS also.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c38ac396-c2a7-6f3c-e280-9e11c3a4c2a8" target="_blank" rel="noopener noreferrer">MS DOS 1.25 CDP OEM archive</a></li>
</ul>
<p>MS DOS 1.25 was not sold as a retailed package. It was only available to OEMs. In this tutorial we use the Columbia Data Products OEM that works well on IBM PC clones.</p>
<p class="msg msg--success"><strong><span style="text-decoration: underline;">Note</span><br></strong>This tutorial uses DOSBox-X. It is not compatible with DOSBox, DOSBox-SVN or DOSBox-Staging. For DOSBox/DOSBox-SVN, see <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox</a>. For DOSBox-Staging, see <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-staging/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox-Staging</a>.</p>
<h2>Creating the Virtual Machine</h2>
<p>If you have not already installed DOSBox-X, you can install it from its <a href="https://dosbox-x.com/" target="_blank" rel="noopener noreferrer">homepage</a>. On Linux, you can also install it from your distribution's repositories or other third-party repository for your distribution.</p>
<p>Create a folder to store the files related to you VM. Make sure that the path to the folder does not include a space. Extract the MS DOS 1.25 archive and open the extracted folder. Go to the images folder inside it and copy the file called <code>CDPDOS.IMG</code> to that folder.</p>
<p>Now copy the default DOSBox-X config file to this folder. You can see <a href="https://dosbox-x.com/wiki/Home#_dosbox_xs_configuration_file" target="_blank" rel="noopener noreferrer">this page</a> to know where the file exists on you system or you can download it from <a href="https://raw.githubusercontent.com/joncampbell123/dosbox-x/master/dosbox-x.reference.conf" target="_blank" rel="noopener noreferrer">here</a> ( You may need to right click and click on Save As to save the file). Rename it to something suitable such as <code>msdos1.25.conf</code> and open it in your favourite text editor.</p>
<p>Add the following line to the end of that file:</p>
<pre>IMGMOUNT a CDPDOS.IMG<br>boot a:</pre>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/24/MSDOS1.25-DOSBox-X-1.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-1-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-1-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-1-md.png 768w" alt="Changing the DOSBox-X default config" width="724" height="545"></figure>
<p>Save and close the file. Open a terminal/command prompt and navigate to that folder. Now run DOSBox-X:</p>
<pre>dosbox-x -conf msdos1.25.conf</pre>
<p>On Windows, you may need to add the path to DOSBox-X before this command if you have not added it to the PATH environment variable. So the command would likely become:</p>
<pre>"C:\Program Files\DOSBox-X\dosbox-x.exe" -conf msdos1.25.conf</pre>
<p>The DOSBox-X program will open and boot MS DOS 1.25:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/24/MSDOS1.25-DOSBox-X-2.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-2-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-2-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-2-md.png 768w" alt="MS DOS 1.25 on DOSBox-X" width="740" height="465"></figure>
<p>When asked for Date and time, just press enter. Do not enter anything. MS DOS 1.25 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/24/MSDOS1.25-DOSBox-X-3.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-3-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-3-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/24/responsive/MSDOS1.25-DOSBox-X-3-md.png 768w" alt="List of files on MS DOS 1.25 on dosbox-x" width="740" height="465"></figure>
<p>You can now close that window. Now we will create a script to launch the VM. On linux create a file called MSDOS1.25.sh with the following lines:</p>
<pre>#!/bin/bash<br>dosbox-x -conf msdos1.25.conf</pre>
<p>Then make the script executable by running the following command in terminal after navigating to that folder:</p>
<pre>sudo chmod +x ./MSDOS1.25.sh</pre>
<p>Then we can right click on that file and click on Run as Program to open the VM. Some DEs and distros may have other methods of running shell scripts.</p>
<p>On Windows, create a file called MSDOS1.25.bat in that folder with the following contents:</p>
<pre>"C:\Program Files\DOSBox-X\dosbox-x.exe" -conf msdos1.25.conf</pre>
<p>Then double click on that file to launch the VM.</p>
<p>That's it. We used MS DOS 1.25 in DOSBox-X. Read the manual linked below to learn more about MS DOS 1.25. Also read the manuals which I have posted with the <a href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox-x/" target="_blank" rel="noopener noreferrer">IBM PC DOS 1.10 tutorial</a> because they are more detailed and MS DOS and PC DOS are almost same at this stage.</p>
<h2>Manuals</h2>
<ul>
<li><a href="https://winworldpc.com/download/c387c5b8-c38c-c38e-3ce2-809e11c3a4ef" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Manual</a></li>
</ul>
<h2>Related Pages</h2>
<ul>
<li><a href="https://winworldpc.com/product/ms-dos/1x" target="_blank" rel="noopener noreferrer">WinWorld page</a></li>
<li><a href="https://en.wikipedia.org/wiki/MS-DOS" target="_blank" rel="noopener noreferrer">Wikipedia</a></li>
<li><a href="https://www.pcjs.org/software/pcx86/sys/dos/compaq/1.12/" target="_blank" rel="noopener noreferrer">PCjs page - Run MS DOS 1.25 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/MS-DOS_1.25" target="_blank" rel="noopener noreferrer">BetaWiki page</a></li>
<li><a href="https://github.com/Microsoft/MS-DOS" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Source Code (Open Source) - Microsoft GitHub</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/WtoDbu6dOC4">https://youtu.be/WtoDbu6dOC4</a></li>
<li><a href="https://youtu.be/pKcuHmpTMk0">https://youtu.be/pKcuHmpTMk0</a></li>
</ul>
</li>
</ul>
<h2>Credits</h2>
<ul>
<li>The DOSBox-X emulator is an open source project hosted on <a href="https://github.com/joncampbell123/dosbox-x/" target="_blank" rel="noopener noreferrer">GitHub</a>. Visit <a href="https://dosbox-x.com/" target="_blank" rel="noopener noreferrer">its website</a> to know more.</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/" target="_blank" rel="noopener noreferrer">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install MS DOS 1.25 on DOSBox?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox/"/>
<id>https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox/</id>
<category term="MS DOS"/>
<category term="DOSBox"/>
<category term="DOS"/>
<updated>2022-06-07T15:23:43+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/23/MSDOS1.25-DOSBox-2-2.png" alt="MS DOS 1.25 on DOSBox" />
In the last tutorial, we saw how to install MS DOS 1.25 on 86Box. We also introduce MS DOS 1.25…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/23/MSDOS1.25-DOSBox-2-2.png" alt="MS DOS 1.25 on DOSBox" />
<p>In the last tutorial, we saw <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on 86Box</a>. We also introduce MS DOS 1.25 in that tutorial. If you want to know background information about MS DOS 1.25, I suggest you to read that tutorial. In this tutorial, we are going to use MS DOS 1.25 on DOSBox. DOSBox already emulates DOS, but we can use it to install a different version of DOS also.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c38ac396-c2a7-6f3c-e280-9e11c3a4c2a8" target="_blank" rel="noopener noreferrer">MS DOS 1.25 CDP OEM archive</a></li>
</ul>
<p>MS DOS 1.25 was not sold as a retailed package. It was only available to OEMs. In this tutorial we use the Columbia Data Products OEM that works well on IBM PC clones.</p>
<p class="msg msg--success"><strong><span style="text-decoration: underline;">Note<br></span></strong>This tutorial includes screenshots taken using a SVN build of DOSBox. But, I have verified this tutorial to work on release version of DOSBox too. You can use either of them. Note that DOSBox-staging and DOSBox-X are different for DOSBox and don't work for this tutorial. For DOSBox-X see, <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-x/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox-X</a>. For DOSBox-Staging, see <a href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-dosbox-staging/" target="_blank" rel="noopener noreferrer">how to install MS DOS 1.25 on DOSBox-Staging</a>.</p>
<h2>Creating the Virtual Machine</h2>
<p>If you have not already installed DOSBox, you can visit out tutorial <a href="https://legacyinstaller.pcriot.com/vm-software/dosbox" target="_blank" rel="noopener noreferrer">on how to do so on windows</a>. On Linux, you can just install the <code>dosbox</code> package on your favourite distribution.</p>
<p>Create a folder where you will store all the files related to this tutorial. Extract the MS DOS 1.25 archive and open the extracted folder. Go to the images folder inside it and copy the file called <code>CDPDOS.IMG</code> to that folder.</p>
<p>Now copy the default DOSBox config file to this folder. You can see <a href="https://www.dosbox.com/wiki/Dosbox.conf" target="_blank" rel="noopener noreferrer">this page</a> to know where the file exists on you system or you can download it from <a href="https://old.virtualhub.eu.org/media/files/dosbox.conf">here</a>. Rename it to something suitable such as <code>msdos1.25.conf</code> and open it in your favourite text editor.</p>
<p>Add the following line to the end of that file:</p>
<pre>IMGMOUNT a CDPDOS.IMG -t floppy<br>boot -l a</pre>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/23/MSDOS1.25-DOSBox-1.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-1-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-1-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-1-md.png 768w" alt="Editing the DOSBox config file" width="724" height="545"></figure>
<p>Save and close the file. Open a terminal/command prompt and navigate to that folder. Now run DOSBox:</p>
<pre>dosbox -conf msdos1.25.conf</pre>
<p>On Windows, you may need to add the path to DOSBox before this command if you have not added it to the PATH environment variable. So the command would likely become:</p>
<pre>"C:\Program Files (x86)\dosbox-0.74-3\dosbox.exe" -conf msdos1.25.conf</pre>
<p>The DOSBox program will open and boot MS DOS 1.25:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/23/MSDOS1.25-DOSBox-2.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-2-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-2-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-2-md.png 768w" alt="MS DOS 1.25 on DOSBox" width="642" height="432"></figure>
<p>When asked for Date and time, just press enter. Do not enter anything. MS DOS 1.25 has problems with dates later than year 2000, so it is best to leave the default date set. You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/23/MSDOS1.25-DOSBox-3.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-3-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-3-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/23/responsive/MSDOS1.25-DOSBox-3-md.png 768w" alt="List of files in MS DOS 1.25" width="642" height="432"></figure>
<p>You can now close that window. Now we will create a script to launch the VM. On linux create a file called MSDOS1.25.sh with the following lines:</p>
<pre>#!/bin/bash<br>dosbox -conf msdos1.25.conf</pre>
<p>Then make the script executable by running the following command in terminal after navigating to that folder:</p>
<pre>sudo chmod +x ./MSDOS1.25.sh</pre>
<p>Then we can right click on that file and click on Run as Program to open the VM. Some DEs and distros may have other methods of running shell scripts.</p>
<p>On Windows, create a file called MSDOS1.25.bat in that folder with the following contents:</p>
<pre>"C:\Program Files (x86)\dosbox-0.74-3\dosbox.exe" -conf msdos1.25.conf</pre>
<p>Then double click on that file to launch the VM.</p>
<p>That's it. We used MS DOS 1.25 in DOSBox. Read the manual linked below to learn more about MS DOS 1.25. Also read the manuals which I posted with the <a href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-dosbox/" target="_blank" rel="noopener noreferrer">IBM PC DOS 1.10 tutorial</a> because they are more detailed and MS DOS and PC DOS are almost same at this stage.</p>
<h2>Manuals</h2>
<ul>
<li><a href="https://winworldpc.com/download/c387c5b8-c38c-c38e-3ce2-809e11c3a4ef" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Manual</a></li>
</ul>
<h2>Related Pages</h2>
<ul>
<li><a href="https://winworldpc.com/product/ms-dos/1x" target="_blank" rel="noopener noreferrer">WinWorld page</a></li>
<li><a href="https://en.wikipedia.org/wiki/MS-DOS" target="_blank" rel="noopener noreferrer">Wikipedia</a></li>
<li><a href="https://www.pcjs.org/software/pcx86/sys/dos/compaq/1.12/" target="_blank" rel="noopener noreferrer">PCjs page - Run MS DOS 1.25 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/MS-DOS_1.25" target="_blank" rel="noopener noreferrer">BetaWiki page</a></li>
<li><a href="https://github.com/Microsoft/MS-DOS" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Source Code (Open Source) - Microsoft GitHub</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/WtoDbu6dOC4">https://youtu.be/WtoDbu6dOC4</a></li>
<li><a href="https://youtu.be/pKcuHmpTMk0">https://youtu.be/pKcuHmpTMk0</a></li>
</ul>
</li>
</ul>
<h2>Credits</h2>
<ul>
<li>The DOSBox emulator is an open source project hosted on <a href="https://sourceforge.net/projects/dosbox/" target="_blank" rel="noopener noreferrer">Sourceforge</a>. Visit <a href="https://www.dosbox.com/" target="_blank" rel="noopener noreferrer">its website</a> to know more.</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/" target="_blank" rel="noopener noreferrer">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
<entry>
<title>How to install MS DOS 1.25 on 86Box?</title>
<author>
<name>Legacy Installer</name>
</author>
<link href="https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/"/>
<id>https://old.virtualhub.eu.org/how-to-install-ms-dos-125-on-86box/</id>
<category term="MS DOS"/>
<category term="DOS"/>
<category term="86Box"/>
<updated>2022-06-03T17:48:41+05:30</updated>
<summary>
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/22/MS-DOS-1.25-86Box-5-2.png" alt="MS DOS 1.25 on 86Box" />
In the last few tutorials we were roaming the lands of CP/M. But now we are entering the vast empire…
]]>
</summary>
<content type="html">
<![CDATA[
<img src="https://old.virtualhub.eu.org/media/posts/22/MS-DOS-1.25-86Box-5-2.png" alt="MS DOS 1.25 on 86Box" />
<p>In the last few tutorials we were roaming the lands of CP/M. But now we are entering the vast empire of Microsoft and IBM. Let's start with MS DOS 1.25 on 86Box. DOS 1.x was very limited in what it could do. It could start applications (.COM and .EXE), and process batch files (.BAT). MS DOS 1.25 worked with 320KB floppies and did not support folders (all files had to be in the root). The command interpreter supported the following commands:</p>
<ul>
<li>DIR, TYPE, COPY, ERASE, RENAME</li>
<li>PAUSE, REM</li>
</ul>
<p>No pipes, redirection, or device drivers were supported. The DOS API in 1.0 was very limited. MS-DOS 1.25, the equivalent of PC-DOS 1.10, was the first version licensed to OEMs beyond IBM or Seattle Computer Products. Some vendors labelled their versions of MS-DOS with different names and version numbers.</p>
<p>You need to download the following file to follow this tutorial:</p>
<ul>
<li><a href="https://winworldpc.com/download/c38ac396-c2a7-6f3c-e280-9e11c3a4c2a8" target="_blank" rel="noopener noreferrer">MS DOS 1.25 CDP OEM archive</a></li>
</ul>
<p>MS DOS 1.25 was not sold as a retailed package. It was only available to OEMs. In this tutorial we use the Columbia Data Products OEM that works well on IBM PC clones.</p>
<h2>Creating the Virtual Machine</h2>
<p>If you have not installed 86Box yet, see our tutorial on <a href="https://legacyinstaller.pcriot.com/vm-software/86box" target="_blank" rel="noopener noreferrer">how to do so on windows</a> and <a href="https://legacyinstaller.pcriot.com/vm-software/how-to-install-86box-on-linux-along-with-a-manager" target="_blank" rel="noopener noreferrer">on Linux</a>.</p>
<p>Open the 86Box Manager. Click on Add and enter the details for your VM. Tick the "Configure this VM now" checkbox. Then click on Add.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/22/MS-DOS-1.25-86Box-1.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-1-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-1-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-1-md.png 768w" alt="86Box new VM wizard" width="600" height="304"></figure>
<p>Leave the Machine type to <code>8088</code>. In the Machine Dropbox, choose <code>[8088] OpenXT</code>. Change the speed to <code>16</code> and memory to <code>640 KB</code>. Click on OK.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/22/MS-DOS-1.25-86Box-2.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-2-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-2-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-2-md.png 768w" alt="86Box MS DOS 1.25 settings" width="835" height="691"></figure>
<p>Now extract the MS DOS 1.25 archive and open the extracted folder. Go to the images folder inside it and copy the file called <code>CDPDOS.IMG</code> to the VM folder.</p>
<p>Now back on the 86Box Manager, click on Start. The VM will start. Click on <code>Media</code> > <code>Floppy 1</code> > <code>Existing Image</code> and choose the <code>CDPDOS.IMG</code> file.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/22/MS-DOS-1.25-86Box-3.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-3-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-3-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-3-md.png 768w" alt="Choosing the Floppy DIsk" width="642" height="511"></figure>
<p>Press any key to start MS DOS 1.25. When asked for Date and time, just press enter. Do not enter anything. MS DOS 1.25 has problems with dates later than year 2000, so it is best to leave the default date set.</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/22/MS-DOS-1.25-86Box-4.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-4-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-4-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-4-md.png 768w" alt="MS DOS 1.25 on 86Box" width="640" height="514"></figure>
<p>You can enter the <code>DIR</code> command to see the list of files:</p>
<figure class="post__image post__image--center"><img decoding="async" loading="lazy" src="https://old.virtualhub.eu.org/media/posts/22/MS-DOS-1.25-86Box-5.png" sizes="(max-width: 48em) 100vw, 100vw" srcset="https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-5-xs.png 300w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-5-sm.png 480w ,https://old.virtualhub.eu.org/media/posts/22/responsive/MS-DOS-1.25-86Box-5-md.png 768w" alt="List of files in MS DOS 1.25" width="640" height="514"></figure>
<p>That's it. We used MS DOS 1.25. You can now close the VM window. The next time you start it, you do not need to insert the disk file again. MS DOS 1.25 will start without any problem. Read the manual linked below to learn more about MS DOS 1.25. Also read the manuals which I posted with the<a href="https://old.virtualhub.eu.org/how-to-install-pc-dos-110-on-86box/" target="_blank" rel="noopener noreferrer"> IBM PC DOS 1.10 tutorial</a> because they are more detailed and MS DOS and PC DOS are almost same at this stage.</p>
<h2>Manuals</h2>
<ul>
<li><a href="https://winworldpc.com/download/c387c5b8-c38c-c38e-3ce2-809e11c3a4ef" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Manual</a></li>
</ul>
<h2>Related Pages</h2>
<ul>
<li><a href="https://winworldpc.com/product/ms-dos/1x" target="_blank" rel="noopener noreferrer">WinWorld page</a></li>
<li><a href="https://en.wikipedia.org/wiki/MS-DOS" target="_blank" rel="noopener noreferrer">Wikipedia</a></li>
<li><a href="https://www.pcjs.org/software/pcx86/sys/dos/compaq/1.12/" target="_blank" rel="noopener noreferrer">PCjs page - Run MS DOS 1.25 in you web browser</a></li>
<li><a href="https://betawiki.net/wiki/MS-DOS_1.25" target="_blank" rel="noopener noreferrer">BetaWiki page</a></li>
<li><a href="https://github.com/Microsoft/MS-DOS" target="_blank" rel="noopener noreferrer">MS DOS 1.25 Source Code (Open Source) - Microsoft GitHub</a></li>
<li>Some related YouTube videos:
<ul>
<li><a href="https://youtu.be/WtoDbu6dOC4">https://youtu.be/WtoDbu6dOC4</a></li>
<li><a href="https://youtu.be/pKcuHmpTMk0">https://youtu.be/pKcuHmpTMk0</a></li>
</ul>
</li>
</ul>
<h2>Credits</h2>
<ul>
<li>The 86Box emulator is an open source project hosted on <a href="https://github.com/86Box" target="_blank" rel="noopener noreferrer">GitHub</a>. Visit <a href="https://86box.net/" target="_blank" rel="noopener noreferrer">its website</a> to know more.</li>
<li>The disk image used above was taken from <a href="https://winworldpc.com/" target="_blank" rel="noopener noreferrer">WinWorld</a>.</li>
</ul>
]]>
</content>
</entry>
</feed>