• GiuseppeAndTheYeti@midwest.social
    link
    fedilink
    English
    arrow-up
    10
    ·
    edit-2
    1 year ago

    Linux is so cool, but boggles my mind. I just simply don’t have enough time to really get a good grasp on the terminal and commands associated with it. It took me 3 days worth of attempts from 8am when my fiance leaves for work to 5pm to finally get a pi-hole set up in tandem with a self hosted VPN with wireguard. I just got it up and working on Wednesday this week. I know there’s a tutorial on the pi-hole website, but with no Linux terminology experience it was tough to know what I was supposed to be typing into the terminal. Several times I was typing:

    sudo -i
    cd /etc/wireguard
    umask 077
    name="client_name"
    echo [interface] > "name"
    

    I thought the name= line would tell the terminal that I wanted to replace all the following lines that “name” appeared in with “client_name” automatically. Then I figured out that they were just telling me that I needed to replace “name” in their terminal commands with what I wanted to name the associated files I was creating lol. It was a real man…I’m a fucking moron moment.

      • GiuseppeAndTheYeti@midwest.social
        link
        fedilink
        English
        arrow-up
        4
        ·
        1 year ago

        That makes total sense. I never really considered that I have been learning Windows over the past 20 years. It was just learning “computer”. And I really appreciate the compliment to my dedication on it! I’m really happy with the result and I learned more about linux/networking/LePotato/Pi-hole than I would have guessed at the beginning of this whole project. From battling with Wireguard server configuration…ufw and portforwarding…client configuration…back to ufw…IP configuration…keys…etc. Troubleshooting was a maze sometimes 😂. One more thing before I go.

        About the name thing. Say I type:

        name="Gerald"
        wg genkey > ${name}.key
        

        Would my output then be a key generated by Wireguard and named “Gerald.key”? Or would it need to be:

        wg genkey > "${name}.key"
        

        Or like in your example:

        wg genkey > $name.key
        

        I think I’m mostly getting caught up in when the quotations are necessary and when they’re not.

    • intensely_human@lemm.ee
      link
      fedilink
      English
      arrow-up
      4
      ·
      1 year ago

      The first progress is always the slowest.

      It won’t always take you an entire day to get anything done in Linux. That’s just the pace you’re at as a beginner. As your knowledge expands you move faster.