New on LowEndTalk? Please Register and read our Community Rules.
All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.
All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.


Comments
Please use a search engine because it is way more easier than opening a thread. Here is a distinction between EXT partitions.
Hi,
since ext4 is default for Debian 12 this selection makes actually not too much sense.
Your question is better placed with the support of where ever you purchased this server. Only the provider can tell you whats the difference.
We here can most probably just guess.
I think you mean filesystems. But, yes, I am aware of the differences between the various ext types. I was wondering why the provider would offer:
Debian 12 (Bookworm) Minimal
Minimal installation with limited packages. New packages are easily installed using Advanced Package Tool (APT), the main command-line package manager for Debian.
and
Debian 12 (Bookworm) ext4
Minimal installation with limited packages on an ext4 filesystem. New packages are easily installed using Advanced Package Tool (APT), the main command-line package manager for Debian.
I'm glad it does not make sense to you all as well.
xfs, thx
I think I know what provider that is and I think XFS is the Virtfusion default FS hence the added EXT4
VirtFusion doesn't have special images, they're the ones Debian, Alma and others have published just like they are. FreeBSD and Windoes is the only self-build for now afaik.
I said XFS is the Virtfusion default. You objected. Are you sure the default in Virtfusion Debain 12 isn't XFS?
https://bitbucket.org/virtfusion-public/packer/src/master/config/debian-12/http/preseed-base.cfg
I don't know what would be the default. I just rechecked @VirtFusion 's statement on Discord, maybe only the ISO is mirrored from original source but template is self-created.
My Virtfusion servers all use XFS.
For a “normal” user, there’s no noticeable difference between XFS and EXT4. But XFS really shines when you have more than 100,000 files. EXT4 can handle large numbers of files, but it wasn’t designed with that in mind.
In my case, I have millions of small files — they take up about 80 GB on XFS, but around 120 GB on EXT4. That’s because XFS uses dynamic allocation for inode metadata. While EXT4 wastes space with its pre-allocated inode structure.
Furthermore, listing large directories (
ls) on EXT4 tends to degrade in performance. That’s why many programs organize files into multiple subdirectories using hashed prefixes like1a/,bc/, and so on. On XFS, this isn’t necessary.My recommendation: go with XFS. VF chooses it as the default for a reason. MinIO recommends using XFS as well.