|
Other BSD and UNIX/UNIX-like Any other flavour of BSD or UNIX that does not have a section of its own. |
|
Thread Tools | Display Modes |
|
|||
Linux 5.4 new y2k38 message on filesystem mount
I noticed this message in a recent Linux 5.4 system log after mounting an ext2 file system:
ext2 filesystem being mounted at / supports timestamps until 2038 (0x7fffffff) The message warns that ext2 filesystems have traditional Unix 32-bit timestamps and will not save create/modify/access timestamps newer than 19 Jan 2038. Something like this could also be in BSD kernels to warn about ufs1 file systems. Ufs2 file sytems are ok.
__________________
When you see a good move, look for a better one. --Lasker |
|
|||
What about OpenBSD's FFS, did they fix 2038 issue in it?
|
|
|||
No, FFS (ufs) is not fixed. FFS2 (ufs2) is fixed but not FFS...
Linux now reports OpenBSD FFS (ufs) systems just like ext2 systems: ufs filesystem being mounted at /obsd supports timestamps until 2038 (0x7fffffff) (To get this message on Linux the disk needs to be mounted R/W which requires the kernel to contain CONFIG_UFS_FS_WRITE=y ) Here is a OpenBSD script to show the issue with timestamps: Code:
#! /bin/sh set -x touch -t 203801181234 y2k38-test1 ls -lT y2k38-test1 touch -t 203901201234 y2k38-test2 ls -lT y2k38-test2
__________________
When you see a good move, look for a better one. --Lasker |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Mount encrypted disk under Linux? | beavers | OpenBSD General | 1 | 13th May 2019 10:44 PM |
Ars walkthrough: Using the ZFS next-gen filesystem on Linux | J65nko | News | 0 | 25th February 2014 12:29 AM |
Barti asked about Linux filesystem commands on OpenBSD | jggimi | OpenBSD General | 0 | 17th July 2012 04:34 PM |
mount ufs from linux | kanonmat | FreeBSD General | 8 | 2nd December 2008 06:13 AM |
Mount filesystem with a regular user | ivanatora | FreeBSD General | 15 | 30th July 2008 08:51 AM |