arrakark

joined 23 hours ago
[–] [email protected] 1 points 6 minutes ago

230C right on the iron lol

[–] [email protected] 2 points 26 minutes ago

Every retail worker's nightmare

[–] [email protected] 4 points 26 minutes ago (1 children)

I think it attracts a certain type of person to Lemmy in the first place; someone who would have probably used the original Reddit back in the day

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

That's awesome! I'm glad it mostly all works for you. I was looking for an OS for a TV-gaming setup sort of thing and it might be Bazzite now. I use Lutris/Wine for most of my games instead of Steam, I find it easier to troubleshoot. Also lol @ so many games with "2" in them haha.

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

Good catch! The POG is always in the comments.

[–] [email protected] 5 points 6 hours ago (5 children)

Hmm, I've never tried Bazzite. Have you tried Ubuntu/can you offer a comparison to it? I play only on Ubuntu and games compatibility is like 80% hit and 20% miss.

[–] [email protected] 5 points 7 hours ago

I agree. Sorry, English second language.

[–] [email protected] 3 points 7 hours ago

I checked out the full 120 list. There's a lot of courses on basic computer use, cyber security, estate planning, and investment. There's a Photoshop basics one. Also I think the 120 number is a bit inflated; there's a lot of duplicates.

[–] [email protected] 2 points 9 hours ago

The Soviets tried this before; not explicitly for power but for lighting.

[–] [email protected] 5 points 10 hours ago

Less power on the side of the host computer or the mouse?

[–] [email protected] 12 points 10 hours ago

Fucking Veggietales predicted this

[–] [email protected] 3 points 10 hours ago (1 children)

What do you mean? Have you never had one?

15
submitted 22 hours ago* (last edited 20 hours ago) by [email protected] to c/[email protected]
 

Hey; I just got a Lemmy instance up and running. I'd like to share some tips and things that helped me along the way.

I used the Ansible installer found here. Just following the instructions is pretty clear if you've ever set up a server before. I did have a couple of hickups though:

  • In the hosts config file, there's a like that says "[email protected]: replace with the destination you use to connect to your server via ssh."" There's a typo down below where there is no [email protected], it actually says example.com instead. Do replace it with your username and domain.
  • The customPostgresql.conf DOES need to be tuned for your server memory and CPU; the default did not work for me
  • When it says Configure a DNS A Record to point at your server's IP address. it means you need an IPv4 address for your server. Unfortunately, this means you can't use the cheapest Vultr tier at $2.5/mo, but you have to use the $3.5/mo instance at least.
  • I used the $5/mo Vultr instance instead of $3.5 because 512MiB of RAM caused my server to run out of memory and start killing processes. For some reason nginx would be the first to go.
  • Speaking of nginx; it was not configured to start on startup for some reason. A quick sudo systemctl enable nginx fixed that.
  • To diagnose the memory issue; I had to go docker ps | grep postgres, get the hash/ID for postgres, then do sudo docker logs 5115641fc0b2 to see the logs
  • To see the server logs, the /srv/lemmy/<domain name here> is where the docker-compose.yml file is, so if you cd into this dir, only then can you run docker compose logs -f lemmy or docker compose logs -f lemmy lemmy-ui pictrs to see the lemmy logs
  • Sometimes, pressing a button in the config menu doesn't do anything. Generally, it's a backend issue and not a frontend one, but the front-end does not tell you that anything has gone wrong. If you "Inspect" and open up the console in your browser, you'll see the server request done and you can see the response.
  • I was surprised to learn that you can't make a federated AND private Lemmy instance. I guess it makes sense? I kind of want to save on server bandwidth/resourse by being the only user though...
  • My ISO of Debain did not have a swap file or partitioned any swap space. Create a swap file and make it permanent through the following commands: sudo fallocate -l 1G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile and then edit sudo nano /etc/fstab and add the line /swapfile none swap sw 0 0. Without the swap Lemmy would crash the server.

Anyways, hope these notes help someone! If you've got any tips I'd love to hear.

8
submitted 22 hours ago* (last edited 20 hours ago) by [email protected] to c/[email protected]
 

Hey; I just got a Lemmy instance up and running. I'd like to share some tips and things that helped me along the way.

I used the Ansible installer found here. Just following the instructions is pretty clear if you've ever set up a server before. I did have a couple of hickups though:

  • In the hosts config file, there's a like that says "[email protected]: replace with the destination you use to connect to your server via ssh."" There's a typo down below where there is no [email protected], it actually says example.com instead. Do replace it with your username and domain.
  • The customPostgresql.conf DOES need to be tuned for your server memory and CPU; the default did not work for me
  • When it says Configure a DNS A Record to point at your server's IP address. it means you need an IPv4 address for your server. Unfortunately, this means you can't use the cheapest Vultr tier at $2.5/mo, but you have to use the $3.5/mo instance at least.
  • I used the $5/mo Vultr instance instead of $3.5 because 512MiB of RAM caused my server to run out of memory and start killing processes. For some reason nginx would be the first to go.
  • Speaking of nginx; it was not configured to start on startup for some reason. A quick sudo systemctl enable nginx fixed that.
  • To diagnose the memory issue; I had to go docker ps | grep postgres, get the hash/ID for postgres, then do sudo docker logs 5115641fc0b2 to see the logs
  • To see the server logs, the /srv/lemmy/<domain name here> is where the docker-compose.yml file is, so if you cd into this dir, only then can you run docker compose logs -f lemmy or docker compose logs -f lemmy lemmy-ui pictrs to see the lemmy logs
  • Sometimes, pressing a button in the config menu doesn't do anything. Generally, it's a backend issue and not a frontend one, but the front-end does not tell you that anything has gone wrong. If you "Inspect" and open up the console in your browser, you'll see the server request done and you can see the response.
  • I was surprised to learn that you can't make a federated AND private Lemmy instance. I guess it makes sense? I kind of want to save on server bandwidth/resourse by being the only user though...
  • My ISO of Debain did not have a swap file or partitioned any swap space. Create a swap file and make it permanent through the following commands: sudo fallocate -l 1G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile and then edit sudo nano /etc/fstab and add the line /swapfile none swap sw 0 0. Without the swap Lemmy would crash the server.

Anyways, hope these notes help someone! If you've got any tips I'd love to hear.

view more: next ›