lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Thu, 25 Nov 2010 10:37:53 -0500
From:	Nick Dokos <nicholas.dokos@...com>
To:	Nivedita J N <niveditajn@...aelxsi.co.in>
Cc:	linux-ext4@...r.kernel.org, nicholas.dokos@...com
Subject: Re: Query regarding ext4 filesystem

>    I'm planning to use ext4 filesystem in my ubuntu machine.I am doing
> a detailed search on the filesystem.I would like to know where the
> journal is stored in ext4 file system? Is it visible?
> 

You can use debugfs for this - do ``man 8 debugfs'' for more info. The
journal is generally inode 8 (you can do

    dumpe2fs -h /dev/FOO | grep "Journal inode:"

to make sure), so in debugfs you can do

    stat <8>
    ex <8>

to get metadata (size, perms, etc.) and extent information and

    logdump <OPTIONS>

to examine the contents of the journal - see the debugfs man page
for <OPTIONS> info.

HTH,
Nick
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ