-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathaixps2.html
3303 lines (1867 loc) · 81.5 KB
/
aixps2.html
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
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="generator" content="Bluefosh 1488" />
<title>Naszvadi Péter - AIX PS2 telepítés Bochs emulátorba</title>
<style type="text/css">
<!--
pre { background: #000000; color: #c0c0c0 }
-->
</style>
</head>
<body>
<hr />
<a href="README.md">main()</a>
<hr />
<h1>Tart a lom</h1>
<ul>
<li>Tart a lom</li>
<li>Beszólás, olyan jogi izé</li>
<li>Kellékek, előkészületek</li>
<li>Telepítés</li>
</ul>
<h1>Beszólás, olyan jogi izé</h1>
Ez eléggé alfa állapotú dokumentáció (:).
<hr />
A lehető legtöbb jog fenntartva! Semmilyen felelősséggel nem tartozik a dokumentum készítője senkinek! E produktumot Magyarországgal hadban álló ország polgárai nem használhatják, továbbá olyan ország nem Magyar nemzetiségű polgárai
sem, ahol a Magyarokat, a Magyarságot érintő bármiféle kollektív bűnösséget vagy hátrányt deklaráló jogszabály,
rendelkezés érvényben van (pl. szlovákia) vagy volt, és nem kértek hivatalosan bocsánatot és nem fizettek érte a szerző által elégségesnek ítélt erkölcsi és anyagi jóvátételt minden áldozatnak és leszármazottnak, a leszármazottak nélküli (gy.k. kiirtott) áldozatok helyett pedig Magyarországnak!
<h1>Kellékek, előkészületek</h1>
<p>Az AIX unix-like operációs rendszer 1.x verziói i386 processzoros IBM PS2 számítógépeken futottak. Az 1.3, az utolsó 1.x kiadás pedig már futott tetszőleges IBM PC kompatibilis számítógépen (80386 kompatibilis processzor és kb. legalább 4 MB RAM, elegendő egyéb hardver-erőforrás azért szükséges). Ingyenes és nyílt forrású emulátorba/virtualizátorba/szimulátorba való telepítések azonban ezidáig kudarcot vallottak. Viszont sikeresen települ és indul Ubuntu 10.04/x86 alatt futó <a href="README.md">bochs</a> emulátorba, pontos verzió:
</p><pre width="80">
$ dpkg --get-selections | grep -oP '.*(bios|bochs)\S*'
bochs
bochs-doc
bochs-sdl
bochs-term
bochs-wx
bochs-x
bochsbios
seabios
vgabios
$ bochs --help
========================================================================
Bochs x86 Emulator 2.4.5
Build from CVS snapshot, on April 25, 2010
========================================================================
Usage: bochs [flags] [bochsrc options]
-n no configuration file
-f configfile specify configuration file
-q quick start (skip configuration interface)
-benchmark n run bochs in benchmark mode for millions of emulated ticks
-r path restore the Bochs state from path
-log filename specify Bochs log file name
--help display this help and exit
For information on Bochs configuration file arguments, see the
bochsrc section in the user documentation or the man page of bochsrc.
00000000000i[CTRL ] quit_sim called with exit code 0
$
</pre><p>
Kell még egy kb. 300 megabájtos diszkképfájl, amit pl. így hozhatunk létre unix-szerű rendszerek alatt:
</p><pre width="80">
$ nohup dd if=/dev/zero of=./944x14x46.chs count=$[944*14*46]
</pre><p>
Ami még kell nekünk, egy FreeDOS telepítőfloppy, melyen rajta van az alaprendszer (kernel*.* és command*.*), továbbá FDISK, FORMAT, SYS, BOOTMGR. Ezenkívül még szükségünk lesz az AIXPS2 1.3 telepítőkészletére, a 15 db. Base Operating System floppyra, 2 db. PTF0024 SCSI bootfloppyra, a PTF0024 install floppyra, és a PTF0024-U436295 háromdarabos update patch floppykra, no és nem utolsósorban egy jól beállított, 8MB ramot használható bochsrc konfigurációs fájlra,
amiben a bootfloppy 0xaa55 ellenőrzést kikapcsoltuk!</p>
<h1>Telepítés</h1>
<p>Bootoljunk egyet!</p>
<pre width="80">Plex86/Bochs VGABios current-cvs 16 Apr 2010
This VGA/VBE Bios is released under the GNU LGPL
Please visit :
. http://bochs.sourceforge.net
. http://www.nongnu.org/vgabios
Bochs VBE Display Adapter enabled
Bochs BIOS - build: 06/30/10
$Revision: 1.247 $ $Date: 2010/04/04 19:33:50 $
Options: apmbios pcibios pnpbios eltorito rombios32
ata0 master: LOCALBUSHD ATA-6 Hard-Disk ( 296 MBytes)
_
</pre>
<p>Bootol a FreeDOS floppyról</p>
<pre width="80">
Please visit :
. http://bochs.sourceforge.net
. http://www.nongnu.org/vgabios
Bochs VBE Display Adapter enabled
Bochs BIOS - build: 06/30/10
$Revision: 1.247 $ $Date: 2010/04/04 19:33:50 $
Options: apmbios pcibios pnpbios eltorito rombios32
ata0 master: LOCALBUSHD ATA-6 Hard-Disk ( 296 MBytes)
Press F12 for boot menu.
Booting from Floppy...
FreeDOS kernel build 2036 cvs [version Aug 18 2006 compiled Aug 18 2006]
Kernel compatibility 7.10 - WATCOMC - 80386 CPU required - FAT32 support
(C) Copyright 1995-2006 Pasquale J. Villani and The FreeDOS Project.
All Rights Reserved. This is free software and comes with ABSOLUTELY NO
WARRANTY; you can redistribute it and/or modify it under the terms of the
GNU General Public License as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
- InitDisk_
</pre>
<p>Majdnem mindegy, hogy mit választunk ki, csak fdisk/format/sys/copy stb. miatt kell</p>
<pre width="80">
Balder 10 (FreeDOS 1.0)
0 - Start FreeDOS for 8086 based system
1 - Start FreeDOS for 186 based system
2 - Start FreeDOS for 286 + FDXMS
3 - Start FreeDOS for 386 + FDXMS
4 - Start FreeDOS for 386 + HIMEM + EMM386
5 - Start FreeDOS for 386 + HIMEM + EMM386 + XDMA
6 - Start FreeDOS for 386 + HIMEM + EMM386 + XDMA + CD-ROM
NOTE : CD-ROM can be loaded by running file LOADCD.BAT
Select from Menu [0123456], or press [ENTER] (Selection=1)
Singlestepping (F8) is: OFF
</pre>
<p>Itt a szép promptunk!</p>
<pre width="80">
FreeCom version 0.84-pre2 XMS_Swap [Aug 28 2006 00:29:00]
CuteMouse v1.9.1 alpha 1 [FreeDOS]
Installed at PS/2 port
A:\>_
</pre>
<p>Fdisk!</p>
<pre width="80">
FreeCom version 0.84-pre2 XMS_Swap [Aug 28 2006 00:29:00]
CuteMouse v1.9.1 alpha 1 [FreeDOS]
Installed at PS/2 port
A:\>fdisk_
</pre>
<p>Az alapértelmezett fdisk indítási paraméterek NEM JÓK!</p>
<pre width="80">
Free FDISK is capable of using large disk support to allow you to
create partitions that are greater than 2,048 MB by using FAT32
partitions. If you enable large disk support, any partitions or
logical drives greater than 512 MB will be created using FAT32.
IMPORTANT: If you enable large disk support, some operating systems
will be unable to access the partitions and logical drives that are
over 512 MB in size.
Do you want to use large disk (FAT32) support (Y/N).[Y]?
</pre>
<p>A kékeres kutyaizét kell fat32, helyette legyen fat16!</p>
<pre width="80">
Free FDISK is capable of using large disk support to allow you to
create partitions that are greater than 2,048 MB by using FAT32
partitions. If you enable large disk support, any partitions or
logical drives greater than 512 MB will be created using FAT32.
IMPORTANT: If you enable large disk support, some operating systems
will be unable to access the partitions and logical drives that are
over 512 MB in size.
Do you want to use large disk (FAT32) support (Y/N).[N]?
</pre>
<p>Töxűz lemezre óhajtunk partíciót rakni (1-es gomb)</p>
<pre width="80"> Free FDISK Version 1.2.1
Fixed Disk Setup Program
GNU GPL Copyright Brian E. Reifsnyder 1998 - 2003
FDISK Options
Current fixed disk drive: 1
Choose one of the following:
1. Create DOS partition or Logical DOS Drive
2. Set Active partition
3. Delete partition or Logical DOS Drive
4. Display partition information
Enter choice: [1]
Press Esc to exit FDISK
</pre>
<p>Elsődleges DOS partíció kell (1)</p>
<pre width="80">
Create DOS Partition or Logical DOS Drive
Current fixed disk drive: 1
Choose one of the following:
1. Create Primary DOS Partition
2. Create Extended DOS Partition
3. Create Logical DOS Drive(s) in the Extended DOS Partition
Enter choice: [ ]
Press Esc to return to FDISK options
</pre>
<p>(N), azaz nem akarjuk a teljes lemezterületet elpazarolni a DOS számára, hiszen kell hely az AIX-nak is!</p>
<pre width="80">
Create Primary DOS Partition
Current fixed disk drive: 1
Do you wish to use the maximum available size for a Primary DOS Partition
and make the partition active (Y/N).....................? [N]
Press Esc to return to FDISK options
</pre>
<p>Hasraütve 33 MB elég lesz a DOS számára</p>
<pre width="80">
Create Primary DOS Partition
Current fixed disk drive: 1
Total disk space is 297 Mbytes (1 Mbyte = 1048576 bytes)
Maximum space available for partition is 297 Mbytes (100%)
Enter partition size in Mbytes or percent of disk space (%) to
create a Primary DOS Partition.................................: [ 33]
No partitions defined
Press Esc to return to FDISK options
</pre>
<p>Tovább</p>
<pre width="80">
Create Primary DOS Partition
Current fixed disk drive: 1
Partition Status Type Volume Label Mbytes System Usage
C: 1 PRI DOS 33 FAT16 11%
Total disk space is 297 Mbytes (1 Mbyte = 1048576 bytes)
Primary DOS Partition created
Press Esc to continue_
</pre>
<p>(2-es gomb) - azaz aktív partíciót ki kell jelölni</p>
<pre width="80">
FDISK Options
Current fixed disk drive: 1
Choose one of the following:
1. Create DOS partition or Logical DOS Drive
2. Set Active partition
3. Delete partition or Logical DOS Drive
4. Display partition information
Enter choice: [1]
WARNING! No partitions are set active - disk 1 is not startable unless
a partition is set active
Press Esc to exit FDISK
</pre>
<p>A felkínált partíciók közül válasszunk ki egyet (1)</p>
<pre width="80">
Set Active Partition
Current fixed disk drive: 1
Partition Status Type Volume Label Mbytes System Usage
C: 1 PRI DOS 33 FAT16 11%
Total disk space is 297 Mbytes (1 Mbyte = 1048576 bytes)
Enter the number of the partition you want to make active.........[ ]
Press Esc to return to FDISK options
</pre>
<p>Kilépés az fdisk-ből</p>
<pre width="80">
FDISK Options
Current fixed disk drive: 1
Choose one of the following:
1. Create DOS partition or Logical DOS Drive
2. Set Active partition
3. Delete partition or Logical DOS Drive
4. Display partition information
Enter choice: [1]
Press Esc to exit FDISK
</pre>
<p>Kikapcs/bekapcs</p>
<pre width="80">
A:\>
</pre>
<p>Megint floppylemezről indítjuk a rendszert</p>
<pre width="80">Plex86/Bochs VGABios current-cvs 16 Apr 2010
This VGA/VBE Bios is released under the GNU LGPL
Please visit :
. http://bochs.sourceforge.net
. http://www.nongnu.org/vgabios
Bochs VBE Display Adapter enabled
Bochs BIOS - build: 06/30/10
$Revision: 1.247 $ $Date: 2010/04/04 19:33:50 $
Options: apmbios pcibios pnpbios eltorito rombios32
ata0 master: LOCALBUSHD ATA-6 Hard-Disk ( 296 MBytes)
Press F12 for boot menu.
_
</pre>
<p>Majdnem mindegy, hogy melyiket választjuk</p>
<pre width="80">
Balder 10 (FreeDOS 1.0)
0 - Start FreeDOS for 8086 based system
1 - Start FreeDOS for 186 based system
2 - Start FreeDOS for 286 + FDXMS
3 - Start FreeDOS for 386 + FDXMS
4 - Start FreeDOS for 386 + HIMEM + EMM386
5 - Start FreeDOS for 386 + HIMEM + EMM386 + XDMA
6 - Start FreeDOS for 386 + HIMEM + EMM386 + XDMA + CD-ROM
NOTE : CD-ROM can be loaded by running file LOADCD.BAT
Select from Menu [0123456], or press [ENTER] (Selection=3) - 10
_ Singlestepping (F8) is: OFF
</pre>
<p><b>Format C: /Q /U /S</b> parancsot adjuk ki</p>
<pre width="80">
FreeCom version 0.84-pre2 XMS_Swap [Aug 28 2006 00:29:00]
CuteMouse v1.9.1 alpha 1 [FreeDOS]
Installed at PS/2 port
A:\>format c: /q /u/s
WARNING: ALL DATA ON NON-REMOVABLE DISK
DRIVE C: WILL BE LOST! PLEASE CONFIRM!
Proceed with format (YES/NO)? _
</pre>
<p>Írjuk be az angol igen három betűjét (YES)</p>
<pre width="80">
FreeCom version 0.84-pre2 XMS_Swap [Aug 28 2006 00:29:00]
CuteMouse v1.9.1 alpha 1 [FreeDOS]
Installed at PS/2 port
A:\>format c: /q /u/s
WARNING: ALL DATA ON NON-REMOVABLE DISK
DRIVE C: WILL BE LOST! PLEASE CONFIRM!
Proceed with format (YES/NO)? YES_
</pre>
<p>Címkének mindegy, hogy mit adunk meg</p>
<pre width="80">
FreeCom version 0.84-pre2 XMS_Swap [Aug 28 2006 00:29:00]
CuteMouse v1.9.1 alpha 1 [FreeDOS]
Installed at PS/2 port
A:\>format c: /q /u/s
WARNING: ALL DATA ON NON-REMOVABLE DISK
DRIVE C: WILL BE LOST! PLEASE CONFIRM!
Proceed with format (YES/NO)? YES
Disk size: 33 Mbytes, FAT16. ***
Please enter volume label (max. 11 chars): _
</pre>
<p>Szépen rákerül a FreeDOS kernel és a parancsértelmező (command.com)</p>
<pre width="80">Reading old bootsector from drive C:
FAT type: FAT16
Old boot sector values: sectors/track: 46, heads: 14, hidden: 46
Default and new boot sector values: sectors/track: 46, heads: 14, hidden: 46
Root dir entries = 512
FAT starts at sector (46 + 1)
Root directory starts at sector (PREVIOUS + 66 * 2)
Boot sector kernel name set to KERNEL SYS
Boot sector load segment set to 60h
writing new bootsector to drive C:
Copying KERNEL.SYS...
45341 Bytes transferred
Copying COMMAND.COM...
66945 Bytes transferred
System transferred.
34,597,888 bytes total disk space (disk size)
34,512,896 bytes available on disk (free clusters)
2,048 bytes in each allocation unit.
16,852 allocation units on disk.
Volume Serial Number is 1127-07FC
A:\>_
</pre>
<p>A formázás után kiadjuk a <b>copy a:*.* c:</b> parancsot, mely
a floppy gyökerének a tartalmát a C:\-be másolja</p>
<pre width="80">FAT type: FAT16
Old boot sector values: sectors/track: 46, heads: 14, hidden: 46
Default and new boot sector values: sectors/track: 46, heads: 14, hidden: 46
Root dir entries = 512
FAT starts at sector (46 + 1)
Root directory starts at sector (PREVIOUS + 66 * 2)
Boot sector kernel name set to KERNEL SYS
Boot sector load segment set to 60h
writing new bootsector to drive C:
Copying KERNEL.SYS...
45341 Bytes transferred
Copying COMMAND.COM...
66945 Bytes transferred
System transferred.
34,597,888 bytes total disk space (disk size)
34,512,896 bytes available on disk (free clusters)
2,048 bytes in each allocation unit.
16,852 allocation units on disk.
Volume Serial Number is 1127-07FC
A:\>copy a:*.* c:
Overwrite 'c:KERNEL.SYS' (Yes/No/All/Quit) ?
</pre>
<p>Ne írjuk felül a már létező KERNEL.SYS és COMMAND.COM fájlt!</p>
<pre width="80">Boot sector kernel name set to KERNEL SYS
Boot sector load segment set to 60h
writing new bootsector to drive C:
Copying KERNEL.SYS...
45341 Bytes transferred
Copying COMMAND.COM...
66945 Bytes transferred
System transferred.
34,597,888 bytes total disk space (disk size)
34,512,896 bytes available on disk (free clusters)
2,048 bytes in each allocation unit.
16,852 allocation units on disk.
Volume Serial Number is 1127-07FC
A:\>copy a:*.* c:
Overwrite 'c:KERNEL.SYS' (Yes/No/All/Quit) ? n
Overwrite 'c:COMMAND.COM' (Yes/No/All/Quit) ? n
a:APPEND.EXE => c:APPEND.EXE
a:ASSIGN.COM => c:ASSIGN.COM
a:ATTRIB.COM => c:ATTRIB.COM
a:CDTRIB.COM => c:ATTRIB.COM
a:CDRCACHE.SYS => c:_
</pre>
<p>Ezután újraindítjuk a rendszert</p>
<pre width="80">Plex86/Bochs VGABios current-cvs 16 Apr 2010
This VGA/VBE Bios is released under the GNU LGPL
Please visit :
. http://bochs.sourceforge.net
. http://www.nongnu.org/vgabios
Bochs VBE Display Adapter enabled
Bochs BIOS - build: 06/30/10
$Revision: 1.247 $ $Date: 2010/04/04 19:33:50 $
Options: apmbios pcibios pnpbios eltorito rombios32
ata0 master: LOCALBUSHD ATA-6 Hard-Disk ( 296 MBytes)
_
</pre>
<p>Be kell gépelni a BOOTMGR parancsot, amivel bootmanagert fogunk
telepíteni, majd beállítani</p>
<pre width="80">
FreeCom version 0.84-pre2 XMS_Swap [Aug 28 2006 00:29:00]
CuteMouse v1.9.1 alpha 1 [FreeDOS]
Installed at PS/2 port
C:\>
</pre>
<p>bátran tessék begépelni, hogy BOOTMGR(Enter) !</p>
<pre width="80">
FreeCom version 0.84-pre2 XMS_Swap [Aug 28 2006 00:29:00]
CuteMouse v1.9.1 alpha 1 [FreeDOS]
Installed at PS/2 port
C:\>
</pre>
<p>Az első partíciót kereszteljül el példűul DOS névre, és tegyük
alapértelmezett bootmenüponttá! Majd a <b>Write MBR</b> gombbal írjuk ki
a partíciós táblát az új beállításokkal!</p>
<pre width="80">################################################################################
### BOOTMGR Version 18-FEB-2005 - multi-BOOT ManaGeR BTTR Software ###
################################################################################
################################################################################
### Hard disk 1 (of 1), Size= 296M, C:H:S= 944: 14:46, Mode=LBA ## active ###
### #|ID|Type | Size| Start-LBA|Mode|Start-C:H:S| End-C:H:S ## Part. ###
################################################################################
### 1|06|FAT16B | 32M| 46|CHS | 0: 1: 1| 104: 13:46 ## <- ###
### 2|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
### 3|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
### 4|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
################################################################################
################################################################################
### Menu ## Assoc. ## Hide ## Timeout ####### Save MBR ## Defaults ###
################################################################################
### DOS ## #1 ## ## 10 sec. ######################################
### <Floppy> ## A: <- ## ################## Restore MBR ## Write MBR ###
### <NextHD> ## D: ## #################################################
### ## ## #################################################
### ## ## ################## Change disk ## Quit ###
################################################################################
################################################################################
### Write partition table, install BOOTMGR or generic loader ###
################################################################################
################################################################################
</pre>
<p>(B) betűt kell nyomni</p>
<pre width="80">################################################################################
### BOOTMGR Version 18-FEB-2005 - multi-BOOT ManaGeR BTTR Software ###
################################################################################
################################################################################
### Hard disk 1 (of 1), Size= 296M, C:H:S= 944: 14:46, Mode=LBA ## active ###
### #|ID|Type | Size| Start-LBA|Mode|Start-C:H:S| End-C:H:S ## Part. ###
################################################################################
### 1|06|FAT16B | 32M| 46|CHS | 0: 1: 1| 104: 13:46 ## <- ###
### 2|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
### 3|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
### 4|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
################################################################################
################################################################################
### Menu ## Assoc. ## Hide ## Timeout ####### Save MBR ## Defaults ###
################################################################################
### DOS ## #1 ## ## 10 sec. ######################################
### <Floppy> ## A: <- ## ################## Restore MBR ## Write MBR ###
### <NextHD> ## D: ## #################################################
### ## ## #################################################
### ## ## ################## Change disk ## Quit ###
################################################################################
################################################################################
### Master Bootstrap Loader to install: BOOTMGR Generic Keep existing ###
################################################################################
################################################################################
</pre>
<p>Meg még egy (Enter)-t is!</p>
<pre width="80">################################################################################
### BOOTMGR Version 18-FEB-2005 - multi-BOOT ManaGeR BTTR Software ###
################################################################################
################################################################################
### Hard disk 1 (of 1), Size= 296M, C:H:S= 944: 14:46, Mode=LBA ## active ###
### #|ID|Type | Size| Start-LBA|Mode|Start-C:H:S| End-C:H:S ## Part. ###
################################################################################
### 1|06|FAT16B | 32M| 46|CHS | 0: 1: 1| 104: 13:46 ## <- ###
### 2|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
### 3|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
### 4|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
################################################################################
################################################################################
### Menu ## Assoc. ## Hide ## Timeout ####### Save MBR ## Defaults ###
################################################################################
### DOS ## #1 ## ## 10 sec. ######################################
### <Floppy> ## A: <- ## ################## Restore MBR ## Write MBR ###
### <NextHD> ## D: ## #################################################
### ## ## #################################################
### ## ## ################## Change disk ## Quit ###
################################################################################
################################################################################
### <+ Ok to install/update BOOTMGR as configured Esc Cancel ###
################################################################################
################################################################################
</pre>
<p>Fejezzük be a garázdálkodást</p>
<pre width="80">################################################################################
### BOOTMGR Version 18-FEB-2005 - multi-BOOT ManaGeR BTTR Software ###
################################################################################
################################################################################
### Hard disk 1 (of 1), Size= 296M, C:H:S= 944: 14:46, Mode=LBA ## active ###
### #|ID|Type | Size| Start-LBA|Mode|Start-C:H:S| End-C:H:S ## Part. ###
################################################################################
### 1|06|FAT16B | 32M| 46|CHS | 0: 1: 1| 104: 13:46 ## <- ###
### 2|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
### 3|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
### 4|00|empty | 0K| 0|CHS | 0: 0: 0| 0: 0: 0 ## ###
################################################################################
################################################################################
### Menu ## Assoc. ## Hide ## Timeout ####### Save MBR ## Defaults ###
################################################################################
### DOS ## #1 ## ## 10 sec. ######################################
### <Floppy> ## A: <- ## ################## Restore MBR ## Write MBR ###
### <NextHD> ## D: ## #################################################
### ## ## #################################################
### ## ## ################## Change disk ## Quit ###
################################################################################
################################################################################
### Exit to Operating System ###
################################################################################
################################################################################
</pre>
<p>MOST cserélünk Bochs konfigurációs fájlt, az indítandó bootfloppy
image fájl mostantól az AIX telepítő bootfloppy legyen, amit indítsunk
is el így</p>
<pre width="80">Plex86/Bochs VGABios current-cvs 16 Apr 2010
This VGA/VBE Bios is released under the GNU LGPL
Please visit :
. http://bochs.sourceforge.net
. http://www.nongnu.org/vgabios
Bochs VBE Display Adapter enabled
Bochs BIOS - build: 06/30/10
$Revision: 1.247 $ $Date: 2010/04/04 19:33:50 $
Options: apmbios pcibios pnpbios eltorito rombios32
ata0 master: LOCALBUSHD ATA-6 Hard-Disk ( 296 MBytes)
Press F12 for boot menu.
Booting from Floppy...
</pre>
<p>Nyomjuk meg Enikőt a folytatáshoz!</p>
<pre width="80">
IBM AIX PS/2 Operating System
VERSION 1.3.0
NVRAM Configuration
AIX PS/2 requires that a few system configuration parameters
be recorded in non-volatile memory (NVRAM). Your NVRAM does not
contain this information. It will be necessary for you to provide
the required information before proceeding to boot the AIX kernel.
Press any key to continue ..._
</pre>
<p>Amerikai billentzuyetkiosytast valassyuk ki</p>
<pre width="80">
SELECT KEYBOARD LANGUAGE
Belgian Portuguese
Canadian Spanish
Danish Swedish
Dutch SwissFren
French SwissGerm
German UK
Italian US
LatinAmer Icelandic
Norwegian Japanese
Use the cursor keys to select the desired item.
Press ENTER to confirm your selection and continue.
Press F3 to cancel this selection.
</pre>
<p>Valamelyik szimpatikus monitorbeállítási lehetőséget</p>
<pre width="80">
SELECT MONITOR TYPE