this post was submitted on 28 Aug 2023
184 points (97.9% liked)

Linux

48330 readers
627 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I've just started my Linux journey earlier this year. As a goal to learn how to self-host applications and services that will allow me to take back some control of my data. Immich instead of Google Photos, for example.

I have a local server running Unraid and 22 docker containers now. And then a VPS (Ubuntu 20.04 LTS) running two apps. I've learned a ton but one thing I can't seem to wrap my brain around is navigation through the file structure using only terminal. My crutch has been to open a SFTP session in Cyberduck to the same device I'm SSH'd to and try to figure things out that way. I know enough to change directories, make directories, using Tree to show the file structure at different levels of depth. But I feel like I'm missing some efficient way to find my way to files and folders I need to get to. Or are y'all just memorizing it and know where everything is by now?

I come from a Windows background and even then I sometimes catch myself checking via explorer where a directory is instead of using CMD or PowerShell to find it.

I'd love to hear any tips or tricks!

EDIT: I've been using Termius because they have a great Android client, but I wasn't about to pay $5/mo for sync. Especially to sync to someone else's cloud. Which led me to Tabby, which I understand has quite a large footprint resource-wise. But I guess I either don't know enough yet to be mad about it or it hasn't impacted any of my systems negatively yet. No Android client though, but you can bring your own sync solution and it has a handy little shortcut to SFTP to the current directory you're in. Between that and stuff like ranger, it's made it so much easier to learn my way around!

(page 3) 37 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 1 year ago (1 children)

if i’m not really sure what the contents of a given folder are, and i want to look into files as i go, i’ll often just open vim in file explorer mode

[–] [email protected] 1 points 1 year ago (1 children)

Pardon the ignorant question, but can you do that with a headless server as your target? I've not used Vim at all.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

Yes, vim is a command line program.

If you look up "Cli file manager", there's a bunch that you can check out and try.

Tree, grep, and find are usually my three go-tos. Tree to get a general view of a ton of nested files/folders, then if I know a name I'll use find . -name "filename", if I know a bit of contents, i'll use `grep -re "content string" to find files containing that.

I recommend reading the man pages because you can often chain together these in fairly powerful ways.

[–] [email protected] 2 points 1 year ago

Awesome! You've given me some reading material. Thanks.

[–] [email protected] 1 points 1 year ago

Depends on your workflow and file structure, but nvim with nvchad works great for coding. I also sometimes use ranger to better see file structures.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

Take some bash tutorials on the internet there are loads of them

Learn rsync, it's the best!

I've been a 20 year Linux desktop and server user. I spent my time either in an IDE for development, on a browser, or in shells. Last time I touched a graphical file manager has been years ago, if not decades. Cli shells are so so so so so much more efficient in getting shit done than GUI programs it's not even funny.

Welcome to the dark side, we have cookies!

If you use Linux desktop (you should, it rocks, use KDE!) then install yakuake! It's the friggin best awesome thing ever! F12 and 25 shells drop down on my screen. F12 and I got my browser back.

[–] [email protected] 1 points 1 year ago (1 children)

I just finished buttoning up my new PC build and installed Linux on it, actually. Pop!_OS though because I like the layout and it's very un-Windows-like which is what I was after. I'm excited to learn more!

[–] [email protected] 1 points 1 year ago (1 children)

Still, get yakuake. It's probably my favorite apo

[–] [email protected] 1 points 1 year ago

I will! Looks slick. Thanks for the input.

load more comments
view more: ‹ prev next ›