Post Ac4jDVTecC6rFvJToO by minoru@functional.cafe
 (DIR) More posts by minoru@functional.cafe
 (DIR) Post #Ac4hxEFgn4N5FGSImO by minoru@functional.cafe
       2023-11-22T19:50:25Z
       
       0 likes, 0 repeats
       
       Today's the first day in my 15 years of using Linux that I've ran out of inodes rather than disk space.Luckily it's easy enough to fix: create a large empty file with truncate -s 20G filename, format it (e.g. mkfs.ext4 filename), and mount it somewhere you can access.
       
 (DIR) Post #Ac4hxFM6gh6CfSSwQC by L29Ah@qoto.org
       2023-11-22T19:53:56Z
       
       0 likes, 0 repeats
       
       @minoru xfs ftw
       
 (DIR) Post #Ac4j0AE8JPIzaIguIq by minoru@functional.cafe
       2023-11-22T20:05:38Z
       
       0 likes, 0 repeats
       
       @L29Ah Didn't know XFS lets one change the number of inodes; nice! But I'm not migrating to a new FS just for that :)
       
 (DIR) Post #Ac4j4FJXL8xKWKAILo by L29Ah@qoto.org
       2023-11-22T20:06:25Z
       
       0 likes, 0 repeats
       
       @minoru xfs doesn't have a static number of inodes and doesn't allocate them all at once like ext* do
       
 (DIR) Post #Ac4j722V9T7gDaWdJg by L29Ah@qoto.org
       2023-11-22T20:06:56Z
       
       0 likes, 0 repeats
       
       you can migrate to it for its reflinks support: https://bnw.im/u/l29ah/t/xfs@minoru
       
 (DIR) Post #Ac4j9afHO01SBbsphA by minoru@functional.cafe
       2023-11-22T20:07:23Z
       
       0 likes, 0 repeats
       
       @L29Ah Yeah, I read up on that just now, it's nifty.
       
 (DIR) Post #Ac4jDVTecC6rFvJToO by minoru@functional.cafe
       2023-11-22T20:08:05Z
       
       0 likes, 0 repeats
       
       @L29Ah Don't really have a use-case for them on this machine, but they're interesting for sure.