From my unfortunate experience, indian accent is a good predictor of low quality content on YT, so I can't even express how happy I was to watch this amazing, extremely informative, concise yet comprehensive summary-thank you so much 🙇🏻♂️ !
indian accents usually indicate good content in my opinion. especially if the video is teaching something. from maths to computer science, indians will never fail to amaze you!
I've been searching for clear explanation about current file systems for a couple of hours... and too be honest your video nailed it completely, thanks for sharing and enlighten our minds with your knowledge buddy!
Very good in depth video. Thank you! But there is one thing to correct. btrfs is only better on paper, in reality its raid support is still experimental and it has problems using disk space even when it is telling the user, that enough disk space is left. It's not uncommon that it tells you after a copy operation, that it doesn't have enough disk space, even when it is claiming the opposite at first place. The best FS at the moment of these 4 is ZFS. But because of its license, it can't be incorporated into the Linux kernel. Thus it's only working in user space in Linux. As a consequence you usually can only choose between ext4 and XFS on Linux, while btrfs is too unreliable. Because of that, Red Hat discarded btrfs on their distribution and switched to XFS.
Startet with XFS over 10 years ago; used EXT4 a while later; nearly started using btrfs in the beginning of 2017 but using ZFS since than and I'm very happy with it! Looking forward to bcachefs in the next few years. Nice video!
Great video! I really like how you explained what a file system is and the major features and limitations. I just need to add XFS also supports Copy-on-Write. I think this is important consideration when picking a file system. Also currently BtrFS has some drawbacks compared to ZFS, namely BtrFS doesn't fully support Encryption, RAID 5/6, adaptive endanness or caching mechanisms like L2ARC or SLOG. Which are not really big problems though. I like to think of it like this, if it's for home use pick BtfFS, if it's for work or sensitive data pick ZFS.
Thank you so much for this video! This is the first time I have seen anyone answer my curiosity about what the difference in each filesystem was and why one would be more desirable than another. Please keep doing the esoteric topics that many would be interested in but don't know where to get the info. I am trying to kick my Microsoft habit completely. Unfortunately, I have been a junkie since Dos 2.
Thx doe the infos ! Do you think any of those FS would be a better choice for 4 TB HDDs, sharing data on several OSs, mixing Win & Linux ? Or is it still best to stick to NTFS for compatibility, instead of using FS compatibility/support add-ons on Win (10)?
5:30 reading 2^32+2^12=2^44 is super wierd. I had to listen without reading to understand it was supposed to be 2^32*2^12=2^44. Maybe it was meant to be easy for people don't know math. Nice video by the way
@12:25 attention: "automatically repairs corruption" is only true if you run raid-z (i.e. if there is an uncorrupted copy of the data available within the filesystem). If you run your ZFS pool on a single device then it can only _detect_ corruption, but is not able to repair it. So don't forget your regular backups (and preferably only run them after a successful scrub). Also: you forgot to mention that ZFS natively supports compression (which you _do_ mention for Btrfs) and encryption. @14:20 attention: btrfs RAID 5/6 is still "" by the developers!
Great Video, though the many important features of ZFS are not covered [ e.g. transparent compression ]. Secondly, ZFS for Linux is an open source project. Thirdly, BTRFS is not a matured file system by any standard. BTRFS Raid functionality is incomplete [ Especially Raid 5 and Raid 6 ] . You have not also not covered XFS file system comparison with EXT4. Based on the available file system, its features, performance, scalability, there is no doubt that ZFS stands on # 1 spot.
I think it's worth noting that XFS has the fastest start-up time and it ages much better then BTRFS. All of the advanced features others offer aren't really worth the hassle for home users...
@@silvioglucklich1155 I meant hassle as in: setting it up properly and learning to use btrfsprogs just to get a inferior file system. The biggest pain for me was application start up time i.e. XFS takes 0.7sec to start office, while BTRFS needs 3sec. That's perceivable and it shouldn't be when you have an SSD. It gets worse as the system ages. BetrFS (not to be confused with BTRFS) tries to fix some of it shortcomings, but I would still go with XFS. Here you can find all of the fs used in the video plus F2FS: research.vmware.com/files/attachments/0/0/0/0/0/3/5/fast17-conway.pdf
What kind of keep me from using anything else then ext4 is that all other have less support. btrfs seems to be equally supported but zfs is not even supported in the Kernel by Standard. I think you have to load it into the Kernel with some non GPL licence. Not really what i want to do
ZFS and btrfs have been and are still called copy on write systems, but they actually are more accurately redirect on write systems. It's similar to the confusion over gibibytes and gigabytes. They are not the same thing, but people use copy on write for both anyway. Bad practice.
From my unfortunate experience, indian accent is a good predictor of low quality content on YT, so I can't even express how happy I was to watch this amazing, extremely informative, concise yet comprehensive summary-thank you so much 🙇🏻♂️ !
indian accents usually indicate good content in my opinion. especially if the video is teaching something. from maths to computer science, indians will never fail to amaze you!
Agreed. @@bharatmadho3742
@@bharatmadho3742 I was about to say that.
I head the voiced & immediately bookmarked it.
In my case indians and russians have solved all my issues with informatics.
I've been searching for clear explanation about current file systems for a couple of hours... and too be honest your video nailed it completely, thanks for sharing and enlighten our minds with your knowledge buddy!
Very good in depth video. Thank you!
But there is one thing to correct. btrfs is only better on paper, in reality its raid support is still experimental and it has problems using disk space even when it is telling the user, that enough disk space is left. It's not uncommon that it tells you after a copy operation, that it doesn't have enough disk space, even when it is claiming the opposite at first place.
The best FS at the moment of these 4 is ZFS. But because of its license, it can't be incorporated into the Linux kernel. Thus it's only working in user space in Linux.
As a consequence you usually can only choose between ext4 and XFS on Linux, while btrfs is too unreliable. Because of that, Red Hat discarded btrfs on their distribution and switched to XFS.
This is a fantastic video! I love how clearly you explain these linux filesystems. Thank you!
Would be nice if he spoke louder..................................................
Startet with XFS over 10 years ago; used EXT4 a while later; nearly started using btrfs in the beginning of 2017 but using ZFS since than and I'm very happy with it! Looking forward to bcachefs in the next few years. Nice video!
this is so much information for just 1 subject , storage.
wow thanks bro
good video , I've been searching for clear explanation about ex3,xfs and btrfs. thanks!
Happy to use btrfs for years, saved my life more than once.
Short but detailed description, thank you for your effort!
btrfs with subvolumes are the best choice i think. Now it's working rly good
Great video! I really like how you explained what a file system is and the major features and limitations.
I just need to add XFS also supports Copy-on-Write. I think this is important consideration when picking a file system.
Also currently BtrFS has some drawbacks compared to ZFS, namely BtrFS doesn't fully support Encryption, RAID 5/6, adaptive endanness or caching mechanisms like L2ARC or SLOG.
Which are not really big problems though. I like to think of it like this, if it's for home use pick BtfFS, if it's for work or sensitive data pick ZFS.
good video, will study more about the mentioned file systems
Thank you so much for this video! This is the first time I have seen anyone answer my curiosity about what the difference in each filesystem was and why one would be more desirable than another.
Please keep doing the esoteric topics that many would be interested in but don't know where to get the info.
I am trying to kick my Microsoft habit completely. Unfortunately, I have been a junkie since Dos 2.
Best video and information around the topic. Thank you so much!
So well explained thanks you Sir!
Your channel is soo underrated, great videos with clear explanations, thank you!
Fantastic explanation. Thank you!
Man thank you so much for this video, i always wanted a deeper analysis on Linux filesystems!
Amazing and informative video. Thank you.
A very good explanation. Thank you for that
This is wonderful, thanks for detailed explanations.
Nice job! Simple clear video!
Thx doe the infos ! Do you think any of those FS would be a better choice for 4 TB HDDs, sharing data on several OSs, mixing Win & Linux ? Or is it still best to stick to NTFS for compatibility, instead of using FS compatibility/support add-ons on Win (10)?
Which one would you recommend for a) private usage b) big amounts of small files
5:30 reading 2^32+2^12=2^44 is super wierd. I had to listen without reading to understand it was supposed to be 2^32*2^12=2^44.
Maybe it was meant to be easy for people don't know math. Nice video by the way
excellent video!
Very nicely explained.👍
Seeing how BTRFS has had a 10x boost with Linux Kernel 6.2... Maybe we need an update on this video.
Very nice sir
nice video, bro! thanks!
ok ok, what we doing here. I kinda like this.
@12:25 attention: "automatically repairs corruption" is only true if you run raid-z (i.e. if there is an uncorrupted copy of the data available within the filesystem). If you run your ZFS pool on a single device then it can only _detect_ corruption, but is not able to repair it.
So don't forget your regular backups (and preferably only run them after a successful scrub).
Also: you forgot to mention that ZFS natively supports compression (which you _do_ mention for Btrfs) and encryption.
@14:20 attention: btrfs RAID 5/6 is still "" by the developers!
cool! thanks
Great Video, though the many important features of ZFS are not covered [ e.g. transparent compression ]. Secondly, ZFS for Linux is an open source project. Thirdly, BTRFS is not a matured file system by any standard. BTRFS Raid functionality is incomplete [ Especially Raid 5 and Raid 6 ] . You have not also not covered XFS file system comparison with EXT4.
Based on the available file system, its features, performance, scalability, there is no doubt that ZFS stands on # 1 spot.
I think it's worth noting that XFS has the fastest start-up time and it ages much better then BTRFS.
All of the advanced features others offer aren't really worth the hassle for home users...
Thx, what are the hassle a home / home server user will see with BTRFS?
@@silvioglucklich1155 I meant hassle as in: setting it up properly and learning to use btrfsprogs just to get a inferior file system.
The biggest pain for me was application start up time i.e. XFS takes 0.7sec to start office, while BTRFS needs 3sec. That's perceivable and it shouldn't be when you have an SSD. It gets worse as the system ages.
BetrFS (not to be confused with BTRFS) tries to fix some of it shortcomings, but I would still go with XFS.
Here you can find all of the fs used in the video plus F2FS: research.vmware.com/files/attachments/0/0/0/0/0/3/5/fast17-conway.pdf
@@twinshadow1357 Thx a lot - to me as normal user it means "hands off" - the abstract of the linked study is promising. :)
I use XFS on all my relevant drives, and would recommend it to everyone anytime.
I disagree with the latter. I use ZFS on my TrueNAS system as a home user and ZFS is really great in that role. I agree with you on BTRFS.
Which presentation software using?
What kind of keep me from using anything else then ext4 is that all other have less support. btrfs seems to be equally supported but zfs is not even supported in the Kernel by Standard. I think you have to load it into the Kernel with some non GPL licence. Not really what i want to do
BTRFS user here
ZFS user enters the room. BTRFS leaves in shame.
just excellent
10:02 false, ubuntu server does not have as default zfs. It uses ext4 since forever.
Thanks ❤️
Good video 👍
Nice video
But volume is too low
Even in your other previous videos
no probs for me. . .
True that ZFS is proprietary, but OpenZFS is open source and not proprietary.
44^2 =! 12^2 + 32^2
ZFS and btrfs have been and are still called copy on write systems, but they actually are more accurately redirect on write systems. It's similar to the confusion over gibibytes and gigabytes. They are not the same thing, but people use copy on write for both anyway. Bad practice.
* googles a video on what copy-on-write is *
* Watches the whole video until we get to btrfs *
"copy on write makes it better overall"
alrighty then
Do u recommend MAC or Windows for a beginner to purchase a laptop
❤️
5:38 Voulme?
Christop Station
Adele Villages
Perez Anna Allen Matthew Martinez Richard
started the vid and can u pls talk a bit quieter, so i can hear the bugs fucking outside
Audio ia too low..
Williams Melissa Allen Barbara Lewis Angela
18490 Nelson Extension