|
Dany.TD.1900
初级用户
 
积分 106
发帖 2
注册 2004-1-8
状态 离线
|
『楼 主』:
怎么在dos下格式c盘?
使用 LLM 解释/回答一下
如上!请尽量写的简明详细,本人属菜鸟!急~~~
As above! Please try to write it concisely and in detail. I am a novice! Urgent~~~
|
|
2004-1-8 00:00 |
|
|
tanwu
初级用户
 
积分 106
发帖 1
注册 2004-1-8
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
直接输入格式化命令 format c:/s /q就可以了
Just enter the formatting command `format c:/s /q` directly.
|
|
2004-1-8 00:00 |
|
|
luochang850
初级用户
 
积分 115
发帖 3
注册 2004-1-13
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
格式化命令 format c:/s /q 你都不懂吗?
Don't you even understand the format command format c:/s /q?
|
|
2004-1-13 00:00 |
|
|
howen7
初级用户
 
积分 124
发帖 6
注册 2004-1-13 来自 33
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
我想以后我会在这里学到很多东西的
I think I will learn a lot here in the future
|
|
2004-1-13 00:00 |
|
|
howen7
初级用户
 
积分 124
发帖 6
注册 2004-1-13 来自 33
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
就是直接 format c: /s /q呀
Just directly format c: /s /q
|
|
2004-1-13 00:00 |
|
|
155342
初级用户
 
积分 107
发帖 2
注册 2004-1-14
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
加S有什么意义?
我是初学者 不动
What is the significance of adding "S"?
I'm a beginner, I don't understand.
|
|
2004-1-14 00:00 |
|
|
xiaojun
银牌会员
    
积分 2202
发帖 499
注册 2003-6-12
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
Transmission to transfer system files
|

一年四季,枫叶红了又红;人生四季,失去的,还能再来吗?—— ! |
|
2004-1-14 00:00 |
|
|
今生缘
初级用户
 
积分 112
发帖 2
注册 2004-1-14
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
"s"表示格式化的是系统盘,其他盘的格式化不用加. "q"表示快速格式化.
这只是我的理解,不对只处,请指正.
"s" means formatting the system disk, and other disks do not need to add it when formatting. "q" means quick format.
This is just my understanding. If there are any mistakes, please correct them.
|
|
2004-1-14 00:00 |
|
|
iceboy
银牌会员
    
积分 1681
发帖 512
注册 2003-8-2
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
呵呵~
如果是批处理应该这样写:
@FORMAT c: /s /q /autotest >NUL
@ 表示不显示这个命令, 如果批处理文件头有 @ECHO OFF, 就相当于给每一行命令都加了一个 @, 就不需要再写了
FORMAT 就是 format.com 啊
c: 盘符, 要格式化的盘
/s 做一个系统盘, 就是拷贝 DBR, io.sys, msdos.sys, drvspace.bin, command.com
/q 快速格式化, 仅仅清空 DIR 区和 FAT 表
/autotest 就是 format.com 不提示你是否格式化
>NUL 把输出结果重定向到“虚拟设备”, 不显示在屏幕上
Hehe~
If it's a batch processing, it should be written like this:
@FORMAT c: /s /q /autotest >NUL
@ means not to display this command. If there is @ECHO OFF at the beginning of the batch file, it is equivalent to adding an @ to each line of command, so there is no need to write it again. FORMAT is format.com. c: is the drive letter, the drive to be formatted. /s makes a system disk, that is, copies DBR, io.sys, msdos.sys, drvspace.bin, command.com. /q is quick format, only clears the DIR area and FAT table. /autotest means format.com does not prompt you whether to format. >NUL redirects the output result to the "virtual device" and does not display it on the screen
|

Somehow somewhere I've got to choose.
No matter if it is win or lose. |
|
2004-1-14 00:00 |
|
|
今生缘
初级用户
 
积分 112
发帖 2
注册 2004-1-14
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
hi! 楼上的哥哥,你说的太专业了,我没看太懂呀.现在好像用不着这么麻烦吧,哈哈.
Hi! Brother upstairs, what you said is too professional, I didn't understand it very well. Now it seems that it doesn't need to be so troublesome, haha.
|
|
2004-1-15 00:00 |
|
|
jiangzihui
初级用户
 
积分 110
发帖 2
注册 2004-1-17
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
前面几位老兄讲得不错,我想应该如此吧.(本人愚见)
The previous few gentlemen spoke quite well. I think it should be like that. (My humble opinion)
|
|
2004-1-17 00:00 |
|
|
无妄★模拟
初级用户
  蝎蛇统领
积分 280
发帖 35
注册 2003-5-21
状态 离线
|
『第 12 楼』:
使用 LLM 解释/回答一下
的确是对的 不过我还是认为用FORMAT C:/S比较好
一是完全格式化
二是有提示,比较直观
你们认为呢?
It's indeed correct. But I still think using FORMAT C:/S is better.
First, it's a full format.
Second, there are prompts, which are relatively intuitive.
What do you think?
|

我是菜鸟,我要变成老鸟!
www.10.164.63.101.com |
|
2004-1-17 00:00 |
|
|
allul*
高级用户
   
积分 612
发帖 167
注册 2003-12-1
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
版主讲的不错啊。
实际操作的时候习惯上还是用楼上的方式。
The host's talk is pretty good.
When actually operating, it's customary to still use the method of the person above.
|

别问我是谁. |
|
2004-1-18 00:00 |
|
|
火狼
初级用户
 
积分 137
发帖 7
注册 2004-1-16
状态 离线
|
『第 14 楼』:
使用 LLM 解释/回答一下
dos语言真的好深奥啊!看来我真的要努力学习了哦!
The DOS language is really so profound! It seems I really need to study hard!
|
|
2004-1-20 00:00 |
|
|
loveyou_923
初级用户
 
积分 111
发帖 2
注册 2004-1-20
状态 离线
|
『第 15 楼』:
使用 LLM 解释/回答一下
请问格完c盘,该怎么安装一个新系统啊,希望高人指点!
Excuse me, after formatting the C drive, how to install a new system? Hope an expert can give guidance!
|
|
2004-1-20 00:00 |
|