How to create ext3 filesystem using mke2fs?
well, sometimes on older / embedded system mkfs.ext3 might not be available, but mke2fs, so what you do it create and ext2 with journal, which is actually quite the same as ext3:
- mke2fs -j /dev/sdaX
Enjoy!