this post was submitted on 15 Sep 2025
9 points (84.6% liked)

Linux

13227 readers
65 users here now

Welcome to c/linux!

Welcome to our thriving Linux community! Whether you're a seasoned Linux enthusiast or just starting your journey, we're excited to have you here. Explore, learn, and collaborate with like-minded individuals who share a passion for open-source software and the endless possibilities it offers. Together, let's dive into the world of Linux and embrace the power of freedom, customization, and innovation. Enjoy your stay and feel free to join the vibrant discussions that await you!

Rules:

  1. Stay on topic: Posts and discussions should be related to Linux, open source software, and related technologies.

  2. Be respectful: Treat fellow community members with respect and courtesy.

  3. Quality over quantity: Share informative and thought-provoking content.

  4. No spam or self-promotion: Avoid excessive self-promotion or spamming.

  5. No NSFW adult content

  6. Follow general lemmy guidelines.

founded 2 years ago
MODERATORS
 

Is it ok to swap over to Linux as long as the boot drive is reformatted as Ext4 but my storage drives are NTFS?

I have a Win 10 home theater pc that I use for plex and gaming. I want to swap over to Linux but my drives are formatted in NTFS. I have heard that while Linux can read and write NTFS, there is a possibility of corruption. I have a separate OS drive that I can reformat.

I really don’t have the spare cash right now to buy another HDD to pull over files before reformatting my current drives.

top 16 comments
sorted by: hot top controversial new old
[–] lordnikon@lemmy.world 6 points 1 week ago (1 children)

https://www.kernel.org/doc/html/v6.14-rc6/filesystems/ntfs3.html

Note if you are sharing it with windows MS could update or change something that could corrupt the data. Always have backups.

[–] RunJun@lemmy.dbzer0.com 2 points 1 week ago

I would be running Linux only with Windows completely removed.

[–] frongt@lemmy.zip 5 points 1 week ago (1 children)

Corruption is unlikely, but permissions might be a problem.

How much free space do you have? You might be able to shrink the NTFS and create another (I usually use xfs for data partitions), copy the data, then delete NTFS and expand xfs to full size.

[–] RunJun@lemmy.dbzer0.com 1 points 1 week ago

I have around 8 TB free. I have linked what I have in other replies.

[–] Lembot_0004@discuss.online 3 points 1 week ago (1 children)

NTFS works fine for the last decade or so. Works fine until it doesn't. And this is where your problems begin: if something went terribly wrong, you lack the tools to fix that. Also, as I heard, there are still serious problems with storing programs on NTFS: some crazy unexpected things happen even in Win-programs run through Wine. Not your situation, but still.

I would avoid NTFS if possible. Nothing good will come from that.

[–] RunJun@lemmy.dbzer0.com 1 points 1 week ago (2 children)

This is what my searching has panned out to be. If I completely removed Windows from my system and do not run any programs from the NTFS drives, does my risk go down?

Issue is that I have around 30 TB of data and so getting a drive to shuffle data while reformatting instantly puts me in the $250+ range which isn’t really possible right now.

[–] Kernal64@sh.itjust.works 3 points 1 week ago (1 children)

Are the data drives completely full? If not, you could potentially shrink the partition using something like GParted, then create a new ext4 or whatever file system you want with the newly unallocated space. Then, move some data from the ntfs partition to the new ext4 partition. Once the new partition is full, shrink the ntfs one, expand the ext4 one, and copy over more data. It'll probably be tedious, but it should be doable and save you from having to buy a new drive.

[–] RunJun@lemmy.dbzer0.com 1 points 1 week ago

They’re not, and I can get one drive for sure formatted with transferring. I do get concerned with large scale transferring and worrying that the drive will die lol

[–] Lembot_0004@discuss.online 1 points 1 week ago (1 children)

Well, if those are just videos or other such data then you're almost perfectly safe. Almost.

If you describe what and how many disks you have, maybe we would be able to figure out some cheap walkaround?

[–] RunJun@lemmy.dbzer0.com 1 points 1 week ago (1 children)

Essentially I have two primary storage drives of 8 and 18 TB. The other storage drives are my old drives that I’m not worried about.

[–] Lembot_0004@discuss.online 1 points 1 week ago (1 children)

I see, I hoped you have just a bunch of smaller disks.

Do you have another Win-machine where you can mount those disks if in need of maintenance (this need might never actually happen!)? If yes, then just move to Linux and everything will be ok.

[–] RunJun@lemmy.dbzer0.com 1 points 1 week ago

I have another pc that I could do that but I was looking at bringing it over to Linux too. I guess I could have that stay on Windows until I obtain another drive.

[–] bismuthbob@sopuli.xyz 2 points 1 week ago* (last edited 1 week ago) (1 children)

The biggest issue that I ran into when I was using NTFS drives with Linux was caused by unclean drive dismounts. After power outages, forced shutdowns, or manually pulled drives (I am the problem sometimes), the NTFS drive would sometimes fail to mount properly unless I connected it to a Windows computer and scanned the drive for errors first. Not the end of the world if you have backups and a Windows computer handy, but pretty terrible if you don't have both.

[–] RunJun@lemmy.dbzer0.com 0 points 1 week ago (1 children)

Hmm ya, that’s definitely a concern in my location. Power goes out several times a year here, even if it’s just momentarily long enough to power off the PC. I should have a UPS but never had the spare cash to throw at that.

[–] bismuthbob@sopuli.xyz 2 points 1 week ago

To be fair, power loss is a concern for any setup. More recent copy-on-write filesystems are supposed to be a bit more resilient...but I also worry about the lack of a long-term reliability track record for newer filesystems like BTRFS. The long term solution, like more than one other poster has indicated, is having multiple backups.

I would just make sure you're only READING from the NTFS volume. Writing to NTFS is technically supported, but due to the nature of the filesystem, it will run into errors at some point as others may have mentioned.