Jerry Geis wrote: > grabbed my DVD and did an install. When partitioning the disk I did not see > a selection for ext4. > > Is this enabled after the fact some how? You might have to give 'ext4' on the installer boot command line to enable ext4 Anaconda fsset.py has the code: # this is tech preview at present... if flags.cmdline.has_key("ext4"): self.supported = -1 else: self.supported = 0 which is the same way it works with other non-supported file systems James Pearson