|
http://www.namesys.com/
The above URL is reiserfs home page,you can find lots of information.Now I just write the guide which almost are from its home page.
1.Download the lasted kernel
http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.5-rc2.tar.bz2
2.Download the pacth needed by reiserfs
http://www.namesys.com/snapshots/LATEST/all.diff.gz
gunzip all.diff.gz -> all.diff
3. cd /usr/src/linux # actual directory may vary, of course
patch -p1 <XX/all.diff #where is the file all.diff
4.
make mrproper
make menuconfig # turn reiser4 on.
make bzImage modules
6. install kernel
7. download libaal, unpack, and build it
$ cd libaal
$ ./configure
$ make
$ make install # may require root
$ # add /usr/local/lib to /etc/ld.so.conf if not already there
$ /sbin/ldconfig # may require root
http://thebsh.namesys.com/snapshots/LATEST/libaal-0.5.0.tar.gz
8. download reiser4progs, unpack, and build them
$ cd reiser4progs
$ ./configure
$ make
$ make install # may require root
http://thebsh.namesys.com/snapshots/LATEST/reiser4progs-0.5.3.tar.gz
9 reboot with new kernel
10. create reiser4 file system
$ /usr/local/sbin/mkfs.reiser4 -qf <path-to-device-or-file>
a . mount it
$ mount -treiser4 <path-to-device-or-file> <mount-point>
b. Enjoy! |
|