Overview
The IBM PC110 can run any operating system that any IBM PC compatible computer, from the mid to late 90's can.
This could be PC Dos, MS Dos, Windows 3.1, Windows 95 (even Windows 98 at a pinch), Windows NT 4.0, OS/2, Unix even CP/M.
On my IBM PC110, I've had two operating systems. Pc Dos 7/V with Windows 3.1, also with Windows 95.
A tale of three OS's
The bios has been setup so that the PC 110 tries to boot from the hard disk.
If this is not present, then it will try and boot from the external floppy disk.
Finally, after all else has been tried, the machine boots from the internal SanDisk.
PC Dos 7
The SanDisk is a flash card that is pin compatible with PCMCIA, though much smaller.
The internal SanDisk has 4 megs of room on it. 2 Meg of this is used up with a
stripped down install of PC Dos 7. I have also added some third party software
to make the system more useable in a Dos environment.
My main control system is LapLink 3. LL3 allows me disk and remote machine access.
I can view files, copy etc. etc. The main advantage is that the LL3 footprint is
very small. I reduce the size of this further by using PkLite.
This piece of software takes a .COM or a .EXE file, compresses it and then
recreates an exectuable file that can be run from the Dos prompt. The downside
is that it takes a fraction longer to start a program, though this I can live with!
Based on information from Amanda Walkers page, I have created a boot script that will
allow me to boot to either Pc Dos 7 (English), Pc Dos 7 (Japanese) or (believe it
or not) a ZX Spectrum Emulator.
You'll find copies of my Autotexec.Bat and Config.Sys files at the end of this page.
In the PCMCIA slots I have a 240 meg hard drive. This has Windows 95 installed on it.
To give me enough room for applications, this drive has been compresssed and only a
minimal install of Win95 has been used. I have a reported 400meg free.
Any More?
These is also a port for another SanDisk. These come in 4, 8 and 16 meg versions.
It is my intention to attempt to install yet another OS onto this.
The beauty of tbe PC110 is that is is incredibly easy to swap from OS to OS using
the PCMCIA and SanDisk technology.
Conclusion
Mainly, I use Windows 95 when I am plugged into the mains and Dos 7 when I am on the move. By doing this I can get (in theory), three hours of battery life - I've yet to test this!
Boot Files
This is my Config.Sys file
Switches=/F
[Menu]
MenuItem=PCDOS7E, PC-DOS 7 (E)
MenuItem=PCDOS7J, PC-DOS 7 (J)
Menuitem=Spectrum, Spectrum Boot.
[Common]
BUFFERS=20
FILES=40
DEVICE=C:\DOS\HIMEM.SYS
DEVICE=C:\EMM386.EXE RAM I=B000-B7FF I=C900-DBFF X=DC00-DFFF FRAME=E000
DOS=HIGH,UMB
DOSDATA=UMB
SHELL=C:\COMMAND.COM C:\ /P /E:512 /H
DEVICEHIGH=C:\DOS\POWER.EXE ADV:MAX
DEVICEHIGH=C:\EZPLAY\SSDPCIC1.SYS
DEVICEHIGH=C:\EZPLAY\IBMDOSCS.SYS
DEVICEHIGH=C:\EZPLAY\RMUDOSAT.SYS /MA=DC00-DDFF /IX=5,10 /PX=15E0-15EF,35E0-35EF,102
DEVICEHIGH=C:\EZPLAY\$ICPMDOS.SYS
DEVICEHIGH=C:\EZPLAY\PAWATAS.SYS
DEVICEHIGH=C:\EZPLAY\AUTODRV.SYS
DEVICE=C:\SMARTDRV.EXE /DOUBLE_BUFFER
[PCDOS7E]
[PCDOS7J]
COUNTRY=081,932,\DOS\COUNTRY.SYS
DEVICEHIGH=C:\DOS\$FONT.SYS /MSG=OFF
DEVICEHIGH=C:\DOS\$DISP.SYS /MSG=OFF
DEVICEHIGH=C:\DOS\$IAS.SYS
DEVICEHIGH=C:\DOS\POWER.EXE ADV:MAX
INSTALL=C:\DOS\IBMMKKV.EXE /M=S /Z=4 /C /L /J=90 /S=C:\DOS\MULTDICT.PRO /U=C:\$USERDICT.DCT
[SPECTRUM]
[COMMON]
LASTDRIVE=F
STACKS=9,256
This is my Autoexec.Bat file
@Echo Off
Cls
C:\SMARTDRV.EXE
PROMPT $P$G
PATH C:\;C:\DOS;c:\Spectrum
LH C:\DOS\MOUSE.COM
Goto %CONFIG%
:PCDOS7E
LH C:\DOS\KEYB.COM JP
Goto End
:PCDOS7J
LH C:\DOS\KEYB.COM JP,932,C:\DOS\KEYBOARD.SYS
LH C:\INKDRV.COM
IF EXIST C:\PW\PW.BAT C:\PW\PW.BAT
Goto End
:SPECTRUM
LH C:\DOS\KEYB.COM JP
C:\SPECTRUM\Z80
Goto End
:End
|