- # GRUB mini HowTo, boot loader which is even more powerfull than lilo
 
      - # enumerate all the partitions which are currently known to /proc/partitions:
        
 fdisk -l 
       
      - # add ext3 journalling information to some ext2 partition:
        
 tune2fs -j /dev/hda2 
       
      - # remove ext3 journalling information from an ext3 partition other than the root partition (have a look at http://www.troubleshooters.com/linux/ext2toext3.htm if you wish to remove ext3 journalling data from the root device):
        
 tune2fs -O ^has_journal /dev/hda2;e2fsck /dev/hda2 
       
      - # creating a large vfat partition on your unix box:
        
 mkfs.vfat -F 32 /dev/hda8 
       
      - # undelete a file on a vfat partition:
        
 dosfsck -r -u path/file /dev/hdaXX