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!

    • sentinel1980
      link
      fedilink
      12 years ago

      @craigevil @Father_Redbeard

      Hi I use Ranger in BASH terminal a lot, let me weigh in on how very useful it is and how easy to customize to my needs it has been. There is a similar app written in C++ But I couldn’t script it as easy. Until I found Ranger I also used MC as my workhorse.

  • Presi300
    link
    fedilink
    English
    92 years ago

    Use the fish shell… No, seriously it’s autocomplete and tab functionality makes browsing directories through the terminal so much easier

  • @[email protected]
    link
    fedilink
    42 years ago

    Not to be “that guy”, but you can use a gui file manager to access your files the same way you do so in windows. Most of them support ssh keys as well. If you’d like to check out the cli stuff, nnn or ranger can be useful. Something like midnight as abckup is good too. Definitely install fzf on both your vps and local machine. You can also go over board and run xorg over ssh and run a small window manager, maybe awesomewm or even xfce (not that small but works fine).

    • @[email protected]OP
      link
      fedilink
      32 years ago

      I was speaking more towards my VPS , which of course has no OS GUI. In Unraid I do use the very nice GUI regularly though.

      • nlm
        link
        fedilink
        32 years ago

        Midnight commander is a pretty nice alternative!

      • @[email protected]
        link
        fedilink
        32 years ago

        There are tools like sshfs that let you mount remote directories as if they’re local. Most of the time I tend to use nnn with some of the little extra bits you can find in the docs like cd to last directory on quit and multi-colored tabs etc.

  • @[email protected]
    link
    fedilink
    162 years ago

    Not strictly file browsing advice, but you can quickly search for previously issued commands by hitting ctrl-r and starting to type. (and you can press it again to search further back)

  • swartze
    link
    fedilink
    32 years ago

    Often I don’t find myself navigating directories when I reach for my file manager, but looking for something. Learning to use find or fzf gets rid of a fair amount of shuffling through your file system. Also, don’t be afraid to type out full paths when performing copy or move commands. There isn’t any reason to go to /home/documents/12/directories/deep when you can simply put the path in your ls or other command. And of course, tab complete is your friend (/ho[tab}/doc[tab]/12/[tab]/deep, etc…)

  • @[email protected]
    link
    fedilink
    22 years 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.

  • Nightwatch Admin
    link
    fedilink
    202 years ago

    I am old and I like ‘mc’ (Midnight Commander) a lot when doing many/complex file operations

  • @[email protected]
    link
    fedilink
    702 years ago

    I think it’s just a matter of getting used to it. I had the same issue at first and the more I used the command line, the more I started to prefer it to GUI apps for certain tasks.

    A couple things that I use all the time:

    • tab completion is incredible
    • cd - goes back to the last directory you were in (useful for bouncing back and forth between locations)
    • !$ means the last argument. So if you ls ~/Downloads and then decide you want to go there, you can cd !$.
    • :h removes the last piece of a path. So I can do vim /etc/network/interfaces and then cd !$:h will take me to /etc/network.
  • @[email protected]
    link
    fedilink
    52 years ago

    Look into your shell’s tab completion abilities, the find command, and fzf. There’s also stuff like midnight commander but I find that to be a little overkill for my tastes.

  • lckdscl [they/them]
    link
    fedilink
    English
    32 years ago

    On my personal computer, zoxide, fzf, fzf tab completion allow me to jump around anywhere quite easily, I still use exa/cd for the most part. Look into this if you need more visualization. I still use a GUI file browser from time to time.

    Oh my server though, I still use the default shell, so yes I just memorize where things are. But a trick is to allow for a large history file, and I use the command history search (Ctrl-R) because I tend to run the same things constantly. My setup helps too, I run things in docker, and have a data and a config directory, things go into each accordingly, and I bind mount those directories instead of using volumes.

    If you edit config files a lot, in vim or nvim, :bro old will give you a list of files you recently edited and you can jump to them by inputting a number.

    • @[email protected]OP
      link
      fedilink
      52 years ago

      Yeah I’ve been messing with that. I like that you can limit how deep you want to go, like if you just want to see folders but not the files within, for example.

  • wuphysics87
    link
    fedilink
    32 years ago

    I’m surprised I didn’t see fasd fasd (pronounced ‘fast’) uses ‘frecency’ (frequency + recently) in order to jump to or open your most frecent documents or directories. A dumber version is z which works as a supliment to cd