

https://rareese.com/posts/backblaze
Backblaze quietly stopped backing up .git, mounted remote storage and maybe more without showing the user what they’ve stopped backing up?
Dread it. Run from it. Enshitification arrives all the same.


https://rareese.com/posts/backblaze
Backblaze quietly stopped backing up .git, mounted remote storage and maybe more without showing the user what they’ve stopped backing up?
Dread it. Run from it. Enshitification arrives all the same.


Use a VPN, it’s not ideal but it’s secure.
When does your Server actually pull the repo though?


I have linkwarden set up for this.
On Android I share to the linkwarden app to save, on pc i use the Firefox addon.
Sure it’s fragmented but I’m already used to doing things different between mobile and pc anyways.
because all the other programs, protocol are working fine.
With the shown firewall configuration nothing but NTP should work? You’re dropping outgoing packets by default.
Update your nftables rulefile or use nft commands to update your firewall to the following:
# extract
chain OUT {
type filter hook output priority 0; policy drop;
udp dport 123 accept
limit rate 3/second log prefix "Nftables Blocked: OUT: "
}
chain IN {
type filter hook input priority 0; policy drop;
ct state established, related accept
limit rate 3/second log prefix "Nftables Blocked: IN: "
}
Blocked pakets will show up in the kernel log (dmesg/journalcl)
If you want more information on why it is blocked then enable nftrace for those packets
nft add rule inet/ip/ip6 tablename OUT udp dport 123 meta nftrace set 1
nft add rule inet/ip/ip6 tablename IN udp dport 123 meta nftrace set 1
nft monitor trace
Or
nft add rule inet/ip/ip6 tablename OUT meta nftrace set 1
Or maybe even
nft add rule inet/ip/ip6 tablename PREROUTING udp dport 123 meta nftrace set 1
Additionally you can use tcpdump -i <interface> to show network packets before they enter the firewall, there you should be able to tell what it’s a trying to do.


Successfully merging this pull request may close these issues.
None yet


Pro tip: If you’re using openwrt or other managed network components don’t forget to automatically back those up too. I almost had to reset my openwrt router and having to reconfigure that from scratch sucks.


If logging is down and there’s no one around to log it, is it really down?


That won’t work in most cases, all https traffic isn’t cached unless you mitm https which is a bad idea and not worth it.
Only cache updates those are worth it and most have a caching server option.


Infrastructure diagram? No! In this homelab we refer to the infrastructure hyperdodecahedron.
Valve’s testing indicates that Cyberpunk 2077 is Verified on Steam Deck. This game is fully functional on Steam Deck, and works great with the built-in controls and display.


Well, you can do that too by just marking the time range and repeating the appointment every day(/monday/…).


Just use multiple calendars?
I use Davx^5 and radicale to sync one (my own) calendar but you could also have multiple and distribute as needed.


I’m not a car expert or planning to be.
Anyways I’m going to build my first car by hand.


I have set up Tor secret services in the past to do this.
The service exposed the SSH port which could then be accessed from anywhere as long as you can connect to Tor.


I don’t know anything about Talos but can you try it in a VM with a test disk? That should answer all your questions and show you possible pitfalls.


for a homelab I don’t think it’s feasible to fully review the source code of everything you install
Here’s what you can actually do:
Sure you wont always catch ai slop this way but you don’t need to read a line of code to at least be reasonably sure your arr stack won’t get to the family photos.
Are you sure? While the cloud backups may not affect you the exclusions might, afaict no one even knows what exactly is excluded.
From the link:
Which strongly implies that there might be other important folders that aren’t backed up. (Without .git inside a git folder it is no longer a git repository)
I don’t use backblaze but from the outside it looks like they’re cutting costs by worsening the backups to reduce storage usage.