- Nov 25, 2010
- 15,958
- 2,752
- 0
How to check if you have journaling enabled or not.
This has been asked a few times and here is the answer.
First download Terminal Emulator from the Market (free).
Open a terminal and run the following commands:
su -c ash
mount | grep ext4
(note the names of the devices /dev/block/stl**)
tune2fs -l /dev/block/stl** | grep features
(If a journal is present it will say "has_journal")
Credit: Can't find an exact source, just did some Google searches...
This has been asked a few times and here is the answer.
First download Terminal Emulator from the Market (free).
Open a terminal and run the following commands:
su -c ash
mount | grep ext4
(note the names of the devices /dev/block/stl**)
tune2fs -l /dev/block/stl** | grep features
(If a journal is present it will say "has_journal")
Credit: Can't find an exact source, just did some Google searches...