Changes by: flatcap
Update of /cvsroot/linux-ntfs/dynamic-disk
In directory usw-pr-cvs1:/tmp/cvs-serv30544
Modified Files:
Makefile.in README
Added Files:
AUTHORS ChangeLog
Log Message:
a few minor tweaks before the first release
--- NEW FILE ---
Linux kernel driver for LDM written by
"Richard Russon" <nt...@fl...>
--- NEW FILE ---
2000-06-21 Richard Russon <nt...@fl...>
* Version 0.0.1 released
* Need more test data
Index: Makefile.in
===================================================================
RCS file: /cvsroot/linux-ntfs/dynamic-disk/Makefile.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -U2 -r1.2 -r1.3
--- Makefile.in 2001/06/16 22:54:54 1.2
+++ Makefile.in 2001/06/21 02:11:37 1.3
@@ -1,2 +1,4 @@
+# Copyright (C) 2001 Richard Russon
+
LINKS = docs src
DRIVER = Makefile.driver
Index: README
===================================================================
RCS file: /cvsroot/linux-ntfs/dynamic-disk/README,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -U2 -r1.1.1.1 -r1.2
--- README 2001/06/16 20:29:36 1.1.1.1
+++ README 2001/06/21 02:11:37 1.2
@@ -1,6 +1,42 @@
-This utility SHOULD be read-only.
-If I've made a mistake it could destroy your filesystem.
+Logical Disk Manager (Dynamic Disk) Tool and Driver.
- BEWARE
+There are two packages included here. A userland tool
+to dump the contents of a Window 2000 LDM Disk. Also
+there's a Linux Filesystem driver. You need to know
+what you're doing to use this.
+
+I've included a prebuilt copy of the tool in the .tar
+If you want to build it yourself you need the kernel
+header files, then:
+
+ ./configure
+ make
+
+should do the trick. If it doesn't build without errors,
+then you'll need to know your way around the kernel to
+fix things. One problem is the inclusion of autoconf.h
+If you built other partition types into your last kernel
+then they'll probably show up a missing entries at link
+time.
+
+
+To run the tool, just point it at a disk, e.g. /dev/hda
+
+ test/drive /dev/hda
+
+The output will be something like:
+
+Partition check:
+ hdb: hdb1 < hdb5 hdb6 hdb7 hdb8 >
+
+ Device | Offset Bytes Sectors Mb | Size Bytes Sectors Mb
+ -------+--------------------------------+-------------------------------
+ hdb | 0 0 0 | 21159936 41328 20
+ hdb1 | 20111360 39280 19 | 1048576 2048 1
+ hdb5 | 32256 63 0 | 5242880 10240 5
+ hdb6 | 5275136 10303 5 | 5242880 10240 5
+ hdb7 | 10518016 20543 10 | 3145728 6144 3
+ hdb8 | 13663744 26687 13 | 6291456 12288 6
+
|