We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nftw
Filesystem time is not faked when the time of the file is retrieved through the stat of the function nftw() calls during a filesystem walk.
stat
nftw()
https://man7.org/linux/man-pages/man3/nftw.3p.html
An example usage of this is mkfs.btrfs from btrfs-progs since version v6.10.1. Specifically since kdave/btrfs-progs@c6464d3
mkfs.btrfs
btrfs-progs
v6.10.1
Example:
mkdir -p populateRoot/dir1/dir2 touch populateRoot/file populateRoot/dir1/dir2/dirfile faketime -f "1970-01-01 00:00:01" mkfs.btrfs -r ./populateRoot btrfs.img mount -o loop ./btrfs.img /mnt; ls -lha /mnt; umount /mnt; rm btrfs.img
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Filesystem time is not faked when the time of the file is retrieved through the
stat
of the functionnftw()
calls during a filesystem walk.https://man7.org/linux/man-pages/man3/nftw.3p.html
An example usage of this is
mkfs.btrfs
frombtrfs-progs
since versionv6.10.1
.Specifically since kdave/btrfs-progs@c6464d3
Example:
The text was updated successfully, but these errors were encountered: