|
fastslz
铂金会员
       DOS一根葱
积分 5493
发帖 2315
注册 2006-5-1 来自 上海
状态 离线
|
『第 16 楼』:
使用 LLM 解释/回答一下
我没见识过FDD格式的U盘,你把config.sys里虚拟路径修改成完全路径
DEVICE=A:\HIMEM.SYS /TESTMEM:OFF /Q
DEVICE=A:\UMBPCI.SYS
DEVICE=A:\USBASPI.SYS /R /V /NORST
DEVICE=A:\DI1000DD.SYS
SHELL=A:\COMMAND.COM /E:1024 /P /F
DOS=HIGH,UMB,AUTO
FCBSHIGH=4,0
FILESHIGH=30
BUFFERSHIGH=20,0
STACKSHIGH=9,256
LASTDRIVEHIGH=Z
不行换成C:
I haven't seen a U disk in FDD format. You change the virtual path in config.sys to the full path.
DEVICE=A:\HIMEM.SYS /TESTMEM:OFF /Q
DEVICE=A:\UMBPCI.SYS
DEVICE=A:\USBASPI.SYS /R /V /NORST
DEVICE=A:\DI1000DD.SYS
SHELL=A:\COMMAND.COM /E:1024 /P /F
DOS=HIGH,UMB,AUTO
FCBSHIGH=4,0
FILESHIGH=30
BUFFERSHIGH=20,0
STACKSHIGH=9,256
LASTDRIVEHIGH=Z
If not, change to C:
|
|
2006-7-7 10:12 |
|
|
darkradx
高级用户
   
积分 972
发帖 420
注册 2004-5-16
状态 离线
|
『第 17 楼』:
使用 LLM 解释/回答一下
应该用GRUB4DOS的memdrive功能来处理:
引导到DOS, 启动GRUB4DOS, 把FDD image映到内存, 启动里面的DOS
因为DOS下的USB的驱动会破坏BIOS内置的USB驱动
It should be handled with the memdrive function of GRUB4DOS:
Boot to DOS, start GRUB4DOS, map the FDD image to memory, and boot the DOS inside it
Because the USB driver under DOS will damage the BIOS-built-in USB driver
|

平生进退如飙风 |
|
2006-7-7 11:08 |
|
|
rubasse2000
初级用户
 
积分 22
发帖 9
注册 2006-7-3
状态 离线
|
『第 18 楼』:
使用 LLM 解释/回答一下
to fastslz
我的是移动PC ,主板只支持usb fdd的,所以我的闪盘必须制作成支持fdd的。刚刚试了你那个改成A:和改成C:的,都不行,是不是DI1000DD.SYS这个文件有问题??
to fastslz
My device is a mobile PC, and the mainboard only supports USB FDD. So my flash drive must be made to support FDD. I just tried the ones where you changed it to A: and changed it to C:, both didn't work. Is there a problem with the DI1000DD.SYS file?
|
|
2006-7-7 11:14 |
|
|
fastslz
铂金会员
       DOS一根葱
积分 5493
发帖 2315
注册 2006-5-1 来自 上海
状态 离线
|
『第 19 楼』:
使用 LLM 解释/回答一下
DI1000DD.SYS文件是没问题的,可能如17楼说的因为DOS下的USB的驱动会破坏BIOS内置的USB驱动,去掉
DEVICE=A:\USBASPI.SYS /R /V /NORST
DEVICE=A:\DI1000DD.SYS
试试
The DI1000DD.SYS file is okay. Maybe as the 17th floor said, because the USB driver under DOS will damage the BIOS - built - in USB driver. Try removing
DEVICE=A:\USBASPI.SYS /R /V /NORST
DEVICE=A:\DI1000DD.SYS
|
|
2006-7-7 11:26 |
|
|
rubasse2000
初级用户
 
积分 22
发帖 9
注册 2006-7-3
状态 离线
|
『第 20 楼』:
使用 LLM 解释/回答一下
to fastslz
去掉了
DEVICE=A:\USBASPI.SYS /R /V /NORST
DEVICE=A:\DI1000DD.SYS
启动没有报错了。但是这样如何才能让我的移动硬盘在dos可以找到那??
Last edited by rubasse2000 on 2006-7-7 at 11:51 ]
to fastslz
Removed
DEVICE=A:\USBASPI.SYS /R /V /NORST
DEVICE=A:\DI1000DD.SYS
No errors on startup. But how can I make my external hard drive detectable in DOS then??
Last edited by rubasse2000 on 2006-7-7 at 11:51 ]
|
|
2006-7-7 11:49 |
|
|
rubasse2000
初级用户
 
积分 22
发帖 9
注册 2006-7-3
状态 离线
|
『第 21 楼』:
使用 LLM 解释/回答一下
to darkradx
用GRUB4DOS的memdrive功能来处理,具体如何操作??
to darkradx
How to operate specifically using the memdrive function of GRUB4DOS?
|
|
2006-7-7 11:51 |
|
|
darkradx
高级用户
   
积分 972
发帖 420
注册 2004-5-16
状态 离线
|
『第 22 楼』:
使用 LLM 解释/回答一下
进入GRUB4DOS, 执行
map --mem /usbdrive.img (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
boot
之类的
具体见GRUB4DOS的readme和sample
Enter GRUB4DOS, execute commands like:
map --mem /usbdrive.img (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
boot
For details, refer to GRUB4DOS's readme and sample.
|

平生进退如飙风 |
|
2006-7-7 13:37 |
|
|
fastslz
铂金会员
       DOS一根葱
积分 5493
发帖 2315
注册 2006-5-1 来自 上海
状态 离线
|
『第 23 楼』:
使用 LLM 解释/回答一下
用GRUB4DOS有点为难楼主哦,还要写MBR到U盘的,不过也是个动手学习的机会
Using GRUB4DOS is a bit difficult for the original poster, and you also need to write the MBR to the USB drive. But it's also an opportunity to learn by doing
|
|
2006-7-7 13:44 |
|
|
fujianabc
金牌会员
     
积分 3467
发帖 1616
注册 2004-6-21
状态 离线
|
『第 24 楼』:
使用 LLM 解释/回答一下
楼主看没看我在9楼所说的,usb-fdd方式启动必须要专门的u盘支持,也就是u盘要有一个1.44MB的部分模拟软驱才可以启动,普通的u盘是不能用usb-fdd方式启动的。
另外usb-fdd方式也支持外接的usb软驱启动。
The owner of the thread, have you seen what I said on the 9th floor? The USB-FDD mode boot must be supported by a special USB flash drive, that is, the USB flash drive needs to have a 1.44MB part to simulate a floppy drive to be able to boot. Ordinary USB flash drives cannot be booted in the USB-FDD mode.
In addition, the USB-FDD mode also supports booting from an external USB floppy drive.
|
|
2006-7-7 15:11 |
|
|
zhouhb
中级用户
  
积分 230
发帖 104
注册 2006-4-21
状态 离线
|
『第 25 楼』:
使用 LLM 解释/回答一下
iformat不能在XP下格式化U盘啊!
iformat cannot format USB flash drives under XP!
|

━━━━━━━
◆漏漏®的e盘
━━━━━━━ |
|
2006-7-12 14:59 |
|
|
seifer1754
初级用户
 
积分 26
发帖 9
注册 2006-3-16
状态 离线
|
『第 26 楼』:
使用 LLM 解释/回答一下
我的笔记本是超薄的,里面的硬盘是专用的小型硬盘,与市场上的3.5寸硬盘不同。
所以只能用外接软驱引导后安装系统。
可是我用软驱引导后,如何才能识别外接硬盘呢?
外接硬盘就是用一个USB转接口将普通的笔记本硬盘转接后的,用了超级DOS启动盘,就是无法识别。
My notebook is ultra-thin, and the hard drive inside is a dedicated small hard drive, different from the 3.5-inch hard drives on the market. So I can only install the system after booting with an external floppy drive. But after I boot with the floppy drive, how can I recognize the external hard drive? The external hard drive is converted from an ordinary notebook hard drive using a USB adapter. I used the Super DOS boot disk, but it still can't be recognized.
|
|
2006-7-18 10:40 |
|
|
不得不爱
超级版主
         我爱DOS
积分 5310
发帖 2044
注册 2005-9-26 来自 四川南充
状态 离线
|
|
2006-7-19 12:21 |
|
|
hjlong
新手上路

积分 2
发帖 1
注册 2006-7-31
状态 离线
|
『第 28 楼』:
使用 LLM 解释/回答一下
我按上面的做了可是
我的错是这样的
disk I/O error
Replace the disk,and then press any key
请帮看一下是什么原因
I followed the above steps, but my mistake is like this:
disk I/O error
Replace the disk, and then press any key
Please help to see what the reason is
|
|
2006-7-31 23:52 |
|
|
TEMPlxj
初级用户
 
积分 48
发帖 20
注册 2005-8-19
状态 离线
|
『第 29 楼』:
使用 LLM 解释/回答一下
把你的硬盘挂到别人的机器上把C盘做成DOS引导,然后在硬盘上放入XP的I386目录,在DOS下进入I386后 执行winnt安装XP就行了 ,顺便把驱动也放进硬盘
Hang your hard drive on someone else's machine, make the C drive a DOS boot, then put the I386 directory of XP on the hard drive. Enter the I386 directory under DOS and execute winnt to install XP. By the way, put the drivers into the hard drive as well
|
|
2006-8-1 19:51 |
|
|
njncc
新手上路

积分 8
发帖 4
注册 2006-8-2
状态 离线
|
『第 30 楼』:
使用 LLM 解释/回答一下
kk........学习中...................
kk...........Learning...................
|
|
2006-8-2 09:31 |
|