As someone who was schooled in the "opposition camp" (namely DOS/Windows) and has only recently started getting into Linux/UNIX, the Linux file system was pretty overwhelming...vids like this help to make it less scary, though! 😁
Depending on what shell you're using, but Bash and most other common shells will tab-autocomplete as far as it can autocomplete unambiguously, not to the most likely completion. There is a substantial difference between the two.
" I assure you that the original contents of /etc were the "et cetera" that didn't seem to fit elsewhere. Other variants might do their own etymologies differently. " " You can find references to "et cetera" in old Bell Labs UNIX manuals and so on - it's used for system configuration, but it used to be where all the stuff that didn't fit into other directories went. "
Veronica is awesome! I've struggled to understand the file system every time I ever tried Linux and you explained it only once and now I finally understand it! Thank you!!!
3:30: Your second device has no partitions there. Partitions are ones that end with _p_ followed by a number. 11:00: _USR_ stands for _"Unix System Resource",_ not _"user"._
As a configuration manager I have to say that the Linux file system to me looks like chaos. As if either a result of lack of discipline amongst the open source community or due to legacy. In any case, thanks for this informative video!
Thank you so much Linode and especially Veronica for explaining Linux System. Please do more videos on the Linux system and Linux Server Administration, much appreciated. Thanks
Comming from Windows, I found Linux's filesystem makes a lot more sense. I love how everything in Linux (or Unix, for that matter) is just a file. Everything is clear and I can easily find where my files are because there's no A, B, C, D, E.... Z directory or registry nonsense unlike in Windows.
I tried that positive attitude with Unix in the 1980s (my employer had heard "it was the future"). Didn't work out well though, still hate most aspects of Unix and its rigid 1970s style conventions. (The Linux kernel that Linus wrote for the 386 is another thing.)
@@Conenion To me, that CP/M heritage makes perfect sense even today, when you have various USB-sticks, memory cards, and external SSDs. It would be nice if the letters could be words though, i.e. a short description of the unit. (No, I'm no M$ fan by any means, just simple and practical.)
@@herrbonk3635 > makes perfect sense even today, Not so perfect then, since drive letters have length of 1 char only. > It would be nice if the letters could be words though, In Linux you label a partition. See mount -l, or lsblk. lsblk will show you /run/media//. And any decent GUI file manager will just show you the label. Like for example Nemo. (lsblk -o LABEL shows you only the labels.)
@@Conenion That's not how it was in Unix, iirc. But a Windows shell (like Total Commander or other) could actually do the same. Because the connection between a drive letter and the id-string of an external SSD, other Nand-flash unit, or whatever, is known and visible via "the registry".
I love the Unix / directory! I remember switching to MacOS and Linux exclusively and falling in love with the simplicity. This is an awesome guide to all of them!
true after coming from windows it is so easy on windows i had some problems when i unplugged & plugged in a external hdd it changed letters I had some games installed on it it broke so much now i don't have to worry about that anymore ALL HAIL LINUX
Thanks for the tutorial. I have taken a lot of notes and I clearly have a lot more to learn about Linux basics :-) Also, it was interesting to see someone (you) for the first time that I have been listening to for a long time. Thus, I listen to far more podcasts than I watch TH-cam videos. Again, thanks and God bless
I’m new to Linux, this is only the second video of yours that I’ve seen, and I think your videos teaching Linux are some of the best I’ve seen! Very clear explanations where I’m able to understand, and your funny sometimes 😂❤ Sincere gratitude and thanks for explaining this foreign OS to an average self/taught Windows user like myself 🙏🏾✌🏾
Thanks for the fun and helpful video! I just took a Linux class and wow what a lot of information. Have like a 30+ page word doc of all commands and another one for all of the directories. It will be a while until I take my Linux+ exam! I told the instructor that I think I know more about the Linux system than Windows now. He's my scripting teacher too for the summer. Think this one's going to be rough...
Thank you so much for explaining in detail, I have been learning for the past 1 year , I regularly follow Learn Linux TV....he always speaks about Linode, I wanted to learn a lot about Linux Distros. Thank you so much once again.
Incredibly informative video. Wow. I am stunned at how little I know and knew and now feel my eyes opened... my Linux Mint machine is only for Ham radio use .. so very few programs other than Ham radio related programs will be required.. knowing the how and where is a huge help. Well lit videos with good audio and a confident presenter are key ! Well done !!
I really appreciate this video. the basics explanation is enough to get started. Helps me think in the right direction when something happens. Thanks Veronica.
... Thank you so much T_T .I had always been looking for THIS content somewhere about the filesystem but explained that way with important things added while in the stream just enough to keep looking for informations more deeply.
Flexibility is not always your friend. Flexibility means there are multiple possible causes when something goes wrong, increasing complexity of troubleshooting. That said, good introduction!
@@lucyinchat That's my understanding as well- it didn't stand for anything other than "user" as in "user-land resources" as opposed to "system-land resources" found in the other directories.
i've noticed in the home folder, there is a .config folder where *most apps store their user-defined configuration files in their respective folders. however there are some like bash and x11 that dump their configs right in the user folder. is this some kind of legacy thing? it would be nice if all the programs obeyed the .config/ convention.
Yeah, the .config folder is related to the relatively new (as far as standard adoption goes) freedesktop XDG base directory specification. Not all programs follow freedesktop standards, and especially legacy applications sometimes don't adopt such changes for compatibility reasons.
This video was very concise thank you! I have been deploying sites with a recipe for a while and I wanted to learn more about linux. I would really like to see proper mern stack deployment tutorials that utilize things like s3 comparable object storage and node balancers. Maybe something similar with Wordpress installs too would be pretty helpful. I feel like this would help me go from beginner to intermediate.
There's some flexibility and some legacy stuff which is fine, but where it gets messy from my point of view is in the /usr/local directory which starts its own duplicated structure, e.g. it can have bin, lib or etc subdirectories. I'm looking at a certain project that uses containers and one of them has configuration in /etc/php while another has it in /usr/local/etc/php. I never know where to look first.
The Second Extended File System (ext2) is one of the oldest Linux file systems still available. ext2 stores data in a standard directory and file hierarchy. The maximum file size supported is 2 TB. An ext2 volume can be up to 4 TB in size. File names can be up to 255 characters long. Linux users, groups, and permissions are supported. ex2 does not use journaling (which is used in most modern file systems). As a result, ext2 takes a long time to recover if the system shuts down abruptly. The Third Extended File System (ext3) is an updated version of ext2 that supports journaling. Before committing a transaction to a storage device, the ext3 file system records the transaction to the journal and marks it as incomplete. After the disk transaction is complete, the file system marks the transaction as complete in the journal. By doing this, ext3 can keep track of the most recent file transactions and whether or not they were completed. This allows ext3 to recover much more quickly than ext2 in the event of an unclean system shutdown. ext4 (most common) is the fourth generation file system in the ext file system family. ext4 includes all of the features found with ext2 and ext3 with the addition of the following features: Support for file sizes up to 16 TB and disk sizes up to 1 exabyte (EB). Supports up to four billion files in the file system. Uses checksums to verify the integrity of the journal file itself. Checksums help improve the overall reliability of the system because the journal file is the most heavily used file of the disk.
That was cool, very calm and clear. I would like a video on - If I have one Linux system on my home home network, can I access the word documents on my Network storage.
Very good explanations as /run seems kind of new and I rarely hear about /sys at all. However /opt still seems to have a lot of use. The Brave browser places nearly all of its files there, as do some commercial VPNs, along with my current distro (Sparky Linux) placing a lot of its wallpapers there.
You pronounce etc right. It's NOT "et cetera" since it's not a shortened word. It's NOT "e.t.c." since it's not an abbreviation of three words. So, yes, you got the right pronunciation of the word.
You are amazing....I have been looking for someone who will cut down linux into piece for me and I must say....today I found you and I am convinced you are sent. Thank you. I will subscribe and pls I hope you reply and answer my questions.
This is something EVERY linux YT channel MUST cover !!! .... Thank You lovely lady
The best explanation of the Filesystem I've seen and by now. Thanks Veronica for explaining
NOTE: /home is more akin to C:\Users in Windows, rather than C:\Users\WHATEVER\Documents
yeah, i was about to comment this too.
Yeah, it's a painfully horrendous error.
"C:\Documents and Settings\account\My Documents\"
@@leonidas14775 not since XP afaik, they changed it
@@leonidas14775 1
G1
As someone who was schooled in the "opposition camp" (namely DOS/Windows) and has only recently started getting into Linux/UNIX, the Linux file system was pretty overwhelming...vids like this help to make it less scary, though! 😁
Remember, pressing the TAB key will auto complete the most likely completion.
Speed the file path entry in terminal by at least 30 percent.
And shortcut keys are from Emacs.
Been using Linux for nearly 15 years, and I literally only learned this ..... earlier this week! So useful!!!
Depending on what shell you're using, but Bash and most other common shells will tab-autocomplete as far as it can autocomplete unambiguously, not to the most likely completion. There is a substantial difference between the two.
Wow! Just wow! This was amazingly explained! Will recommend this video 100%
" I assure you that the original contents of /etc were the "et cetera" that didn't seem to fit elsewhere. Other variants might do their own etymologies differently. "
" You can find references to "et cetera" in old Bell Labs UNIX manuals and so on - it's used for system configuration, but it used to be where all the stuff that didn't fit into other directories went. "
I’m not a sysadmin but as a new Linux user just to replace windows this is very helpful. Thank you
Veronica is awesome! I've struggled to understand the file system every time I ever tried Linux and you explained it only once and now I finally understand it! Thank you!!!
I agree. Does she have an own channel? edit it is linked, nevermind
Just like windows, 90% of them aren't ever used by users
She is awesome a lot
3:30: Your second device has no partitions there. Partitions are ones that end with _p_ followed by a number.
11:00: _USR_ stands for _"Unix System Resource",_ not _"user"._
As a configuration manager I have to say that the Linux file system to me looks like chaos. As if either a result of lack of discipline amongst the open source community or due to legacy. In any case, thanks for this informative video!
Thank you so much Linode and especially Veronica for explaining Linux System. Please do more videos on the Linux system and Linux Server Administration, much appreciated. Thanks
Veronica is awesome, and so are you! And Linux!
Comming from Windows, I found Linux's filesystem makes a lot more sense. I love how everything in Linux (or Unix, for that matter) is just a file. Everything is clear and I can easily find where my files are because there's no A, B, C, D, E.... Z directory or registry nonsense unlike in Windows.
I tried that positive attitude with Unix in the 1980s (my employer had heard "it was the future"). Didn't work out well though, still hate most aspects of Unix and its rigid 1970s style conventions. (The Linux kernel that Linus wrote for the 386 is another thing.)
Drive letters made (somewhat) sense back than, when computers had 1 or 2 floppy drives. Not much thereafter.
@@Conenion To me, that CP/M heritage makes perfect sense even today, when you have various USB-sticks, memory cards, and external SSDs. It would be nice if the letters could be words though, i.e. a short description of the unit. (No, I'm no M$ fan by any means, just simple and practical.)
@@herrbonk3635
> makes perfect sense even today,
Not so perfect then, since drive letters have length of 1 char only.
> It would be nice if the letters could be words though,
In Linux you label a partition. See mount -l, or lsblk. lsblk will show you
/run/media//.
And any decent GUI file manager will just show you the label. Like for example Nemo.
(lsblk -o LABEL shows you only the labels.)
@@Conenion That's not how it was in Unix, iirc. But a Windows shell (like Total Commander or other) could actually do the same. Because the connection between a drive letter and the id-string of an external SSD, other Nand-flash unit, or whatever, is known and visible via "the registry".
I love the Unix / directory! I remember switching to MacOS and Linux exclusively and falling in love with the simplicity. This is an awesome guide to all of them!
true after coming from windows it is so easy on windows i had some problems when i unplugged & plugged in a external hdd it changed letters I had some games installed on it it broke so much now i don't have to worry about that anymore ALL HAIL LINUX
@@linuxstreamer8910 the
@@birusingh7820 who cares
For some reason I never saw this when it was first posted. Really good info which I had in one spot when I was first learning Linux. Nicely done.
1:17 Kernel 4.18. Kernel 4.18? Like wow! LOL! Thank you SO MUCH for such an informative video. You rock, Linux lady!
Finally, a lady explaining linux. Thank you, this is very helpful. Good stuff.
Veronica's channel is so fun and wholesome and now she's on Linode's channel? Excellent! Thanks, Veronica!
What is the name of her channel 🤔
@@vwbond Veronica Explains it All.
Thanks for the tutorial. I have taken a lot of notes and I clearly have a lot more to learn about Linux basics :-) Also, it was interesting to see someone (you) for the first time that I have been listening to for a long time. Thus, I listen to far more podcasts than I watch TH-cam videos.
Again, thanks and God bless
This is an excellent and concise video. Some previous knowledge required, but NICE!
Thank you, Veronica. Will be sharing your Linux filesystem explanation to all my newbie Linux friends. This video is Awesome and so are you!
I’m new to Linux, this is only the second video of yours that I’ve seen, and I think your videos teaching Linux are some of the best I’ve seen! Very clear explanations where I’m able to understand, and your funny sometimes 😂❤
Sincere gratitude and thanks for explaining this foreign OS to an average self/taught Windows user like myself 🙏🏾✌🏾
I hope you will expand beyond Linode, you are WONDERFUL at explaining linux
M
Thanks for the fun and helpful video! I just took a Linux class and wow what a lot of information. Have like a 30+ page word doc of all commands and another one for all of the directories. It will be a while until I take my Linux+ exam! I told the instructor that I think I know more about the Linux system than Windows now. He's my scripting teacher too for the summer. Think this one's going to be rough...
The best explanation of Linux folders. Just great!
The best video explaining the filesystem, breaking it down. THANK YOU!
loved that gameboy on the background !
Thank you so much for explaining in detail, I have been learning for the past 1 year , I regularly follow Learn Linux TV....he always speaks about Linode, I wanted to learn a lot about Linux Distros. Thank you so much once again.
Nice work with the Linode gig Veronica!!!
Cool intro for someone new to Linux helps demystify any confusion. Loved the /etc pronunciation never heard it that way :) been using e.t.c.
Incredibly informative video. Wow. I am stunned at how little I know and knew and now feel my eyes opened... my Linux Mint machine is only for Ham radio use .. so very few programs other than Ham radio related programs will be required.. knowing the how and where is a huge help. Well lit videos with good audio and a confident presenter are key ! Well done !!
This is my 4th time watching. I absolutely love how you breakdown the file system. You make learning Linux very understandable for me.
I really appreciate this video. the basics explanation is enough to get started. Helps me think in the right direction when something happens. Thanks Veronica.
Great video, thanks. Also loved you addressing the elephant in the room around the pronunciation of /etc 😂🐘👍
... Thank you so much T_T .I had always been looking for THIS content somewhere about the filesystem but explained that way with important things added while in the stream just enough to keep looking for informations more deeply.
This is very well done. She’s a pro communicator!
Great to see you on this channel Veronica! I always love your videos, especially the ones where you demystify some big topics like this. 👍
The symbolic links information was great to learn, thank you!
Flexibility is not always your friend. Flexibility means there are multiple possible causes when something goes wrong, increasing complexity of troubleshooting. That said, good introduction!
Thanks for these videos really helpful
Proud linode customer. Love your services :).
I think this one is the best linux quality explanation on yt!!
You're explaining, but not where I was expecting...confused lol. But excellent job all the same :)
Amazing video! about the usr directory, some would call it "unix system resources", hence the name
Veronica is my new favorite Linode developer advocate
Well presented, used Linux for ages but nice to get clarification on some folder uses.
finally i found a video where is expleied all i man ALL linux filesystem directories not only some and /srv /run /sys skipped almost at all tutorials
I loved it. it's concise and fast paced, which is great for learning starter concepts in any field.
Woot! Bonus Veronica Explains
You made this for me, right? Thank you 🎉
I can not imagine anyone ever calling it etsy instead of E T C, there is a correct way of pronoucning it and it is the one I grew up using
Just learned a lot. Thank you Veronica!
That was very descriptive on the Linux file system!!
Love all these cameos on Linode!
Most (all?) of these directory names were inherited from Unix. I believe usr stood for Unix System Resources.
That might be apocryphal, it might just be a shortening of user.
@@lucyinchat That's my understanding as well- it didn't stand for anything other than "user" as in "user-land resources" as opposed to "system-land resources" found in the other directories.
i've noticed in the home folder, there is a .config folder where *most apps store their user-defined configuration files in their respective folders. however there are some like bash and x11 that dump their configs right in the user folder. is this some kind of legacy thing? it would be nice if all the programs obeyed the .config/ convention.
Yeah, the .config folder is related to the relatively new (as far as standard adoption goes) freedesktop XDG base directory specification. Not all programs follow freedesktop standards, and especially legacy applications sometimes don't adopt such changes for compatibility reasons.
"etc" is literally pronounced "ETCETERA" according to its creator Dennis Richie. It's not a mystery.
I like to use the -F option when I use the ls command. Using this option, it will classify each entry and indicate what kind of file it is.
At last, Bilal!!
This video was very concise thank you! I have been deploying sites with a recipe for a while and I wanted to learn more about linux.
I would really like to see proper mern stack deployment tutorials that utilize things like s3 comparable object storage and node balancers. Maybe something similar with Wordpress installs too would be pretty helpful. I feel like this would help me go from beginner to intermediate.
Excellent video! Thanks! Made it easy to get a good understanding of the file system.
Nice! You gave me GM vibes. Very informative.
Neat! Linode is doing a thing.
Thank you; it's very educational.
There's some flexibility and some legacy stuff which is fine, but where it gets messy from my point of view is in the /usr/local directory which starts its own duplicated structure, e.g. it can have bin, lib or etc subdirectories. I'm looking at a certain project that uses containers and one of them has configuration in /etc/php while another has it in /usr/local/etc/php. I never know where to look first.
this is one of the best Linux filesystem vids, wonder why she's not anymore in Linode
Greeting from Greece! very nice 🙏
I think it would be nice to see a video on the differences between ext2, ext3, and ext4. Including information about journaling would also be nice.
0jS
The Second Extended File System (ext2) is one of the oldest Linux file systems still available.
ext2 stores data in a standard directory and file hierarchy.
The maximum file size supported is 2 TB.
An ext2 volume can be up to 4 TB in size.
File names can be up to 255 characters long.
Linux users, groups, and permissions are supported.
ex2 does not use journaling (which is used in most modern file systems). As a result, ext2 takes a long time to recover if the system shuts down abruptly.
The Third Extended File System (ext3) is an updated version of ext2 that supports journaling.
Before committing a transaction to a storage device, the ext3 file system records the transaction to the journal and marks it as incomplete. After the disk transaction is complete, the file system marks the transaction as complete in the journal. By doing this, ext3 can keep track of the most recent file transactions and whether or not they were completed. This allows ext3 to recover much more quickly than ext2 in the event of an unclean system shutdown.
ext4 (most common) is the fourth generation file system in the ext file system family. ext4 includes all of the features found with ext2 and ext3 with the addition of the following features:
Support for file sizes up to 16 TB and disk sizes up to 1 exabyte (EB).
Supports up to four billion files in the file system.
Uses checksums to verify the integrity of the journal file itself.
Checksums help improve the overall reliability of the system because the journal file is the most heavily used file of the disk.
Good info, well presented. Thanks for the video!
Great video - thank you! Subscribed
Very nice explanation.. Thanks
Well explained! Keep it up ma'am 👍
Thanks for the tutorial!
Just what I needed!
Fantastic Video. Thank youuuuuuu !
A Users and Permissions Tutorial would be a great follow-up ...
Thank you for explaining in a way a moron like me can understand. This is how my mom used to talk to me when I was five, and I greatly appreciate it.
This was great and Infromative. Thank you very much.
Well Explained. Thank you for your efforts.
Ok, Veronica, I've finally subscribed 🤣
That was cool, very calm and clear. I would like a video on - If I have one Linux system on my home home network, can I access the word documents on my Network storage.
Yes just make the folder a share in Windows and mount it on Linux. You can google MULTIPLE methods.
Great explaination 😁
Great overview! Thank you!
That was a lot, but very well explained!!! Thank you.
Wow.. Wish I grew up with a Linux mom as a kid lol. That surely would have prevented micro$hit from collecting all my data.
Great explanation, thanks!
Awesome .. love it.. thanks alot
You work with COBOL? I love it. I will subscribe.
What COBOL do you work with?
/usr actually stands for Unix System Resources which perfectly makes sense.
Great Explanation!
Linux is awesome-and so is Veronica!
Very good explanations as /run seems kind of new and I rarely hear about /sys at all.
However /opt still seems to have a lot of use. The Brave browser places nearly all of its files there, as do some commercial VPNs, along with my current distro (Sparky Linux) placing a lot of its wallpapers there.
The video that I didn't know I needed. Watching while installing ubuntu22.04lts
I loved it really learned something
You pronounce etc right.
It's NOT "et cetera" since it's not a shortened word.
It's NOT "e.t.c." since it's not an abbreviation of three words.
So, yes, you got the right pronunciation of the word.
Awesome! Great tutorial thank you.
You are amazing....I have been looking for someone who will cut down linux into piece for me and I must say....today I found you and I am convinced you are sent. Thank you. I will subscribe and pls I hope you reply and answer my questions.
That was great! Thank you so much
Nice Presentation
Wow great explanation
Really well done! Thanks!