|
Jneny
高级用户
    中國DOS聯盟常任參議员
积分 686
发帖 318
注册 2005-11-4
状态 离线
|
『第 16 楼』:
使用 LLM 解释/回答一下
一样的吧,我用过不会有什么影响,只不过内存要多占用些
It's the same, I've used it and there won't be any impact, it's just that more memory will be occupied
|

. 繽紛色彩閃出的美麗是因為它沒有分開每種色彩...>/
我的百度空间: BEYOND超越 为什么用DOS |
|
2006-6-5 03:07 |
|
|
fastslz
铂金会员
       DOS一根葱
积分 5493
发帖 2315
注册 2006-5-1 来自 上海
状态 离线
|
『第 17 楼』:
使用 LLM 解释/回答一下
Originally posted by llm at 2006-6-4 01:12:
天哪,在运行ghost之前不仅加载天汇,还有ifs
实在……太危险了
是的DOS之家的一键GHOST备份完成后要修改*.gho属性时加载了ifs查找ntfs分区了是否存在*.gho
Last edited by fastslz on 2006-6-5 at 08:05 ]
Originally posted by llm at 2006-6-4 01:12:
Oh my god, before running Ghost, not only Tianhui is loaded, but also ifs.
It's really... too dangerous
Yes, when modifying the properties of *.gho after the one-key GHOST backup of DOS Home is completed, ifs is loaded to find whether there is a *.gho in the NTFS partition
Last edited by fastslz on 2006-6-5 at 08:05 ]
|
|
2006-6-5 07:47 |
|
|
fastslz
铂金会员
       DOS一根葱
积分 5493
发帖 2315
注册 2006-5-1 来自 上海
状态 离线
|
『第 18 楼』:
使用 LLM 解释/回答一下
大家做个实验,DOS之家的一键GHOST 提示符下敲命令
ifs
tw /q
此时访问ntfs分区盘符时提示无效函数
tw /np此时无法在运行天汇了
ifs 此时ntfs分区盘符在原来的盘符上+1,用mem查看内存有2个NDOS和CWSDPR0运行了反复运行的话直到内存用完死机。
Everyone, do an experiment. In the DOS Home's one-click GHOST, type commands at the prompt:
ifs
tw /q
At this time, when accessing the NTFS partition drive letter, it prompts invalid function.
tw /np cannot run Tianhui at this time.
ifs At this time, the NTFS partition drive letter is +1 on the original drive letter. Use mem to check that there are 2 NDOS and CWSDPR0 running. If run repeatedly until the memory is exhausted and the computer crashes.
|
|
2006-6-5 08:03 |
|
|
wangshilong123
初级用户
  高手高手高高手
积分 109
发帖 41
注册 2006-5-23
状态 离线
|
『第 19 楼』:
使用 LLM 解释/回答一下
13楼的朋友,指点小弟一下呀,拜拖了。
Friend on the 13th floor, please give me some guidance, please.
|
|
2006-6-5 11:10 |
|
|
wangshilong123
初级用户
  高手高手高高手
积分 109
发帖 41
注册 2006-5-23
状态 离线
|
『第 20 楼』:
使用 LLM 解释/回答一下
指点一下 ,叫我怎么该把,小弟在线等呀。
Give me some guidance, please. Little brother is waiting online.
|
|
2006-6-5 11:13 |
|
|
不得不爱
超级版主
         我爱DOS
积分 5310
发帖 2044
注册 2005-9-26 来自 四川南充
状态 离线
|
|
2006-6-5 12:35 |
|
|
fastslz
铂金会员
       DOS一根葱
积分 5493
发帖 2315
注册 2006-5-1 来自 上海
状态 离线
|
『第 22 楼』:
使用 LLM 解释/回答一下
不好意思,没看到在线等。我不喜欢虚拟机玩的是纯DOS所以上来溜一下就面对黑屏幕了:P
哈哈这个问题应该叫葛老师回答
其实自己优化GHOST_1B.BAT里其中一段语法的
rem 设置映像为隐含属性
call x:\ifs\load.bat
for %%a in (c d e f g h i j k l m n o p q r s t u v w) do if exist %%a:\c_pan.gho set a1=%%a
for %%b in (w v u t s r q p o n m l k j i h g f e d c) do if exist %%b:\c_pan.gho set b1=%%b
attrib -a -r -s +h %a1%:\c_pan.gho >nul
attrib -a -r -s +h %a1%:\c_pan???.ghs >nul
attrib -a -r -s +h %b1%:\c_pan.gho >nul
attrib -a -r -s +h %b1%:\c_pan???.ghs >nul
if not exist x:\ifs\CWSDPR0.EXE goto att1
call x:\ifs\unload.bat
rem 显示备份成功
......
____________________________________________________________
改成如果没有*.gho时加载ifs再重新判断?:\c_pan.gho:
rem 设置映像为隐含属性
:1
for %%a in (c d e f g h i j k l m n o p q r s t u v w) do if exist %%a:\c_pan.gho set a1=%%a
for %%b in (w v u t s r q p o n m l k j i h g f e d c) do if exist %%b:\c_pan.gho set b1=%%b
if not exist %a1%:\c_pan.gho goto 2
if not exist %b1%:\c_pan.gho goto 2
attrib -a -r -s +h %a1%:\c_pan.gho >nul
attrib -a -r -s +h %a1%:\c_pan???.ghs >nul
attrib -a -r -s +h %b1%:\c_pan.gho >nul
attrib -a -r -s +h %b1%:\c_pan???.ghs >nul
if not exist x:\ifs\CWSDPR0.EXE goto att1
call x:\ifs\unload.bat
goto 3
:2
call x:\ifs\load.bat
goto 1
:3
rem 显示备份成功
.......
Last edited by fastslz on 2006-6-6 at 22:51 ]
I'm sorry, I didn't see it online and was waiting. I don't like using virtual machines, I play pure DOS, so I came up and faced a black screen :P
Haha, this problem should be answered by Teacher Ge
Actually, I optimized a part of the syntax in GHOST_1B.BAT by myself
rem Set the image to hidden attribute
call x:\ifs\load.bat
for %%a in (c d e f g h i j k l m n o p q r s t u v w) do if exist %%a:\c_pan.gho set a1=%%a
for %%b in (w v u t s r q p o n m l k j i h g f e d c) do if exist %%b:\c_pan.gho set b1=%%b
attrib -a -r -s +h %a1%:\c_pan.gho >nul
attrib -a -r -s +h %a1%:\c_pan???.ghs >nul
attrib -a -r -s +h %b1%:\c_pan.gho >nul
attrib -a -r -s +h %b1%:\c_pan???.ghs >nul
if not exist x:\ifs\CWSDPR0.EXE goto att1
call x:\ifs\unload.bat
rem Display backup successful
......
____________________________________________________________
Change to if there is no *.gho, load ifs and then re-judge?:\c_pan.gho:
rem Set the image to hidden attribute
:1
for %%a in (c d e f g h i j k l m n o p q r s t u v w) do if exist %%a:\c_pan.gho set a1=%%a
for %%b in (w v u t s r q p o n m l k j i h g f e d c) do if exist %%b:\c_pan.gho set b1=%%b
if not exist %a1%:\c_pan.gho goto 2
if not exist %b1%:\c_pan.gho goto 2
attrib -a -r -s +h %a1%:\c_pan.gho >nul
attrib -a -r -s +h %a1%:\c_pan???.ghs >nul
attrib -a -r -s +h %b1%:\c_pan.gho >nul
attrib -a -r -s +h %b1%:\c_pan???.ghs >nul
if not exist x:\ifs\CWSDPR0.EXE goto att1
call x:\ifs\unload.bat
goto 3
:2
call x:\ifs\load.bat
goto 1
:3
rem Display backup successful
.......
Last edited by fastslz on 2006-6-6 at 22:51 ]
|
|
2006-6-6 22:49 |
|
|
fastslz
铂金会员
       DOS一根葱
积分 5493
发帖 2315
注册 2006-5-1 来自 上海
状态 离线
|
『第 23 楼』:
使用 LLM 解释/回答一下
哦...没说明其目的,这样做最起码如果?:\c_pan.gho恰好是FAT32格式的话跳过了加载IFS驱动,对于拥有众多用户的DOS之家一键GHOST来说更为重要。
NTFS格式的普遍使得GHOST8.3加入了dst=?:?:\*.gho参数支持,也带来了DOS下访问NTFS格式上的*.gho难度,偏偏DOS下的NTFS驱动和中文系统兼容性差。
目前我还为加载IFS后使用 >nul 参数在NTFS分区根目录上生成一个nul文件而郁闷中.....
Oh...Didn't explain its purpose. Doing this at least skips loading the IFS driver if \c_pan.gho happens to be in FAT32 format, which is more important for the DOS Home One-click GHOST with many users.
The popularity of the NTFS format has led GHOST8.3 to add support for the dst=?:?\*.gho parameter, but it has also brought difficulties in accessing *.gho on NTFS format under DOS. Unfortunately, the NTFS driver under DOS has poor compatibility with Chinese systems.
Currently, I'm still depressed about generating a nul file on the root directory of the NTFS partition after loading IFS and using the >nul parameter.....
|
|
2006-6-7 00:33 |
|