Archivo de la etiqueta: bochs

bochs

bochs sobre Raspberry Pi ( en español )

< x86 en ARM >
Trato de ejecutar DOS en Debian wheezy en Raspberry Pi.
( Windows95 también es posible, pero es demasiado lento )

< Instalar “bochs” >
Instalación “bochs” es muy fácil.
Línea de comandos es la siguiente.

root@myhost:~# apt-get install bochs bochs-x bochs-sdl bochs-svga

< Generar imagen del disco duro >
Ejecutar “bximage” en su Raspberry Pi.
Recomiendo ejecutar “bximage” como usuario no root.
Usted debe ejecutar “bximage” como un usuario que utiliza “bochs”.
Es 2GB muestra la imagen.

$ bximage
========================================================================
                                bximage
                  Disk Image Creation Tool for Bochs
        $Id: bximage.c,v 1.34 2009/04/14 09:45:22 sshwarts Exp $
========================================================================
Do you want to create a floppy disk image or a hard disk image?
Please type hd or fd. [hd]
What kind of image should I create?
Please type flat, sparse or growing. [flat]
Enter the hard disk size in megabytes, between 1 and 129023
[10] 
2048
I will create a ‘flat’ hard disk image with
  cyl=4161
  heads=16
  sectors per track=63
  total sectors=4194288
  total size=2047.99 megabytes
What should I name the image?
[c.img] 
msdoshdd.img
Writing: [] Done.
I wrote 2147475456 bytes to msdoshdd.img.
The following line should appear in your bochsrc:
  
ata0-master: type=disk, path=”msdoshdd.img”, mode=flat, cylinders=4161, heads=16, spt=63

“bximage”, dijo para agregar la línea “
ata0-master: type=disk, path=”msdoshdd.img”, mode=flat, cylinders=4161, heads=16, spt=63” a “.bochsrc”.

< Generar “.bochsrc” para MS-DOS >
Vaya a su directorio personal.
Yo uso “nano” para editar archivos de texto.

$ cd /home/username
$ nano .bochsrc

Mi “.bochsrc” está como abajo.

megs: 64
romimage: file=$BXSHARE/BIOS-bochs-latest
vgaromimage: file=$BXSHARE/VGABIOS-lgpl-latest
display_library: sdl
ata0-master: type=disk, path=/home/username/msdoshdd.img, mode=flat, cylinders=4161, heads=16, spt=63
ata0-slave: type=cdrom, path=/home/username/MS-DOS-6.22.iso, status=inserted
boot: cdrom, disk
#keyboard_mapping: enabled=1, map=/usr/share/bochs/keymaps/x11-pc-us.map
log: bochsout.txt
clock: sync=realtime, time0=local

“MS-DOS-6.22.iso” es mi archivo de inicio de MS-DOS. Por favor, cambie a cualquier archivo ISO de arranque que tiene. En mi “.bochsrc”, el ratón no está disponible. Si desea utilizar el ratón, por favor google sobre “Cómo editar bochsrc a utilizar el ratón”.

< Instalar VNC >
Si utiliza la pantalla HDMI, no es necesario este paso.
Si no se utiliza la pantalla, es necesario instalar el servidor VNC para X remoto en Raspberry Pi.
Ejecutar esta línea de comandos como root.

root@myhost:~# apt-get install tightvncserver

Ejecute esta línea de comandos como usuario que utiliza “bochs”.

$ vncserver :1 -geometry 1024×768 -depth 24
You will require a password to access your desktops.
Password:
Verify:
Would you like to enter a view-only password (y/n)? 
n
New ‘X’ desktop is myhost:1

“:1″ significa puerto “5901″.
“-geometry 1024×768″ significa resolución.
“-depth 24″ significa colores en bits.

< Ejecutar bochs >
Por favor, conecte el servidor VNC en Raspberry Pi. (O use “startx” con la exhibición de HDMI)
Y ejecutar terminal. ( Ex. LXTerminal )
Ejecutar bochs en el terminal.

$ bochs

A veces bochs te preguntan como esta sintaxis.

A PANIC has occurred.  Do you want to:
  cont       – continue execution
  alwayscont – continue execution, and don’t ask again.
               This affects only PANIC events from device [MEM0 ]
  die        – stop execution now
  abort      – dump core
  debug      – hand control to gdb

Yo siempre respondo “alwayscont”.

< Para ser honesto >
He intentado instalar Windows95.
Pero necesita imágenes FD de DOS y Windows3.1. (Mi Windows95 es la versión de actualización)
Era un problema para mí.
Así que cambié mi objetivo.