• 4 Posts
  • 49 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle

  • My favorite was finding out that bit locker was enabled on a forced update. The key was saved to the Microsoft account that was used to set up the lappy. Except, I didn’t use a Microsoft account because I’m not some tech marionette lemming who needs Gates hand shoved up my ass to tell me how to use my fucking computer. So I used a local account and disabled bitlocker via bios.

    Nothing was lost, but it was still a pain in the dick hole.



  • Look, I hear what you’re saying. And no offense intended, but people like you crow about things like fediverse not being supported… All the while, these applications are not supported by their own developers. And unfortunately, not unlike the majority of my experiences with Linux issues, every time I reach out for help I’m told the same old hat story, “this isn’t meant for beginners”.

    And the “pains that come with learning about self-hosting” are so unnecessary and in my opinion quite apparently avoidable.

    "Well, did you change the port number to this number that isn’t referenced anywhere in the documentation? It’s pretty obvious to anyone that’s been doing this for 20 years - who would be able to recognize that it’s a step everyone would need to do to deploy - so there’s literally no conceivable reason why that would be included…

    ###IN THE TUTORIAL

    …Maybe you shouldn’t be doing this."


  • Well, as someone who has been trying to launch a functioning Lemmy instance for nearly a year now, I can tell you, knowing not the slightest thing about funkwhale, that I would eat my hat if the documentation isn’t an all but absent shit show.

    My favorite part was learning that my domain was creating a completely new cert from lets encrypt with each deployment and no way of recovering them at all. So after 5 attempts, you have to wait 60 days (or whatever) for them to expire. That was awesome. I messaged the devs about that one and they literally said “we didn’t think of that”… 😑

    And so much shit goes tits up if you don’t deploy it perfectly the very first time. Don’t get me wrong, I love the fediverse, but JTFC I hate the fucking fediverse.





  • ZMonster@lemmy.worldtoAsklemmy@lemmy.mlWhy people gave up using linux?
    link
    fedilink
    arrow-up
    3
    arrow-down
    2
    ·
    edit-2
    8 months ago

    For me, a few things keep me from sticking with it. The community used to be a problem but it’s not as bad as it used to be. Seeking help online regarding anything related to network services are still rife with the “git gooder” useless fucks. Two months ago I was told, “you shouldn’t be doing this if you need a guide.” I was trying to deploy a Lemmy instance… Using the guide provided by Lemmy devs… That they recommended for beginners… FML with a curling iron…

    Another big one for me is access to solutions. I have never encountered a problem with windows that I couldn’t find a solution or at least an explanation for. But I frequently find issues with linux that I am apparently the first to ever experience.

    And lastly, it seems like not using a terminal at all to do completely normal things is even remotely possible. Powershell allows all kinds of things that would be otherwise burdensome or impossible, but none of those are required for use. On the flip side, it feels like everything I want to do in Linux tends to require me to copypasta a terminal command, open the terminal, and run. Why? Why is there no “control panel” style settings tools? Why is every setting scattered to the .conf fucking wind? My kingdom for a distro that I don’t have to nano my fucking way through.

    Software compatibility??? That is a problem I would love to have when it comes to trying to switch OSs. That would mean that everything else is already working and only MS products are acting up. Also… who switches to Linux but still requires MS Office??? Why does this person exist? Lol

    Anyway. Haven’t tried the switch in a few years and it seems like things have changed a lot in that time comparatively to the preceding years, so I may be a bit out of touch. But that’s why I quit last time. I would love to not need windows ever again. But my worst windows day is still better than my best Linux day.





  • Oh yes, I’ve been using the ansible method of deploying and I have it very close, I just can’t get SMTP working. I’ve set up an account with send grid but letsencrypt keeps telling me I’ve passed the limit for certs and every time I try to deploy it says I have to wait another week to try. I would remove certs but since I’ve already wiped those out, I don’t know what they are or how to find them.


  • ZMonster@lemmy.worldtolinuxmemes@lemmy.worldOh no ...
    link
    fedilink
    arrow-up
    22
    arrow-down
    3
    ·
    11 months ago

    Self hosting, at least for lemmy, is absolute trash. I have been told a few times when asking questions that, “it is expected that you are thoroughly experienced with Linux” to be able to follow the mediocre guides. And they are trash if you are a newbie.

    So people like me, who would love to use Lemmy for non Linux things, am posting almost entirely about Linux problems.


  • So frustrating. I got it working for about 10 minutes. Added users, authenticated them, made posts, uploaded banner, logged in and out many times. Then it just shut down. 502: bad gateway.

    I tried to rebuild it fresh and found out that the ansible method has you request a new letsencrypt cert EVERY TIME IT RUNS. And after 5 certs, it bans your domain for 168 hrs…

    So now I have to wait until next week to try again, and I’ll only have 5 chances at getting it right.

    I keep looking at the mastodon documentation and it’s so nice. It’s complete and thorough. I just wish a Lemmy dev or literally anyone would write a better guide.

    I’m just so fucking deflated right now. Thinking of buying a new domain just so I can keep testing.



  • Thanks for getting back to me!

    Okay, sendgrid gives me this:

    Configure your application with the settings below.
     	Server 	smtp.sendgrid.net
     	Ports 	25, 587 	(for unencrypted/TLS connections)
    		465  	(for SSL connections)
     	Username 	apikey
     	Password 	theApiKeyGeneratedBySendgrid
    

    I edited my lemmy.hjson file to this:

      email: {
        smtp_server: "smtp.sendgrid.net:25" #also tried ports 587 and 465 with no difference
        smtp_login: "apikey"
        smtp_password: "theApiKeyGeneratedBySendgrid"
        smtp_from_address: "noreply@myDomain"
        tls_type: "tls" #also tried "none" with no difference
      }
    

    The only change is that now when I select “forgot password” the button turns into a rotating arrow for a few seconds and then nothing. No emails in spam, nothing. Any ideas? I feel like I’m getting closer, and maybe I’m using the port wrong?