Password Protected
Nope
Yep, that's right!
Solution:
Referring to SCO TA 112642 when running dosinstall the error message “Unknown systemtype sco32” is displayed. Editing the Version file did not work.
When running DOS the following error is displayed:Merge: _M_vmonitor: unknown opcode 00000039
To fix this do the following:
- cp /usr/bin/dosinstall /tmp (For backup purposes)
- vi /usr/bin/dosinstall
- At around line number 478 add the following:if [ “$SYSTEMTYPE” = “sco32” ]
then
unset SYSTEMTYPE
SYSTEMTYPE=sco
echo $SYSTEMTYPE
fiSo the area near line number 478 now looks like:# The User can define DRIVE_0_DEV and DRIVE_1_DEV in the
# environment, to provide the floppy device names (and thus to
# bypass the automatic determination of the floppy device name).if [ “$SYSTEMTYPE” = “sco32” ]
then
unset SYSTEMTYPE
SYSTEMTYPE=sco
echo $SYSTEMTYPE
fi
if [ $FLOPDEV -eq 0 -a -n “$DRIVE_0_DEV” ]
then… | - Run dosinstall and it should be fine.
When running DOS the following error is displayed:
Merge: _M_vmonitor: unknown opcode 00000039
To fix this do the following:
- Add to the end of the file /usr/merge/image/config.mking the following:install = mrgtsr.exe
- Then run the following:
cd /usr/merge/image
dos2unix config.mki > /tmp/config.mki
unix2dos /tmp/config.mki > config.mki
mkimg
5317 readsHow did you like this article?0 0 0 0