| [root@www ~]# drbdsetup /dev/drbd0 primary -o # make it primary drbd0: Forced to consider local data as UpToDate!
 [root@www ~]#
 cat /proc/drbd version: 8.0.11 (api:86/proto:86)
 GIT-hash: b3fe2bdfd3b9f7c2f923186883eb9e2a0d3a5b1b build by buildsvn@c5-i386-build, 2008-03-09 10:26:43
 0: cs:SyncSource st:Primary/Secondary ds:UpToDate/Inconsistent C r---
 # changed 
 ns:77968 nr:0 dw:0 dr:85524 al:0 bm:4 lo:111 pe:259 ua:1999 ap:0 
 [>...................] sync'ed:  7.5% (971572/1048508)K 
 finish: 0:00:37 speed: 25,644 (25,644) K/sec 
 resync: used:2/31 hits:40719 misses:6 starving:0 dirty:0 changed:6 
 act_log: used:0/127 hits:0 misses:0 starving:0 dirty:0 changed:0 
 [root@www ~]#
 mkfs -t ext3 /dev/drbd0 [root@www ~]#
 mkdir /mnt/drbd [root@www ~]#
 mount /dev/drbd0 /mnt/drbd [root@www ~]#
 touch /mnt/drbd/test.txt # make test file [root@www ~]#
 ll /mnt/drbd total 16
 drwx------ 2 root root 16384 May 11 02:18 lost+found
 -rw-r--r-- 1 root root     0 May 11 02:22 test.txt
 |