Lmao
Lmao
Telia internet, Lithuania. 19,90€ per month, unlimited.
940mbps down & 580mbps up. Unlimited internet, fiber. Telia is known as trusted company that does not care about torrents and most importantly - never throttles or provides lower speeds. This ISP delivers what is promised. <3
Also it’s Jellyfin&friends (radarr/sonarr stuff), so it’s all automated. Nearly 40TB of storage in raid5 and automatically downloads movies and some tv shows. And in 4k:) sometimes 100gb per movie.
A bit more “home user friendly” explanation:
Basically your home PC where you download “Linux ISOs”. But because you don’t like picking everything (movies/tv shows/etc, but not pc games) manually - you want to automate it.
“Automate” is called Jellyfin/Plex and underlaying microservices, such as Radarr, Sonarr, Prowlarr, QBittorrent, Bazarr and so on. You want this to be available 24/7 so it automatically adds content (movies/shows) to your “wishlist”, downloads when it becomes available and automatically appears in your Jellyfin/Plex server.
This is why you usually dedicate a server for this, which runs 24/7, usually at home. And I guess you call it “seedbox”.
Some other users set up VPN on their server, configure qbittorrent to use ONLY vpn connection (to avoid getting emails from their ISPs for pirated Linux ISOs lol) and call it “seedbox”. They first torrent anything to seedbox, then they download from it to their PC. In my case it’s not needed, since everything is automated and I access all my “Linux ISOs” from Jellyfin.
What is “seedsize”? 🤔
Missing at least these:
Nice list, but could have more. :)
Technically like this:
Anyone -tcp80-> vps -tcp80-> router -tcp80-> homeserver.
Exit of homeserver-originated traffic would be your router, not vps. Unless you specify custom routes in your router, then yeah, might be possible.
Also you don’t need EoIP tunnel at all, since it’s all in Layer4.
Some time ago I’ve done a “public IP implementation” on my VPS when I was on mobile network (no public IP).
Basically set up IPSec/Wireguard on VPS and connect your router to it. Then setup EoIP over VPN between VPS and your router. Then add EoIP tunnel to your LAN’s bridge in your router.
Then setup all ports forwarding (using iptables) from your VPS to your router on LAN, so if you connect to your VPS using tcp80, it will be simply forwarded (NAT’ed) to your router. Except tcp22, for SSH to your VPS obviously…
And now you have yet another public IP lol.
This is not something you asked, but might give you some ideas.
I’ve done something similar in Ireland, where ISP router was the only way to connect. Managed to setup everything on OpenWRT router, but it kept disconnecting, so I put openwrt router behind ISP router.
Interesting thing I found in ISP router is DMZ host - just point it to your own router and that’s it. Basically ISP router doesn’t exist lol.
Then you have absolute freedom with your router.
Isn’t “MAC NAT” you are after? I’ve seen Mikrotik has this feature to perform NAT for bridge devices. EDIT: no, since your ISP might check at DHCP leases and realise that you are cheating. Go with regular router instead.
Also regular router would be sufficient IMO. Also don’t forget to set static TTL value so your “ISP” doesn’t see that you have a router between your devices.
Also create MAC address and save it. Always change it before connecting - you will have less trouble.
IMO if you are asking such question - stick to Bitwarden cloud.
Passwords, at least to me, is something I don’t want to lose. I don’t trust myself I could provide a proper uptime & security, so I just use cloud version.
Yeah. I just wrote something similar. 😅 https://lemmy.world/comment/1330730
Here is the example docker-compose.yml
:
services:
caddy:
image: caddy
container_name: caddy
volumes:
- ./caddy/data:/data
- ./caddy/config:/config
- ./caddy/Caddyfile:/etc/caddy/Caddyfile
ports:
- 80:80/tcp
- 443:443/tcp
- 443:443/udp
restart: always
lemmy:
image: lemmy
container_name: lemmy
...
Before executing, create a new directory caddy
i working directory, then create new file Caddyfile
in it (lemmy
is a container name):
mydomain.com {
reverse_proxy lemmy:<lemmy_container_http_port>
encode zstd gzip
}
Then fix your UDP Buffer size, so it’s compatible with QUIC: https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes
And that’s it. tcp80, tcp443 and udp443 should be reachable from anywhere, as Caddy out of the box uses ACME to retrieve TLS certificates for your domain.
Give it a try. Honestly Traefik is shit for a simple load balancer. It’s more suited for large enterprises and kubernetes services, but it also has numerous issues, such as basic auth performance issues, lack of headers customization as well as in overall somewhat difficult configuration. Caddy makes it straightforward & simple, which is perfect for simple users who love to self-host.
I tried using Traefik in big corporation, 20+ different load balancer and reverse proxy (all with TLS termination) rules.
Caddy not just worked, but also worked faster and was WAY simplier to setup (using Caddyfile and reverse_proxy directives) than Traefik.
I get your point and I agree with you, but let me clarify what I was talking about.
The idea is a very small office where people don’t focus on working with computer, but rather use computer to help certain tasks, process payments, save something to MS Excel and so on. Those people don’t really need laptops, so stationary devices are perfect.
Just focus on what I wrote. I am the “admin” of such “small office”.
Intel nuc is perfect solution for me, the performance is more than enough and small size factor really takes the cake. I am really sad that NUC goes away and hope that soon there would be alternative. ✌️
I think user asked for a small factor PC, just like intel nuc. IMO intel nuc is a perfect PC for a work desktop. They can even mount on the back of the monitor - excellent feature. Not sure if any other brand has such feature.
I think the whole point of this is Brother being least annoying. You might save some buck with old HP printers, but i would prefer saving my sanity over bucks. 😅
Myself I have dual boot. For the sake of simplicity - let’s say I have 2 drives:
512gb ssd partitioned into 2 parts - 256 for Linux and 256 for Windows.
2TB ssd without partitions, but a plain BTRFS with zstd compression storage.
Guess what - There is WinBTRFS driver. I am also sharing the same Steam library (on 2TB ssd) between both OSes… 😅 Works like a charm. 👌👌👌
Try Arch Linux. First setup in VM, then on your computer. Been ~8 years on it. Tried to distrohop multiple times - still going back to it.
Plasma is awesome DE which requires bare minimum setup. plasma
package pulls basically everything - bluetooth, pipewire, sddm and so on. Then you just have to enable sddm/bluetooth services are you are done.
Fixing broken system is also very easy. :) Just try, don’t be shy!
It depends. Kind of prefer Flatpaks as they are always working as expected on any distro, but some of them are giving me just too much struggle.
For example, dealing with sandboxing, or especially VSS code app. Yes, there are instructions, but then I install Golang SDK via Flatpaks the hard way (using CLI) for Go development, then having a nightmare trying to setup everything in vss code. Then how tf should I access go binary within my host terminal?
On Arch Linux I just tend to install from official repos, while the rest of apps - from Flatpaks.
Personally I don’t like the way they are sandboxed, bit as long as it works I am fine.
What part is illegal? Are they sharing files on that instance and your instance re-hosts it?
From my understanding, discussions are legal, guides are legal, tips are legal, but actual files (aka “copyrighted content”) is illegal. There are no files shared there, links at maximum, but institutions should be after those content-sharing websites, not forums.
I am against this decision and I am happy that I am not part of admins team.