- Joined
- Apr 1, 2024
I have a strong urge to take this and put Terry Davis quotes in about using the command line.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
i still remember the days where it often was a pain to get some games to work, and a nightmare for others.It's crazy just how much progress has been made in only 6 years.
Looks like a good counterpart to 'sl'.
I have a strong urge to take this and put Terry Davis quotes in about using the command line.
A reinstall of the libpython stdlib fixed it. Thank you kindly for your assistance.The usual search for this is the Debian package search page
"Search the contents of packages"
guess the module has a file named "cPython.py" and select "packages that contain files whose names contain the keyword"
and get:
Now, this was for Bookworm so you'll need to search for your version to see the appropriate package name.
/usr/lib/python3.11/cProfile.py libpython3.11-stdlib
We're so close to the year of the linux desktopi still remember the days where it often was a pain to get some games to work, and a nightmare for others.
proton is the holy grail, one of the biggest issues solved easily without hassle. wine walked so proton could run.
now we've got dedicated linux gaming devices like the steam deck, which wouldn't be what it is without it.
and with lenovo potentially using steamos and valve supporting other devices apart from the deck, the future of linux gaming is bright.
Just one more year guys...We're so close to the year of the linux desktop
2004 was the year of the Linux desktop, so we're actually getting further and further away from it as time passes.We're so close to the year of the linux desktop
This is a babbys first networking course thing so I'll explain why this wouldn't work instead of just saying 'rtfm lol'Since Linux servers can have more then one IP address, is it possible for me to assign my WAN IP address to my server? would that mean that devices on the local network would talk to it directly when accessing sites hosted at my home ip address, or would that break a bunch of things or do nothing?
Ah ok that makes sense. what if instead of using 192.168.x.x for my network I was to use the first three parts of my wan IP address, then assign my actual wan ip address to my server? Tho I expect that would break a lot of things, most noteably peer to peer communication with other people my ISP has that ip range assigned to.Even if your server advertises that it has your WAN IP address, that IP address sits outside of your local network. Your local devices will never try to reach it over the local network, they will always try to go through your router first.
You wouldn't be able to. Your home router needs to be on at least two unique networks. One network for your local network, which splits out from the ethernet ports at the back of your router, and another for the GPON/Coax/DSL/IPAC connection.Ah ok that makes sense. what if instead of using 192.168.x.x for my network I was to use the first three parts of my wan IP address, then assign my actual wan ip address to my server? Tho I expect that would break a lot of things, most noteably peer to peer communication with other people my ISP has that ip range assigned to.
Network Interface Description
192.168.1.0/24 eth0 Connection to the local network.
192.168.1.1/32 eth0 Loopback route for our own IP on the local network.
11.143.170.0/24 en0 Connection to the ISP network.
11.143.170.45/32 en0 Loopback route for our own IP on the ISP network.
By that point you're looking at port forwarding, or more technically speaking, network address translation. If it comes from an external address, send it to local address X at port Y, anyone from the outside only sees your ISP's IP and it's up to you to bind your local machines and services to it. In case of websites, owning a domain name where you can create subdomains also gives more flexibility, the server receives a request from a specific subdomain and you decide what's meant to be served under it.Since Linux servers can have more then one IP address, is it possible for me to assign my WAN IP address to my server? would that mean that devices on the local network would talk to it directly when accessing sites hosted at my home ip address, or would that break a bunch of things or do nothing?
I am 99% certain this whole post is rubbish. If there's multiple possible entries in your routing, it'll choose the most specific one. Hence why 192.168.0.0/24 will always get chosen over 0.0.0.0/0, which covers everything.Your router's routing table can only contain unique entries. If your WAN network was the same as your LAN network then your router would just scream in confusion and refuse to route packets for one of the networks.
I said unique entries. 192.168.1.0/27 and 192.168.1.32/28 are unique, non-overlapping subnets. Do you see comcast handing out ipv4 subnets to rando subscribers?I am 99% certain this whole post is rubbish. If there's multiple possible entries in your routing, it'll choose the most specific one. Hence why 192.168.0.0/24 will always get chosen over 0.0.0.0/0, which covers everything.
If your ISP were to assign you a subnet rather than a single IP, there's no reason why you couldn't use that for everything and avoid RFC1918 addresses entirely. This is how IPv6 works, after all.
I don't know anything about Comcast, but I know of at least two UK ISPs that will give out IPv4 subnets if you pay for it.Do you see comcast handing out ipv4 subnets to rando subscribers?
If you pay for it. Comcast requires you to have "Business Class" to get even a single static IPv4 address, and charges an arm and a leg for it. Not relevant to our discussion of home port-forwarding.I don't know anything about Comcast, but I know of at least two UK ISPs that will give out IPv4 subnets if you pay for it.
What exactly are you trying to do? It sounds like you want to put your server into a DMZ. If the concern is not having a static IP, you can use DuckDNS as a free Dynamic DNS provider. I have a domain with Name cheap and use their dynamic DNS to point a subdomain to my house, and then use cname to point other subdomains to that first domain. I run Caddy on my server to provide SSL and reverse proxy to all the services running out of my house (Immich, mesh central, etc.) which gives me the benefit of not needing to port forward more than 443 for https.Ah ok that makes sense. what if instead of using 192.168.x.x for my network I was to use the first three parts of my wan IP address, then assign my actual wan ip address to my server? Tho I expect that would break a lot of things, most noteably peer to peer communication with other people my ISP has that ip range assigned to.