Using JFS
To use JFS, you'll need a spare partition. If there's unpartitioned space on your disk, you'll want to fire up fdisk or cfdisk and create a partition that will be used to hold a JFS filesystem. After creating a new partition, you may be told that you need to reboot. If you receive this message, it's important that you do so -- otherwise, the filesystem creation step will flake out.
Once you have an empty partition available, you need to put a JFS filesystem on it. To do this, type the following:
# mkfs.jfs /dev/hdax
Replace hdax with the name of the blank partition. For my particular system, I typed "mkfs.jfs /dev/hda6".
Before mkfs.jfs creates the new JFS filesystem, it'll ask for confirmation. Make sure you typed in the correct partition name (!) and then hit Y.
mkfs.jfs development version: $Name: v0_0_17 $ Warning! All data on device /dev/hda6 will be lost! Continue? (Y/N) Y | Format completed successfully. 1951866 kilobytes total disk space. |
After the filesystem has been created, it's time to mount it. After creating a new empty directory to serve as the mount point (such as "/mnt/jfs"), mount as follows:
# mount /dev/hdax /mnt/jfs -t jfs
Now you should be able to create, modify, and delete files on your new JFS filesystem mounted at /mnt/jfs. Enjoy!

