I didn’t get to spend as much time tinkering and learning this week, but I still learned some new things!

  1. Wireguard is great! I had been using OpenVPN because when I initially set up my machine, my VPN had a bug with Wireguard. I was setting up a raspberry pi today for some more tinkering, and I decided to try Wireguard to see if the bug was fixed. Not only is it fixed, but Wireguard is much easier to work with. Not hating on OpenVPN, but I’ll definitely be preferring Wireguard going forward.
  2. Proper use of find, particularly with regex. This is ongoing. I’ve been using find for awhile, but not with full understanding of it’s options and syntax. I’m starting to get a better understanding of how to use it to find and manipulate the files I’m looking for. One of the biggest things that’s tripping me up with find and regex is designating the path.
  3. How to set up a new user. This was interesting. I already knew the basics, adduser -m username, sudo passwd username, but what I didn’t know anything about was --skel for copying over the skeleton shell config files. I didn’t even know the skeleton config files existed.
  4. The shell prompt can be customized. This was interesting. I was setting up a non root user on a vps that I have, and after creating the user, all I had was the $ prompt. No user@host, and no working directory. After some reading I found that adding PS1='$(whoami)@$(hostname):$(pwd)$ ' to ~/.profile will show a more traditional user@host:working/directory$ prompt. I’m sure this is not the only way to do this, and may not be the best way to do it, but based on my limited knowledge, it is the way that I’m currently doing it on my vps.
  • Corr
    arrow-up
    24
    arrow-down
    0
    ·
    9 months ago
    link
    fedilink

    As someone also starting to get into Linux I appreciate these posts

    • harsh3466OPEnglish
      arrow-up
      5
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      I’m glad they’re useful for you!

  • om1k
    arrow-up
    17
    arrow-down
    1
    ·
    9 months ago
    link
    fedilink

    check fd-find, “A simple, fast and user-friendly alternative to ‘find’”. Really good trust me

    • harsh3466OPEnglish
      arrow-up
      2
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      I will look into that. Thank you!

  • just_another_person
    arrow-up
    14
    arrow-down
    0
    ·
    9 months ago
    link
    fedilink

    Check out using something like oh-my-zsh if you want a deeply configurable shell experience that isn’t super far off the stock bash path.

    • /home/pineapplelover
      arrow-up
      17
      arrow-down
      1
      ·
      9 months ago
      edit-2
      9 months ago
      link
      fedilink

      I kinda like fish tbh. The dracula theme is much better and more features than stock zsh

    • Pumpkin EscobarEnglish
      arrow-up
      6
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      There’s also oh-my-posh, which was originally a powershell prompt, but it was rewritten as a go application that works on (I think all) mainstream shells.

    • harsh3466OPEnglish
      arrow-up
      1
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      I’ve heard of oh-my-zsh, but I haven’t wanted to deviate off of bash until I have a good grasp on bash first.

      • just_another_person
        arrow-up
        1
        arrow-down
        0
        ·
        9 months ago
        link
        fedilink

        The project aims to make Bash vs Zsh as similar as possible. There is little difference except for customization. Switching to Fish or Spaceship will jump that barrier.

        • harsh3466OPEnglish
          arrow-up
          1
          arrow-down
          0
          ·
          9 months ago
          link
          fedilink

          Interesting. I’ll give it a look.

  • stanka
    arrow-up
    14
    arrow-down
    0
    ·
    9 months ago
    link
    fedilink

    If you code adding the current branch to your shell prompt will change your world.

    Also, if you are getting good use out of find, you should learn to pipe the output to GNU parallel. Put those cores to work!

    • neo (he/him)English
      arrow-up
      2
      arrow-down
      0
      ·
      9 months ago
      edit-2
      9 months ago
      link
      fedilink

      Depending on your distribution it may also just be called fd in the package manager

  • PlexSheep
    arrow-up
    14
    arrow-down
    1
    ·
    9 months ago
    link
    fedilink

    My advice: make your home directory a git directory. You can ignore everything in a gitignore, then make exceptions, like your vim configs, shell configay and so on. You have version control and on a new host you can just git clone and bam, you have your usual setup.

      • cadekat
        arrow-up
        5
        arrow-down
        0
        ·
        9 months ago
        link
        fedilink

        Yes, this. Don’t put your whole home directory in git.

    • harsh3466OPEnglish
      arrow-up
      1
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      I’ve never used git to publish/make myself a repo before. That’s something I’ve been meaning to learn but haven’t quite gotten there yet. However, with the amount of tinkering, and breaking I’ve been doing, I think I’ll move it up on my priority list.

      I’ve also got shell scripts I’ve been writing and tinkering with and having proper version control (versus script, script.copy, script.copy.bak) would also be nice.

      • PlexSheep
        arrow-up
        2
        arrow-down
        0
        ·
        9 months ago
        link
        fedilink

        It’s not actually hard if you know some high level basics. I recommend to use a git GUI or tui, makes things even easier. I personally use lazygit.

        • harsh3466OPEnglish
          arrow-up
          1
          arrow-down
          0
          ·
          9 months ago
          link
          fedilink

          I’m diving in. I set up gitea on my server. Now I need to learn how to use git with gitea.

          • PlexSheep
            arrow-up
            2
            arrow-down
            0
            ·
            9 months ago
            link
            fedilink

            Amazing. I’ve switched to forgejo, thr gitea projects are amazing and I’m awaiting federation.

    • harsh3466OPEnglish
      arrow-up
      2
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      Ohhh. Thank you. I will give that a read through!

  • inspxtr
    arrow-up
    5
    arrow-down
    0
    ·
    9 months ago
    link
    fedilink

    re 1: out of curiosity, do you encounter dnsleaks when using wireguard?

    re 4: you can also check out https://starship.rs/, which helps configure shell prompt very intuitively with a toml file.

    • bizdelnick
      arrow-up
      1
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      DNS leaks don’t depend on what VPN protocol you use. They only depend on how you configure your DNS resolver and routing.

    • harsh3466OPEnglish
      arrow-up
      1
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      I didn’t k ow there were dms leak issues. I will investigate. If I’m finding that I’ll likely switch back to openvpn

  • bizdelnick
    arrow-up
    4
    arrow-down
    0
    ·
    9 months ago
    link
    fedilink

    Regex is not the most oftenly used feature of find. Have you already learned how to use -exec, -delete, -print0 together with xargs?

    • harsh3466OPEnglish
      arrow-up
      1
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      That’s what I’m finding. I’m not certain I need regex for what I want to accomplish with find. I’m reorganizing my media libraries, and I have a mix of mp4 and mkv files. I want to be able to find all mkv and mp4 files and move them using regex like '.+\.(mp4|mkv)'

      I have learned how to use find with -exec and -delete, but I haven’t gotten to -print0 or xargs yet.

      • bizdelnick
        arrow-up
        2
        arrow-down
        0
        ·
        9 months ago
        link
        fedilink

        You don’t need a regex for that, you can write \( -name '*.mp4' -o -name '*.mkv' \).

        • harsh3466OPEnglish
          arrow-up
          1
          arrow-down
          0
          ·
          9 months ago
          link
          fedilink

          Thank you! That worked perfectly. I had to do some digging through the man page to find that -o flag!

  • Pantherina
    arrow-up
    2
    arrow-down
    0
    ·
    9 months ago
    link
    fedilink

    I really need to learn find.

    How is the rust replacement?

    • drndramrndra
      arrow-up
      3
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      How is the rust replacement?

      fd > find. It’s a lot faster, and I find the syntax to be better.

    • harsh3466OPEnglish
      arrow-up
      1
      arrow-down
      0
      ·
      9 months ago
      link
      fedilink

      I’m not familiar with the rust replacement