What are the fun ways to learn and master the file management system in Linux ?
Submitted 3 weeks ago by LoveEspresso@cafe.coffee-break.cc to [deleted]
Comments
CannedYeet@lemmy.world 2 weeks ago
LoveEspresso@cafe.coffee-break.cc 2 weeks ago
Thanks. This link arrives just in time.
Onomatopoeia@lemmy.cafe 3 weeks ago
luthis@lemmy.nz 3 weeks ago
There’s the program that makes it 3d like in Jurassic park. 3dfsb
LoveEspresso@cafe.coffee-break.cc 3 weeks ago
Any link regarding this ?
luthis@lemmy.nz 2 weeks ago
It’s in the AUR if you use arch
Oisteink@lemmy.world 3 weeks ago
Linux from scratch.
Novocirab@feddit.org 3 weeks ago
LoveEspresso@cafe.coffee-break.cc 3 weeks ago
Why not MX ?
Novocirab@feddit.org 3 weeks ago
Haven’t tried MX. The point with installing Arch (even if you just do it half-way) is that you get to tinker with fdisk, fstab, chroot and other disk-related things for setting up your basic system, and the instructions for that are really good.
Forester@pawb.social 3 weeks ago
Play hacknet
frankenswine@lemmy.world 3 weeks ago
it’s spelled NetHack
LoveEspresso@cafe.coffee-break.cc 3 weeks ago
What sort of a game is that ?
A_Union_of_Kobolds@lemmy.world 3 weeks ago
Hacking simulator. Gives you a fake Unix-style computer with a terminal and window environment, you try to hack other computers and access a specific file etc
just_another_person@lemmy.world 3 weeks ago
Bunch of sites out there like: www.learncmd.io
nutcase2690@lemmy.dbzer0.com 3 weeks ago
hedders@fedia.io 2 weeks ago
You can think of it as basically "programs", "more programs", "stuff", "gubbins", "misc" and "other".
neidu3@sh.itjust.works 3 weeks ago
Are you referring to how to manipulate files, or more what the various files and folders do?
LoveEspresso@cafe.coffee-break.cc 3 weeks ago
Had no idea that it was such a huge topic :))
Let’s start off with something very simple : how to track a particular file existing in your system ?
urushitan@kakera.kintsugi.moe 3 weeks ago
find / -iname "filename" 2>/dev/nullFind a file by (case insensitive) file name. Search the whole filesystem (/). Pipe errors to /dev/null (since it will output permission denied errors trying access directories you don’t have access to, among other things)