Description of problem: I booted w/ linux reiserfs, selected reiser format for /usr and /var. Installer failed to format the filesystems. /usr and /var were members of vg0 lvm2 group. Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. boot installer with linux reiserfs 2. create small /boot 100M 2. create small / with ~800M (so that with out /usr and /var, there won't be enough space) 3. create lvm group which contains /usr and /var with format reiserfs 4. continue with normal install. Actual results: I *think* /usr and /var fail to get formatted, or maybe they don't get mounted. Either way, install fails. Expected results: No errors.
From fsset.py, class reiserfsFileSystem: # this is totally, 100% unsupported. Boot with "linux reiserfs" # at the boot: prompt will let you make new reiserfs filesystems # in the installer. Bugs filed when you use this will be closed # WONTFIX. ...However, my guess is that the install succeeded but it didn't label the devices properly. There was not labeling function for reiserfs filesystems in FC5. Fixed in rawhide. Try that. ...I'll also give you another hint. If you do manage to get a successful reiserfs installation, you need to add "noselinux selinux=0" to your boot arguments in grub. Reiserfs lacks the attributes needed for selinux to do things. You really should be using ext3. It's a much nicer filesystem.
I'm now just using reiser for /maildir (post install). As for why I want reiser, ext2/3 as well as ufs/ufs2 on FreeBSD suffer from a maximum of ~~32000 directories/directory. [root@syr01 Maildir]# for i in `seq 1 32000`; do echo $i;done| xargs mkdir mkdir: cannot create directory `31999': Too many links mkdir: cannot create directory `32000': Too many links [root@syr01 Maildir]# touch testing [root@syr01 Maildir]# Prior to moving from FreeBSD, I used something like /maildir/j/a/jason, however I run into problems when users try making lots of their own Maildir folders.