- 1995 ~ 1998
- CPU 80486DX2 66MHz
- 8M RAM
- 512M HDD
- S3 864 Graphics Adapter with 512k VRAM
- CD-ROM
- Sound Blaster 16 With Wavetable Daughterboard
- Mouse
- 56k Modem
- BASIC编程 BASIC Programming
- C/C++编程 C/C++ Programming
- 英语学习 English learning
- 英汉字典 English-Chinese dictionary
- 中英文文字处理 Chinese & English text processing
- 电子表格和图表处理 Spreadsheet and chart processing
- 多媒体光盘浏览 Viewing multimedia CDs
- 图片浏览 Image viewing
- 音乐和视频播放 Music & video playback
- 拨号上网 Surfing online via dial-up network
- 拨号连接远程服务器 Connecting to remote server via dial-up network
- (禁止游戏 NO GAMING)
- 1990 ~ 1992
- CPU: 8088 4.77MHz
- RAM: 640k
- Floppy Drive A: 5.25" 1.2M High Density
- Floppy Drive B: 5.25" 360k Double Side
- Display: CGA with green monochrome monitor
- BASIC编程 BASIC Programming
- WPS中英文文字处理 WPS Chinese & English Text Processing
- 俄罗斯方块游戏 Tetris game
- 2048游戏 2048 Game
- 黑白棋游戏 Reversi Game
- 英文打字练习 English Typing Training
- 五笔打字练习 Wubi Input Training
UCDOS下运行IP地址计算器 IP Address Calculator Under UCDOS
带数学公式的文章 Article with Equation
2048游戏(使用UCDOS特显程序) 2048 Game (Using UCDOS Special Display Tool)
谢尔宾斯基地毯(VGA模式) Sierpinski Carpet (VGA mode)
显示古诗(使用UCDOS特显程序) Poem Showing (Using UCDOS Special Display Tool)
显示带插图的古诗(使用UCDOS特显程序) Poem With Picture (Using UCDOS Special Display Tool)
显示古诗(使用BSAVE图像数据) Poem Showing (Using BSAVE Image Data)
新年快乐(使用UCDOS特显程序) Happy New Year (Using UCDOS Special Display Tool)
诸事皆顺(使用UCDOS特显程序) Everything Goes Well (Using UCDOS Special Display Tool)
繁花曲线(VGA模式) Flower Curves (VGA mode)
九九乘法表 9x9 Multiplication Table
显示杨辉三角 Display Yanghui Triangle
使用ffmpeg制作可在Windows 3.1下播放的视频
Convert video into format accepted by Windows 3.1
ffmpeg -i input.mp4 -c:v cinepak|msvideo1 -c:a pcm_s16le|pcm_u8|adpcm_ima_wav\
-vf "scale=320:240:force_original_aspect_ratio=decrease,pad=320:240:(ow-iw)/2:(oh-ih)/2"\
-r 12 -ac 1 -ar 22050 -y output.avi
使用ffmpeg制作VCD
Convert video into VCD
ffmpeg -i input.mp4 -target pal-vcd|ntsc-vcd output.mpg
vcdimager -t vcd2 -l "Movie Title" -c output.cue -b output.bin output.mpg
使用ffmpeg制作VCD并将源视频分成多长碟片(每张碟片最长1小时)
Convert video into VCD and split the source video into multiple discs (Maximum 1 hour for each disc)
ffmpeg -ss 00:00:00 -t 00:60:00 -i input.mp4 -target pal-vcd|ntsc-vcd output1.mpg
vcdimager -t vcd2 -l "Part 1" -c output1.cue -b output1.bin output1.mpg
ffmpeg -ss 00:60:00 -t 00:30:00 -i input.mp4 -target pal-vcd|ntsc-vcd output2.mpg
vcdimager -t vcd2 -l "Part 2" -c output2.cue -b output2.bin output2.mpg
Windows 3.2和Windows 95使用金山影霸II播放PAL制式VCD,使用XingMPEG Player播放NTSC制式VCD。
Under Windows 3.2 and Windows 95, use SoftVCD II (JinShanYinBa II) to play PAL VCD, use XingMPEG Player to play NTSC VCD.
如何在使用模拟器运行DOS、Windows 3.x、Windows 9x时减少CPU占用:
How to reduce CPU usage when running DOS, Windows 3.x, Windows 9x with emulators:
MS-DOS 6.22自带POWER.EXE
,在CONFIG.SYS
里添加以下配置即可:
MS-DOS 6.22 has pre-installed POWER.EXE
, you can add the following configuration into CONFIG.SYS
:
DEVICEHIGH=C:\DOS\POWER.EXE ADV:MAX
其它版本的MS-DOS需要将IDLE.COM
复制到C:\
,然后从AUTOEXEC.BAT
运行该命令。
For other versions of MS-DOS, copy IDLE.COM
to C:\
, then run it from AUTOEXEC.BAT
。
IDLE.COM
可以在Microsoft Virtual PC 2007中找到。
IDLE.COM
can be found from Microsoft Virtual PC 2007.
Windows 3.x需要将WQGHLT.386
复制到C:\WINDOWS\SYSTEM\
,然后打开C:\WINDOWS\SYSTEM.INI
并在[386enh]
小节中添加以下配置:
For Windows 3.x, copy WQGHLT.386
to C:\WINDOWS\SYSTEM\
, then open C:\WINDOWS\SYSTEM.INI
and add the following configuration into [386enh]
section:
device=wqghlt.386
Windows 9x需要安装AmnHLT或Amn Refrigerator。
Windows 9x requires installing AmnHLT or Amn Refrigerator.
在CONFIG.SYS
中找到内容为DEVICE=C:\DOS\EMM386.EXE
的行,然后在其后面加上NOEMS
参数。
Open CONFIG.SYS
and find the line with DEVICE=C:\DOS\EMM386.EXE
, then append NOEMS
parameter after it.
将OAKCDROM.SYS
复制到C:\
(OAKCDROM.SYS
可在Windows 9x的安装光盘中找到)。
Copy OAKCDROM.SYS
to C:\
(OAKCDROM.SYS
can be found from Windows 9x installation CD-ROMs).
如果MSCDEX没有安装,需要将MSCDEX.EXE
复制到C:\
。
Copy MSCDEX.EXE
to C:\
if MSCDEX is not installed.
在CONFIG.SYS
中添加以下配置:
Add the following configuration into CONFIG.SYS
:
DEVICEHIGH=C:\OAKCDROM.SYS /D:CD1
LASTDRIVE=Z
在AUTOEXEC.BAT
中添加以下命令:
Add the following command into AUTOEXEC.BAT
:
LH MSCDEX.EXE /D:CD1 /L:Z
/L:Z
用来指定CD-ROM对应的盘符。
/L:Z
specifies the drive letter for CD-ROM.
安装Windows 3.x时使用标准VGA显示驱动,安装完成后在“Windows 设置程序”中更改显卡驱动。
Use the basic VGA driver for the initial install, then change the video driver using Windows Setup in the Main program group.
安装显卡驱动时如果提示插入S3 Trio 64V Flat Mode Driver软盘,则此时需要将路径填写成C:\WINDOWS\SYSTEM\
以完成显卡驱动的安装。
When the driver spouted up a prompt to Insert the Trio 64V Flat Mode Driver disk, redirect the installer to C:\WINDOWS\SYSTEM\
to complete the graphics driver install.
选择Epson LQ1600K
作为打印机驱动程序,之后可以从Windows 3.x的应用程序中使用DOSBox-x的虚拟打印机打印到PNG图片。
Select Epson LQ1600K
as the printer driver, then you can print document into PNG files from Windows 3.x applications via DOSBox-x's virtual printer.
- Debian/Ubuntu:
sudo apt-get install build-essential
- Tiny Core:
tce-load -wi compiletc
- Termux:
pkg install build-essential
wps /FE /S
Linux下挂载虚拟软盘(使用GB2312编码的文件名)
Mount floppy image under Linux (Use GB2312 for filename encoding)
sudo mount -o loop,codepage=936,iocharset=utf8 floppy.img /mnt
对于一些BIN/CUE,MDF/MDS等非ISO格式的光盘映像文件,可以尝试在Linux下使用iat
命令转换成ISO文件
For CD-ROM image files in non-ISO format like BIN/CUE, MDF/MDS, etc., try to use iat
command under Linux to convert them into ISO file.