add directory Minix

This commit is contained in:
gohigh
2024-02-19 00:21:39 -05:00
parent 56596ada90
commit 5a46ddb732
2923 changed files with 1764412 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
Command: diskcheck - check a disk for bad sectors
Syntax: diskcheck device start count
Flags: (none)
Examples: diskcheck /dev/at0 0 1200 # Check 1.2 MB diskette
diskcheck /dev/at0 100 50 # Check blocks 100 to 149
Diskcheck checks a disk for bad sectors by reading in each sector,
writing a known bit pattern onto it, reading it back in and comparing
with what was written. This check is then done a second time. Bad
sectors are reported. After each sector is tested, the original sector
is restored. Only use this program on unmounted partitions. Killing it
part way through may result in lost data.