sxt

joined 2 years ago
[–] sxt 3 points 6 days ago

Would live in the dongers 👍

[–] sxt 2 points 1 week ago

Lmfao, common L for HP

[–] sxt 36 points 1 week ago* (last edited 1 week ago) (4 children)

Space consideration is a bit more obvious with the seat though

How pronounced the difference is feels like it varies but the rounded ones are frequently just way too tiny.

[–] sxt 1 points 2 weeks ago

Yeah, I can use it normally for games. Bottles just seems to not want to. My issue may be slightly different then.

[–] sxt 2 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

Have the same issue due to my vfio setup https://github.com/bottlesdevs/Bottles/issues/3270 No activity since my comment. My setup has an Intel CPU with integrated graphics, an AMD GPU for the host, and an Nvidia GPU for my vfio setup with no drivers loaded. Bottles just won't use the amd card so I can't really use it for any apps that need a GPU. I guess it just has some really weak logic for deciding which one it should pick.

Hopefully they just give us an option to let us choose which device it should use. Maybe we could convince them to do it with the cosmic rewrite they've talked about.

[–] sxt 3 points 4 weeks ago

Was gonna say. cutefunny.art raises some concerns.

[–] sxt 4 points 1 month ago (1 children)

I've had some luck with vesktop's streaming but it just doesn't work for me half the time and I have to fully restart it to fix it. I'll go through the flow and click to start streaming and nothing will happen. With the latest update for regular discord it will always stream but has had issues with switching windows/audio not always working.

Guess we'll get there eventually.

[–] sxt 2 points 1 month ago* (last edited 1 month ago)

Seems imminent https://gitlab.freedesktop.org/wayland/wayland-protocols/-/merge_requests/14

Basically waiting on some implementations to get ready to merge if I'm reading it right.

[–] sxt 6 points 1 month ago (1 children)

The right image isn't even real

[–] sxt 1 points 1 month ago

Continuing to not go out since I don't want to add to the pile of unedited vacation photos from six months ago

[–] sxt 10 points 2 months ago

That would definitely make sense for it's own video but I could see them wanting to focus on just SteamOS if they plan on having it be a regular stat when they do benchmarks

46
submitted 5 months ago* (last edited 5 months ago) by sxt to c/[email protected]
 

Just got it! Super excited

11
submitted 1 year ago* (last edited 1 year ago) by sxt to c/selfhosted
 

I am attempting to follow this https://www.procustodibus.com/blog/2022/09/wireguard-port-forward-from-internet to forward traffic from a few ports on a public oracle vps to other ports on my local server through a wireguard connection. Currently I am doing this using rinetd, but I was looking for a more normal way of forwarding traffic. (Also looking to forward UDP traffic at some point.)

After stopping rinetd, adding these rules to the public server's wg config

# packet forwarding
PreUp = sysctl -w net.ipv4.ip_forward=1

# port forwarding
PreUp = iptables -t nat -A PREROUTING -i ens3 -p tcp --dport 443 -j DNAT --to-destination 10.144.65.2:8443
PostDown = iptables -t nat -D PREROUTING -i ens3 -p tcp --dport 443 -j DNAT --to-destination 10.144.65.2:8443

# packet masquerading
PreUp = iptables -t nat -A POSTROUTING -o wg0 -j MASQUERADE
PostDown = iptables -t nat -D POSTROUTING -o wg0 -j MASQUERADE

and restarting the wg connection, I'm seeing traffic on the ens3 port but none entering wg0 via tcpdump. I feel like I probably have conflicting iptables rules saved https://pastebin.com/0eNwhNKM but I don't really know enough about whats going on there to fix it. I feel like its probably the wireguard-*-rule ones (created by pivpn possibly?) but I'm not sure.

Edit way later: Ended up just using rinetd for the udp connections. Ubuntu doesn't include the latest version here https://github.com/samhocevar/rinetd which is able to do UDP connections. The docker container RxBrad suggested uses that version within the docker container to make the redirections so it will be roughly equivalent.

view more: next ›