Salta al contenuto principale



GE-Proton10-5 Released


Nothing too major here, mostly just an update to upstream's code since it's been about 30 days.
- Wine-wayland patches have been updated/rebased, should fix some nvidia crashes, and no longer need this mesa patch: gitlab.freedesktop.org/mesa/me…
- patches added to help with Wuthering Waves.
- protonfixes updated
- protonfix added for Artificial Academy 2
- protonfix added for Persona 4 Arena Ultimax
- protonfix added for Anno 1800 from Ubisoft Store
- protonfix added for Anno 1800


Germany seeks Israeli partnership on cyber defence


Germany is aiming to establish a joint German-Israeli cyber research centre and deepen collaboration between the two countries' intelligence and security agencies, German Interior Minister Alexander Dobrindt has said.

According to Bild, Dobrindt outlined a five-point plan aimed at establishing what he called a "Cyber Dome", as part of Germany's cyber defence strategy.

Earlier on Sunday, Bavarian Prime Minister Markus Soeder called for the acquisition of 2,000 interceptor missiles to equip Germany with an "Iron Dome" system similar to Israel's short-range missile defence technology.

in reply to geneva_convenience

Seems like an extreme security risk and an effective way to get stabbed in the back.
in reply to EndlessNightmare

That's the point. Make the country as dependant on Israel as possible so it cannot afford to let Israel fall.


Germany seeks Israeli partnership on cyber defence


Germany is aiming to establish a joint German-Israeli cyber research centre and deepen collaboration between the two countries' intelligence and security agencies, German Interior Minister Alexander Dobrindt has said.

According to Bild, Dobrindt outlined a five-point plan aimed at establishing what he called a "Cyber Dome", as part of Germany's cyber defence strategy.

Earlier on Sunday, Bavarian Prime Minister Markus Soeder called for the acquisition of 2,000 interceptor missiles to equip Germany with an "Iron Dome" system similar to Israel's short-range missile defence technology.


in reply to FilthyShrooms

Clover lawns are so cool, nice to lie on and good for the bees. Still some dimwits decide to use herbicides on them.

Well, not on my lawn!



Putin Says Russia to Seek Defense Cuts; How Much Depends on War


This is a strong indication that Russians expect the war will be over this year.

archive.ph/53NK0




British MPs invite deposed shah's son to promote Iran regime change in parliament


According to an invitation to the event seen by MEE, Pahlavi is set to brief MPs and peers on "the ongoing situation in Iran and his plan for the collapse of the current regime and for a stable transition to a secular democracy".

Akehurst told MEE: "It is for the Iranian people to decide what type of government they want, but clearly MPs are going to be interested in hearing what different opposition voices have got to say about the future of such an important country."

As a staunch defender of a US-backed monarchy that he hopes to bring back to Iran, he has made several visits to Israel, taken photographs with Prime Minister Benjamin Netanyahu and cast himself as the only viable leader of a modern Iran if the Islamic Republic collapses.



AI to make us more private?


Just listened to Naomi Brockwell talk about how AI is basically the perfect surveillance tool now.

Her take is very interesting: what if we could actually use AI against that?

Like instead of trying to stay hidden (which honestly feels impossible these days), what if AI could generate tons of fake, realistic data about us? Flood the system with so much artificial nonsense that our real profiles basically disappear in the noise.

Imagine thousands of AI versions of me browsing random sites, faking interests, triggering ads, making fake patterns. Wouldn’t that mess with the profiling systems?

How could this be achieved?

in reply to dodgeflailimpose

This is a dangerous proposition.

When the dictatorship comes after you, they're not concerned about the whole of every article that was written about you All they care about are the things they see as incriminating.

You could literally take a spell check dictionary list, pull three words out of the list at random and feed it into a ollama asking for a story with your name that included the three words as major points in the story.

Even on a relatively old video card, you could probably crap out three stories a minute. Have it write them in HTML and publish the site map into major search engines on a regular basis.

EDIT: OK this was too fun not to do it real quick!

~ cat generate.py

import random
import requests
import json
import time
from datetime import datetime

ollama_url = "http://127.1:11434/api/generate"
wordlist_file = "words.txt"

with open(wordlist_file, 'r') as file:
    words = [line.strip() for line in file if line.strip()]

selected_words = random.sample(words, 3)
theme = ", ".join(selected_words)

prompt = f"Write a short, imaginative story about a person named Rumba using these three theme words: {theme}. The first word is their super power, the second word is their kyptonite, the third word is the name of their adversary.  Return only the story as HTML content ready to be saved and viewed in a browser."

response = requests.post(
    ollama_url,
    headers={"Content-Type": "application/json"},
    data=json.dumps({"model": "llama3.2","prompt": prompt})
)

story_html = ""
for line in response.iter_lines(decode_unicode=True):
    if line.strip():
        try:
            chunk = json.loads(line)
            story_html += chunk.get("response", "")
        except json.JSONDecodeError as e:
            print(f"JSON decode error: {e}")



timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
filename = f"story_{timestamp}.html"

with open(filename, "w", encoding="utf-8") as file:
    file.write(story_html)

print(f"Story saved as {filename}")

~ cat story_20250630_130846.html
<!DOCTYPE html>
<html>
<head>
<title>Rumba's Urban Adventure</title>
<meta charset="UTF-8">
<style>
body {font-family: Arial, sans-serif;}
</style>
</head>
<body>

<h1>Rumba's Urban Adventure</h1>

<br>Rumba was a master of <b>slangs</b>, able to effortlessly weave in and out of conversations with ease. Her superpower allowed her to manipulate language itself, bending words to her will. With a flick of her wrist, she could turn a phrase into a spell.<br>

<br>But Rumba's greatest weakness was her love of <b>bungos</b>. The more she indulged in these sweet treats, the more her powers wavered. She would often find herself lost in thought, her mind clouded by the sugary rush of bungos. Her enemies knew this vulnerability all too well.<br>

<br>Enter <b>Carbarn</b>, a villainous mastermind with a personal vendetta against Rumba. Carbarn had spent years studying the art of linguistic manipulation, and he was determined to exploit Rumba's weakness for his own gain. With a wave of his hand, he summoned a cloud of bungos, sending Rumba stumbling.<br>

<br>But Rumba refused to give up. She focused her mind, channeling the power of slangs into a counterattack. The air was filled with words, swirling and eddying as she battled Carbarn's minions. In the end, it was just Rumba and Carbarn face-to-face.<br>

<br>The two enemies clashed in a spectacular display of linguistic fury. Words flew back and forth, each one landing with precision and deadliness. But Rumba had one final trick up her sleeve - a bungo-free zone.<br>

<br>With a burst of creative energy, Rumba created a bubble of pure slangs around herself, shielding her from Carbarn's attacks. The villain let out a defeated sigh as his plan was foiled once again. And Rumba walked away, victorious, with a bag of bungos stashed safely in her pocket.<br>

</body>
</html>

Interesting that it chose female rather than male or gender neutral. Not that I'm complaining, but I expected it to be biased 😀
Questa voce è stata modificata (2 mesi fa)
in reply to rumba

Yup, you'd be surprised what you can accomplish with 10gb of VRAM and a 12b model. Hell, my profile pic (which isn't very good, tbf) was made on that 10gb VRAM card using localhosted stable diffusion. I hate big corp AI, but I absolutely love open market and open source local models. Gonna be a shame when they start to police them.

To OP: The problem is that they're looking for keywords. With the amount of people under surveillance these days, they don't give a rat's ass if you went to your favorite coffee roasting site, they want to find the stuff they don't want you to do.

Piracy? You're on a list. Any cleaning chemical that can be related to the construction of explosives? You're on a list. These lists will then tack on more keywords that pertain to that list. For example, the explosives list will then search for matching components bought within a close span of time that would indicate you're making them. Even searching for ways to enforce your privacy just makes them more interested.

So then you put out a bunch of fake data. This data happens to say you viewed a page pertaining that matching component. Whelp, that list just got hotter and now there are even more eyes on you and they're being slightly more attentive this time. Its a bad idea. The only way you're getting out of surveillance, at least online, is to never go online.

In reality, they probably won't even do anything about the above. What they really want is money. Money for your info; money to sell more things to you. They want the average home to be filled with advertisements tailored from your information. Because those adverts make those companies money, which they then use to buy more information to monetize your existence. Its the largest pyramid scheme known to humanity, and we're the unpaid grunts.

The moment the world became connected through telephones, cable TV, and then internet this scheme was already in motion way beforehand. Let's be honest, smartphones were the motherload. A TV, phone, and computer you always keep on you? They were salivating that day.

in reply to dodgeflailimpose

This strategy of generating fake data just doesn't work well. It requires a ton of resources to generate fake data that can't be easily filtered which ends up making the strategy non viable on most situations. Look at Mullvads DAITA and how it constantly has to be improved to fight this and, that's just for basic protection.

There is a bit of a cognitive dissonance that goes on, where people seem to understand that you are tracked constantly online and offline through all sorts of complex means but still think relatively mundane solutions could break that system.

Questa voce è stata modificata (2 mesi fa)


Xiaomi naming convention


Glazers will say it's to keep the posers out.
in reply to LiveLM

Yes, Gigguk tryinv to explain Fate chronology. I think it's one.


Broadcom Eyes $2 Trillion Club as AI Chip Demand Explodes




What hardware does not support Linux?


I never really see hardware lacking Linux support mentioned, which got me caught by surprise when a computer with a Broadcom network card couldn't use the card. What other hardware don't work with Linux?
in reply to ssillyssadass

Not going to surprise anyone but Windows Mixed Reality VR headsets aren't great on Linux, at least with controllers

Although that is improving!

in reply to AdrianTheFrog

For the curious lvra.gitlab.io/docs/hardware/#… according to which quite a few WMR VR HMDs are supported via the Monado SteamVR plugin.
Questa voce è stata modificata (2 mesi fa)
in reply to AdrianTheFrog

At least when I tried it 2 years ago, Meta Quest 2 PCVR wasn't really great on Linux either.
in reply to ssillyssadass

Often the hotkeys on laptops for screen brightness, mute, etc will either not work or be wonky, on my HP Elitebook on Debian distros the brightness keys both mute the speakers instead, they work fine on Fedora though.


Daily driver work-from-home on Bazzite? Or something more mainstream (Debian?) and install Steam/proton?


My question is basically the title, but here are some more details.

My computer is used about 75% for work, 20% for personal use (almost entirely web), and 5% for gaming. ~2 y.o. midrange rig w/ Intel CPU, AMD graphics, 32GB DDR4 RAM.

For work, I need lots of straightforward things: video conferencing on Teams (web is fine), Zoom, Word document editing (web is fine), a bunch of other web apps, some light database stuff, etc.

Plus two things that are a bit trickier: OneDrive professional/SharePoint (so I'll need abraunegg's onedrive) and Excel 2024 desktop (web isn't good enough) for which I'll need to run Windows (10? Ameliorated, maybe?) in a VM.

But I also want to do gaming. I wouldn't install a kernel-level rootkit anyway (and I boycott Denuvo), so SteamOS-level compatibility should work great for my needs. I also have a Quest 3, so I'll want to do PCVR, which apparently works great (with Bazzite).

But I don't really grok what Bazzite being immutable means for using it as a daily driver for work/productivity. Under the hood, it's just Fedora 42, right? For immutable distros, you use flatpaks instead of apt install, and they're basically just "apps" that should "just work", right? Do I care about kernel modification?

Or, more to the point, I don't know what I don't know. After preliminary research on this all, I think my plan of going for Bazzite then adding abraunegg's onedrive and a Windows VM with Office 2024 will hit all my needs, but can anyone "sanity check" that plan, or compare the pros/cons with a non-Ubuntu-based alternative?

I'm good enough with computers that I should be able to tinker through the inevitable small challenges that will come up, but I don't really have enough time to do it twice if my initial plan is terrible. (I connect to a Debian server remotely using the terminal, so I have some background—but I needed to install a bunch of packages to get web app software running, and idk if I'll need that as a desktop user.)

Any advice much appreciated! And thanks for reading this far, even if you don't comment. 😀

Edit: thanks for the input so far! I'm turning in, but I'll read everything and reply to stuff tomorrow.

Questa voce è stata modificata (2 mesi fa)
in reply to blindsight

Just something to bear in mind regarding OneDrive; the unofficial clients don’t have access to certain APIs that the official clients use meaning that it only syncs every 5 minutes at best. As far as I know there’s nothing you can do about it.
in reply to twinnie

Oh, that's very good to know. That's a big limitation. That might make moving to Linux at all DOA for me. I'd likely need to do everything for work in a VM, but then what's the point?
in reply to twinnie

Would it be possible to use a "thin" Windows VM as "client" for One Drive? Meaning that the client would be responsible for synchronization of mounted directories which are actually used on the host machine.
Unknown parent

lemmy - Collegamento all'originale
blindsight
I knew about the Debian > Ubuntu ordering, but I take it Debian is still often used as a desktop environment, which is what I thought.



Can't enable mobile security settings


Hi there,

I have an Asus Zenfone 10 on Android 15.
In this release of android a new feature named mobile security settings became available which are supposed to signal and protect against surveillance on the mobile network side, like at a protest.

When I try to enable these settings on my device they are off again when I reenter these settings.
Do these settings have some kind of prerequisite? Are they working on your device?

Thanks!

in reply to tehsYs

Wtf! Same situation for me!

Is this some more Asus bullshit? I am still mad that I can't unlock it

Edit: but also what is encrytion on normal mobile network supposed to be? Are calls somehow encrypted? I thought normal network is not encrypted anyway, how even, is there a key exchange or anything?

Questa voce è stata modificata (2 mesi fa)
in reply to ximtor

Mobile radio communication is encrypted between you and the tower. Newer protocols have better encryption then older. That's why Stingray tracker is bad since it can force phones to use older vulnerable protocols.
in reply to tehsYs

I worked for ASUS back in the late 00s, when they still made quality products. I did Linux, Server, EEEPC, and Level 2 support calls.

I can't recommend them anymore.



[blog post] what it's like to live with as much foss software as possible


hope i don't get crucified for self promotion, stigmata would be hard to explain to my folks
Questa voce è stata modificata (2 mesi fa)
in reply to spv.sh

It seems like you updated your webpage in the wake of the meme incident. But it has made it unbearable to read. Whilst I was able to read the article in reader mode, the ~ page is virtually an eye sore to browse right now.
in reply to kirk781

shit i forgot about that, thank you for the reminder


Sinaloa cartel used phone data and surveillance cameras to find FBI informants, DOJ says


A hacker working for the Sinaloa drug cartel was able to obtain an FBI official's phone records and use Mexico City's surveillance cameras to help track and kill the agency's informants in 2018, the U.S. Justice Department said in a report issued on Thursday.
in reply to technocrit

Isn't the FBI supposed to be the domestic gestapo? I thought this kind sovereignty violation was the CIAs bag


IMEI concern grapheneOS


Is it a good enough solution for IMEI tracking to use an alternative device to provide a hotspot connection?

This approach appears to protect any new device that hasn't inserted a SIM card from being identified.

But I'm not sure how much information is carried to the second device by using hotspot.

Is this a good solution so far? Should I try to spoof IMEI?

in reply to DeathByBigSad

thank you for the clarification!

changed my device name!

I cannot find any reliable source that says personal hotspot can see the device model connecting to it, would be really great if someone could clarify this here.

But, some wifi access points can detect your device model anyways. My Xfinity gateway will show my Phone’s name and what model of phone I have.


I believe this is true as there is browser plugin for spoofing device model




GrapheneOS Location Services


Should I enable WIFI scanning / Bluetooth scanning / Network Location under setting->location->location services?

Which one would help me navigate inside a building or underground using open source maps?

I haven't tested yet, does google map requires any of those location services enabled to work? Should I just use google map in vanadium?

thanks a lot

Questa voce è stata modificata (2 mesi fa)
in reply to pogodem0n

thanks a lot!

though could you briefly explain the term "Network Location"? what does this "network" represents? How is it going to help with location and geopositioning? My understanding is that by enabling "Network Location" the location defined with "Network" is sent to SLP server as assisted data for geopositioning.

I would assume "Network" represents cellular data, hope someone could confirm

in reply to Holeheadou92984

You need a direct line of sight with satellites for GPS to work.

Of course, this is almost impossible indoors. Here's how network location works to my understanding:

Another person outdoors uses GPS to locate themselves. This person has Wi-Fi and Bluetooth enabled and their device can see your home/office network. Google and Apple save this information to their databases. When you request your location indoors, your device sends Wi-Fi information of nearby access points. The servers know approximate location of this Wi-Fi network and can give you your approximate location, though with a large margin of error.


in reply to stupid_asshole69 [none/use name]

Cash by physical mail. Letters are traceable, bank notes are traceable, and physical objects you have been in contact with are virtually guaranteed to have both your fingerprints and DNA on them, no matter how hard you try to prevent that.

Cash by mail is fake privacy.

in reply to Vegafjord eo

Cryptocurrencies are a waste of resources and gives might to those with computing force, that is the mighty.

There is no reason to inbosom it.

Let's rather effort towards moneyless societies.

in reply to Vegafjord eo

While the international banking system is all run by a hamster wheel?

I don't care if the revolution happens tomorrow. Neither of us will se a moneyless society. Next generation perhaps.

Questa voce è stata modificata (2 mesi fa)
in reply to Vegafjord eo

That is your opinion and an opinion that we do not share. I agree with you that most cryptocurrencies are bad.

However, there are some real diamonds mixed in with the lumps of coal, and you should really try to find them.



in reply to CashDragon

Seriously, Litecoin? Don't get me wrong, Litecoin is cool, but has nobody learned lessons? Like, at all? Litecoin has MWEB and thats the highlight.
in reply to shortwavesurfer

LTC is the usual path BTC maxi's take once they realize BTC is trash and captured by banking interests.


self-hosted i2p+qbittorrent beginner quickstart


Thought I would share my simple docker/podman setup for torrenting over I2P. It's just 2 files, a compose file and a config file, along with an in-depth explanation, available at my repo codeberg.org/xabadak/podman-i2… And it comes with a built-in "kill-switch" to prevent traffic leaking out to the clearnet. But for the uninitiated, some may be wondering:

What is I2P and why should I care?


For a p2p system like bittorrent, for two peers to connect to each other, at least one side needs to have their ports open. If one side uses a VPN, their provider needs to support "port forwarding" in order for them to have their ports open (assuming everything else is configured properly). If you have ever tried to download a torrent with seeders available, yet failed to connect to any of them, your ports are probably not open. And with regulators cracking down on VPNs and forcing providers like Mullvad to shut down port forwarding, torrenting over the clearnet is becoming more and more difficult.

The I2P network doesn't have these issues. The I2P is an alternative internet network where all users are anonymous by default. So you don't need a VPN to hide your activity from your ISP. You don't need port-forwarding either, all peers can reach each other. And if you do happen to run a VPN on your PC, that's fine too - I2P will work just the same. So if you're turning your VPN on and off all the time, you can keep I2P running throughout, and continue downloading/uploading.

I2P eliminates all the complications and worries about seeding, making it easy for beginners to contribute to the network. I2P also makes downloading easier, since all peers are always reachable. And it's more decentralized too, since users don't need to rely on VPN providers. And of course, it's free and open source!

A fair warning though, I2P is restricted in some countries. And in terms of torrenting specifically, torrents have to explicitly support I2P. You can't just take any clearnet torrent and expect it to work on I2P. And the speeds are generally lower since there are less seeders, and the built-in anonymity has a cost as well. However I've been surprised at the amount of content on the I2P network, and I've been able to reach 1 MB/s download speeds. It's more than good enough for me, and it will only get better the more people join, so I hope this repo is enough for people to get started.

Questa voce è stata modificata (2 mesi fa)
in reply to xabadak

Is there a way I can do this without docker? I just run Qbit on my regular windows computer and don't wanna delve into Docker. Would Love to share the 5k+ torrents I have on the I2p network.
in reply to BlueRingedOctopus

You could just install the i2pd windows client, and then configure it to enable "SAM". You could use the i2pd.conf file in my repo as a reference, just make sure to use 127.0.0.1 instead of 0.0.0.0 so that only applications running on your computer would be able to access i2pd (0.0.0.0 is only needed for docker). Then you would configure your browser and qbittorrent the same way detailed in my repo, except make sure to enable "mixed" mode so that your torrents are seeding over both clearnet and I2P. Lastly, even though you'll be seeding your torrents over I2P, nobody will be able to find them unless you post them to an I2P tracker like Postman. I don't know how to submit torrents to Postman so you're on your own for that one
in reply to xabadak

Thank you! I just randomly found your guide in another Lemmy post and this kind of setup has been in my to-do list after I became "pro" with gluetun and qbitorrent (inside Docker) and thought the same could be done for i2pd but haven't had the time.

I have some questions

  1. I have been very happy about qbitorrent finally opening to i2p but recently found out that because it is using libtorrent it doesn't support DHT for i2p (while the official i2psnark client does). Don't you think is better at this point to still use i2psnark (and you would have the commodity to also have the browser included?) despite being in Java...
  2. For some reason, I would still feel insecure in using i2p without a VPN. It is said there is no need, ok, but what if I still want to use it. I guess it shouldn't harm? Like affecting speed or other factors? I would like to remove as much as possible any chance of my ISP sniffing on my connections.

PS: I have an improvement for your guide 😁You could add an extra container with Mullvad-Browser (still from linuxserver) to access Postman.



Dragon Age: Veilguard lead level designer Brian J. Audette responds to criticisms on Bluesky: "We couldn't have made a _better_ Dragon Age, only a _different_ one."


In a response to an article written for Bloomberg by Jason Schreier investigating the ten year "development turmoil," lead level designer Brian J. Audette refutes the notion that the game was "compromised" in a post on their bluesky account.

The full post reads:

Reposting without comment except: I refute that we made a bad or compromised game. We made the best version of what we released, warts and all. I'm damn proud of it and the team. We couldn't have made a better Dragon Age, only a different one.
in reply to nullpotential

I thought the game was alright overall, but it certainly did not feel like a Dragon Age game. The overall story was decent, however a lot of the dialogue was hamfisted. The real problem was that the gameplay felt like Jedi Survivor without the refined combat mechanics. As a result, combat quickly became tedious and repetitive. I also found that the NPCs were more or less fungible, and it really didn't matter who was in your party. This is a stark contrast with previous Dragon Age games where the whole fun was in scripting the behavior of different characters and coming up with clever ways of combine their abilities. Simply having kept the original mechanics, warts and all, would've resulted in a far better game in my opinion.


Support / options for laptop in tablet mode?


I installed Linux Mint on my Lenovo Yoga 7 laptop and it's been great, with the one exception of not really having a tablet mode when I flip the screen. Its not a huge deal, but I watch shows that way and sometimes miss an on-screen keyboard.

The actual keyboard stays active when flipped, which is fine until I pick it up or have it on my lap and accidentally hit some random key.

It seems from some looking around that Mint doesn't do great with this and I'm open to a different distro that's fairly beginner friendly, but even better if there are some options I'm missing to keep what I have.

in reply to JustOneMoreCat

mint uses X11 which should be considered legacy at this point. wayland (Gnome, Plasma) has all the touch and dock/undock and rotate and pen etc goodies. try it out from a liveUSB and decide for yourself.
in reply to glitching

Why is mint even recommended to new users at this point. Cinnamon is nowhere near Gnome or Plasma and both of these provide much simpler and more unified experience in things like settings


Nobara, Garuda, Bazzite.... wait actually CachyOS and Solus


I've been using Pop!_OS for a few years now, and it's worked like a dream. Everything works out-of-the-box, and gaming on Linux has never been easier. But it almost works a little too well. Learning Linux as opposed to Windows for all my games was a fun challenge.

But, now that I'm familiar with how to set up any game that needs a little help besides Proton, I'm starting to want to delve into my OS more to see what I can customize, and I think picking a new distro with slightly different architechture will be very nice.

Don't get me wrong, I still want something that works by itself more often than not. But I would love to have something a little more cutting-edge that gives me a little more control.

I started with Linux by installing Kubuntu, and I really miss KDE Plasma. I know Kubuntu is still on Plasma 5, and I've been wanting to find a distro that lets me use Plasma 6.

I've narrowed my choices down to three distros: Nobara, Garuda, and Bazzite.

So far, I've confirmed that Nobara and Garuda come with Plasma 6, but I haven't found that information for Bazzite yet.

So, what do you think about these distros? What are the pros and cons for you?

I'm leaning the most toward Garuda - but I'm worried Arch may be TOO big of a leap. I really just learned that Fedora is not Arch-based, so I know Garuda will be a bit of the odd one out of the three.

TL;DR: Nobara, Garuda, Bazzite - which one is good and do any suck?

EDIT:

Thanks, everyone, for the insightful and helpful comments! From what everyone has said, I've come to find that either CachyOS or Solus will fit my needs best.

CachyOS seems optimized for gaming, while Solus' curated rolling releases seem (to my untrained eye at least) to be somewhat of a step between the way Debian-based distros upgrade and the way Arch-based distros upgrade.

I'd love to hear people's experiences with both of these! I think I'm going to try to dual-boot them and see what setup looks like for both.😄

Questa voce è stata modificata (2 mesi fa)
in reply to VerilyFemme

Solus is a great choise for desktop. The Solus team is doing well lately. 😀
They have even weekly updates on updates. Really great comminication towards users.
in reply to Mark12870

I ended up going with CachyOS because I feel confident enough to try Arch now, but I think Solus is going to be my go-to when recommending for beginners, once I try it a bit more. I think it's a good blend between stable and cutting-edge, plus getting to tell people that you won't have to replace it with Solus 2 eventually is kinda a big selling point.

in reply to learnbyexample

Shit... kind of makes me want to learn Rust now!

Anyway, wonderful write up. No BS, both shortcuts if you just want to the code and in depth links e.g. beyondlogic.org/usbnutshell/us… all written with a fun tone. Plenty of actually useful content showing us all that sure, it is not trivial to write a (USB) driver but it is also probably not as hard as we imagine. Particularly enjoyed the :

  • userspace driver, namely being able to tinker locally without feel the pressure to push back the work to Linux the kernel itself
  • libusb and other drivers, namely that there is a myriad of points to start from already, not just writing reverse engineering bits in memory to the new device and hoping it'll work


found a fix for MDN Web Docs demos not working


Recently, some interactive "demo" boxes (example here) in the MDN web docs stopped working on LibreWolf for me. The preview was blank and clicking on the buttons did nothing.

Turns out I had enabled "Limit cross-origin referrers" in settings, and unchecking the box allowed MDN to work normally.

Hope this helps!

Questa voce è stata modificata (2 mesi fa)


Accidentally wrote an ISO to an encrypted 5TB drive… Help?


So, I did a thing - accidentally selected my 5TB external NTFS hard drive (encrypted with VeraCrypt) as the target for writing an ISO. The moment I noticed that "Impression" had switched the drive letter, I immediately killed the process. But yeah… damage done.

Now, the situation:
- Currently shows up as:
- 6 MB FAT
- 4.3 GB
- 2 TB unallocated
- 2.6TB unallocated
- The VeraCrypt volume obviously no longer mounts.
- Drive was somewhat crucial - lots of structured data I’d really prefer to recover with the original file system intact.

I know chances are slim, especially with encrypted volumes, but has anyone had luck recovering from something like this? I’m open to commercial recovery tools or command-line wizardry. Would love to hear from anyone who’s been down this road.

Any thoughts or recommendations?

Questa voce è stata modificata (2 mesi fa)
in reply to Einar

Any thoughts or recommendations?


::: spoiler Tap for spoiler
Backup important data
:::

in reply to Einar

I'm gonna be the one to say it. You've ruined your ability to decrypt the data. You can try a recovery service but expect to pay a lot for zero results.

I'm sorry this happened to you.

Edit: don't go with commercial software, find a recovery service

Questa voce è stata modificata (2 mesi fa)
in reply to Luci

Drive Savers has a cleanroom. They got my data back in 2001 or 2002. It costs a lot.
in reply to some_guy

This case is due to a logical problem. Cleanrooms are only necessary for physical repairs, like swapping the Head Stack Assembly.

DriveSavers’ cost of entry for a successful recovery is about $2,000. They’ve even given that quote to an iPhone user who needed nothing more than a screen replacement.

Their “state of the art facility” is appropriate for hardware cases where money is no object and you need the best of the best to deliver results no matter the cost.

Realistically, most regular people will be well taken care of using a reasonably priced service like 300 Dollar Data Recovery.

in reply to Luci

expect to pay a lot for zero results


Industry standard for data recovery specialists is “no data, no charge”

in reply to Luci

Where is “here”?

You might want to check out the member listings at datarecoveryprofessionals.org/

These organizations generally seem to hold themselves to a “better” standard than the rest of the industry.



Cloud storage solutions with Linux


I am trying to get away from Google and am looking for a decent cloud service that's integrated well into Linux, either by itself or by using rclone.

I tried Proton drive, but it is laggy and overall not very good.

I just need storage, nothing fancy. Self hosting is not an option tough, at this time.

EDIT: I don't want to write the same answer 15 times, so I'll just put this here: Thanks a lot for the recommendations to all of you! I've got some reading up to do now 😀

Questa voce è stata modificata (2 mesi fa)
in reply to Gloomy

rclone with the integrated file encryption and one of the supported Provider.
in reply to Gloomy

Koofr has desktop client for Linux.


looking to migrate off gmail finally


I'm considering finally jumping off gmail. I'm not going to host my own email since I just don't have the skill to secure that thing well enough myself. Any mail server I set up would become a botnest within hours. So that has me looking at third party stuff.

Proton has a mostly good reputation, though their CEO's twitter post a while back praising the Trump regime makes me question if I should trust them with anything. I don't know enough about the entire situation to know if its just internet drama or a real concern, but anything involving Trump is a huge red flag for me.

Tuta looks pretty nice but I've read there are concerns about it being in a country that's part of the 14 eyes collaboration, so it might not matter what the organization wants if the government of the region they are in says fuck off and do what we tell you.

On the lower end of concerns, I am in the Apple ecosystem. (boo hiss I know). I like the clean and simple built in apps like email and calendar and how the notifications all work across my watch, phone, mac and homepods. I like how safari can just jump in and throw an email alias at things for me. I like how all my stuff is managed. But I also know Apple could piss me off at any moment and make wild sweeping changes I might not like, so relying on them too much could screw me over someday. I dont know, right now I really like their setup but portability does seem to matter more ultimately so this switch does seem like a better idea in the long run, even if I'm giving up features I may enjoy.

What are your opinions on the privacy email and calendar services in 2025? Should I even both with a cloud based calendar in the first place?

Questa voce è stata modificata (2 mesi fa)
in reply to land

I. like the idea of simplelogin as it seems to do what I'm already doing with icloud plus but it suffers the same problem. the messages are flowing through a third party before they get to me. why would I trust a third party?
in reply to muusemuuse

FWIW, Proton has acquired SimpleLogin. As such, I perceive/regard it as an extension to Proton rather than a third party.



What problems can I expect using Linux (Fedora) with an NVIDIA GPU?


I'm planning on getting a laptop within the next month which will be my daily driver for university, and it has a RTX 5060. I know people have lots of issues with NVIDIA on Linux, but I don't know of any specific issues. What issues can I expect running Fedora 42 (KDE) on this device?

I am not responding to most comments here, but I am silently taking them into account.

Questa voce è stata modificata (2 mesi fa)
in reply to Interstellar_1

A lot of the info here reads as outdated to me, I have a 40 series card and on bazzite with open drivers it works with zero issues on major titles like Cyberpunk, Horizon, etc. The open drivers have come a long way. It took maybe 5 months post 40 series release for it to work 100% with no glaring issues for me, but 40 series was also the first cards to be launched with the open drivers so it makes sense there'd be hiccups

The only issues I've had on Wayland are color related.

Questa voce è stata modificata (2 mesi fa)
in reply to marcie (she/her)

Thanks, hopefully my experience is similar. I think the 5000 series came out less than a month ago as well, so it might also take some time for me.


wyndham hotels leaks personal data....and is totally okay with it


I got a new phone number last year. The last person who owned this number just left all her accounts tied to this number and one by one I've been reaching out to the places tied to it telling them they have the wrong number and to stop using this one. Simple enough.

But there is one company that refuses to stop using this number. Wynhdam hotels absolutely refuses to do anything about this. They keep sending me notifications and check in confirmations for her hotel visits. Using just the texts they send me, I know her full name, email address, home address, her reservations at the hotel, which hotel she's going to and what days. Using past conversations with the other hotels she's been to (called in to tell them to stop this months ago), I know she's been kicked out for making a scene in the lobby or something. Looking online, I see she has a criminal record, and a history of child custody losses, drug abuse, and is apparently an "experienced college girl" on an escort site.

In my most recent calls with wyndham, they told me that they can't change the number out. I will need to contact this charming person and have her do it. I am absolutely not getting involved in that mess in any capacity. I'm still telling her johns and dealers this is the wrong number.

Once I explained to the call center supervisor I was escalated to this has gone on long enough and I'm willing to let an attorney deal with it, they put me on hold and supposedly took my number off the account. But the next day, I get another notification. It seems she is providing her services again and it's still making that my problem. So I call and get routed to a promotional department that said they have no idea why they got this call, but I should probably just sue.

I tried calling the number listed on the confirmation texts but it goes to a dead end line that just asks for a remote access code and then hangs up, so I can't ask the hotel she is actually at flag her down and say "hey, you need to update your number."

I emailed their privacy department yesterday but the notifications are still coming in. I can't change my phone number at the moment as I'm dealing with some delicate matters that are tied to this number so I can't risk changing the number at this time.

How can I get wyndham to take this seriously? This is a dangerous amount of information I was able to get off a recurring text they know is going to the wrong place.

Questa voce è stata modificata (2 mesi fa)
in reply to sneaky

Not always true. Letting me from an account information TO something specifically is a risk, but simply demanding they remove MY data from an account that’s not mine is not a fraud concern. Thats the opposite of a fraud concern.

Moreover, I was able to prove I have that number in that I have all the information they gave me access to through that number.

in reply to muusemuuse

If your in the US you can tell them you'll report them to the FTC and fcc as unsolicited spam text messages that have no means to opt out. They must provide a means to stop receiving text messages per can spam act. If they refuse you report them and then they face 50k in fines per message. You also get to have federal record at least that you didn't want the text messages. You could also file a police report. The cops may roll their eyes, but just tell them you just want something on record that the former number owner waa a shady character and want to avoid any potential legal issues in the future for having their number and getting weird calls or texts.

fcc.gov/consumers/guides/stop-…

ReportFraud.ftc.gov




WhatsApp rolls out AI-generated summaries for private messages


cross-posted from: rss.ponder.cat/post/215685

WhatsApp can now call on Meta AI to summarize your personal chats. As shown in a GIF, you can access it by tapping the button to unfurl all of your unread messages in a chat. But instead of showing your messages, WhatsApp uses Meta AI to generate a bulleted summary of what you missed.

The feature is rolling out in English in the US, with plans to launch in more countries and languages later this year. It uses Meta’s Private Processing technology, which the company claims will prevent it and other third parties from snooping on your messages.

WhatsApp, which is owned by Meta, says its AI message summaries are optional, and the feature is turned off by default. You can also use WhatsApp’s “Advanced Privacy” setting to prevent users from using AI features in group chats. We still don’t know if WhatsApp’s AI message summaries will struggle with accuracy, which is something we saw with the launch of Apple’s AI-generated message and notification rundowns.

Over the past year, Meta has continued stuffing different AI features into WhatsApp, including a way to ask Meta AI questions from within a chat, as well as a feature that generates images in real-time. Some users have grown frustrated by the new Meta AI button in the bottom-right corner of the app that they can’t turn off or remove. Meta also sparked backlash with another change that brought ads to the app — something its founders said they never wanted to do.

The app’s Private Processing is supposed to conceal your interactions with its AI model by creating a “secure cloud environment,” preventing Meta or WhatsApp from seeing your summaries. Other people in the group chat won’t be able to see the message summaries, either.


From The Verge via this RSS feed

in reply to schizoidman

Do people actually use stuff like this? Like who has ever needed help reading a text message?
Questa voce è stata modificata (2 mesi fa)
in reply to HiddenLayer555

If you need an AI summary to read texts from your friends… Your friend either has the worst case of main character syndrome, or you’re a bad friend for not putting in the effort of reading what they have to say!


Alright fine I admit it, I want to learn Linux


I'm just so sick of Microsoft and Google.
But there's two things holding me back:

1) I wanna play Steam games on my PC

2) I am just an amateur hobbyist, not a tech wizard

Is there any hope for me?

Questa voce è stata modificata (2 mesi fa)
in reply to TimewornTraveler

::: spoiler spoiler
aklsdfjaksl;dfjkl;asdf
:::
Questa voce è stata modificata (2 mesi fa)
in reply to TimewornTraveler

So much words in this thread... Head over bazzite.gg and get f*ing started! You will love it!!


Tor + Clearnet Privacy chat app


I made an ephemeral onion chatroom, inspired by Ricochet and OnionShare, just for fun. Anyone wants to try?
This app has a clearnet version and tor version as well!
- Clearnet: shadowtalk.yuzukateam.io.vn/
- Tor: 74xhglgkx3yq5o5ibiehpfwoq4jxb62323ydzam56fvqbkuo6kd7tcid (hash)
- And it open source!!!:github.com/plsgivemeachane/Sha…
I really like to get some feedback. Have fun everyone!



A smart charging method for bike rentals


youtu.be/xfQyZxVg4yA


“Il periodo PIÙ DIFFICILE della mia VITA” (il conto della sfiga by ADC)


Ultimamente Alessandrone ha iniziato veramente a spingere… non che non lo facesse da anni e anni, però con questi ultimi video si sta superando pericolosamente tanto. E questo che è uscito stasera penso possa essere interessante per tutti… probabilmente anche perché l’argomento non è lo studio, ehh vabbé. Che poi… da quando ha un giardino […]

octospacc.altervista.org/2025/…


“Il periodo PIÙ DIFFICILE della mia VITA” (il conto della sfiga by ADC)


youtube.com/watch?v=5_QCU4ngCW…

Ultimamente Alessandrone ha iniziato veramente a spingere… non che non lo facesse da anni e anni, però con questi ultimi video si sta superando pericolosamente tanto. E questo che è uscito stasera penso possa essere interessante per tutti… probabilmente anche perché l’argomento non è lo studio, ehh vabbé. Che poi… da quando ha un giardino di terra in cui mettersi a scavare per chissà quante ore, praticamente a vuoto, solo per poter fare le scenette cinematograficamente metaforiche che ha deciso di inserire nel video? (Spero vivamente che nessuna creatura orribile strisciante si sia fatta male durante le riprese di questa robaccia.) 🤯

Il video parla del concetto di sfiga, e di quella che tecnicamente è naturalmente intrinseca nella vita stessa di ogni persona sulla Terra, semplicemente per motivi statistici, perché al mondo ogni giorno avvengono infinite cose che semplicemente avvengono per conto loro… e alcune di queste sono soggettivamente buone, mentre altre no, fine. Ovviamente, in questo senso, la sfiga come forza superiore dispettosa non esiste davvero, quindi tecnicamente la concezione popolare che se ne ha è di per sé sbagliata… e conseguentemente dannosa, perché porta a pensare le situazioni del caso in modi sbagliati, che puntualmente possono portare a sviluppare un circolo vizioso di risposte e pensieri negativi, mandando sempre tutto più in vacca, scavando oltre quello che è già il fondo. 😶‍🌫️

Niente di nuovo sotto il sole, credo… cioè, non l’ho trovato rivoluzionario questo video, e i suoi concetti non mi sono nuovi… forse perché io penso troppo (come ADC, in effetti), mentre l’essere umano medio no? Però le sue metafore sono comunque interessanti e, in parte, le strategie per rimettersi in piedi (a parte il fatto stesso di realizzare queste verità). Certo, io in realtà l’unica di quelle che davvero uso, personalmente, come si vede spesso, è l’autoironia… perché per il resto lo so che le cose scomode che accadono bisogna semplicemente accettarle ed andare avanti, senza scoraggiarsi. Io in realtà in questo sono un caso particolare, perché (come ho accennato altre volte) sono una creatura solo a metà umana, proveniente dallo spazio, piazzata sulla Terra a forza per volere di un’organizzazione intergalattica senza scrupoli, che ha architettato un preciso piano per farmi vivere con tutte le difficoltà che ho… insomma, sono una ragazza magica, e questo comporta cose molto scomode, eppure non posso dare forfeit; voi vedete un po’ che giustificazione logica trovare alla natura della vostra esistenza. 👾

Ad ogni modo, vabbé, il messaggio di fondo è comunque sempre condivisibile. È bene evitare di scoraggiarsi, di arrendersi, di mettersi a rottare solo perché qualche volta o di continuo si è vittima della sfiga suprema (cioè, più propriamente, di eventi per l’appunto soggettivamente negativi, magari anche tutti in un tempo ravvicinato e che portano ad accrescere una grande amarezza di fondo)… voi magari perché si ha sempre comunque qualcosa di buono sotto sotto anche dentro la merda, e io invece perché devo farla pagare a quelli che mi hanno trasferita sulla Terra. “Cambiando il risultato, l’ordine degli addendi non cambia“, come si suol dire! (Che sia questo un messaggio utile a coloro che sotto sotto ne hanno bisogno…) 🥰

#ADC #AlessandroDeConcini #consigli #lifestyle #sfiga #sfortuna #vita





U.S. deports men from Asia and Latin America with criminal records to South Sudan after legal saga


The Trump administration said it deported a group of eight men convicted of serious crimes in the United States to the conflict-ridden African country of South Sudan, following a weeks-long legal saga that had kept the deportees in a military base in Djibouti for weeks.

Assistant Department of Homeland Security Secretary Tricia McLaughlin said the deportation flight carrying the deportees landed in South Sudan just before midnight EST on Friday. A photo provided by the department showed the deportees, with their hands and feet shackled, sitting inside an aircraft, guarded by U.S. service members.



A conceptual breakthrough has emerged for the Colorado River’s future. Here’s what it looks like.


Negotiators from the seven river basin states said in a series of meetings in recent weeks that they were discussing a plan rooted in a concept that breaks from decades of management practice. Rather than basing water releases on reservoir levels, it would base the amount released from the system’s two major reservoirs on the amount of water flowing in the river. The new concept would be more responsive as river flows become more variable.


Hegseth falsely cited weapon shortages in halting shipments to Ukraine, Democrats say


Reports indicate defense secretary unilaterally acted to halt shipment even as Pentagon suggested US arsenal is stocked

Pete Hegseth, the US defense secretary, unilaterally halted an agreed shipment of military aid to Ukraine due to baseless concerns that US stockpiles of weapons have run too low, it has been reported.

A batch of air defense missiles and other precision munitions were due to be sent to Ukraine to aid it in its ongoing war with Russia, which launched a full-scale invasion of its neighbor in 2022. The aid was promised by the US during Joe Biden’s administration last year.

But the Pentagon halted the shipment, with NBC reporting that a decision to do so was made solely by Hegseth, Donald Trump’s top defense official and a former Fox News weekend host who has previously come under pressure for sharing plans of a military strike in two group chats on the messaging app Signal, one of which accidentally included a journalist.