r30: Winnbd code from Folkert van Heusden <folkert@vanheusden.com>
[nbd.git] / winnbd / readme.txt
1 nbdsrvr is (C) 2003 by folkert@vanheusden.com
2 New versions can be obtained from:
3 http://www.vanheusden.com/ (browse to the
4 "microsoft windows software" section).
5
6 Usage:
7
8 nbdsrvr filename portnumber
9
10 filename must be an image of a filesystem or
11 whatever kind of device you whish to use. Can
12 also be an empty file.
13 For example, create an empty file of 10MB
14 called "image.dat"
15 Then:
16 nbdsrvr image.dat 9000
17 On your linux-box:
18 nbd-client hostname 9000 /dev/ndX
19 hostname is the hostname of your windows-box,
20 /dev/ndX is the device you want to couple the
21 image to.
22 After that, you could create a filesystem on
23 this image: on your Linux-box, type:
24 mke2fs /dev/ndX
25 and then mount it:
26 mount /dev/ndX /mnt
27
28 Good luck!
29
30
31 -- Folkert van Heusden, 2003/07/13, 21:59