I love how intuitive it is. I knew immediately that it meant “have you ever” or “do you ever”
Hi, I’m Shauna! I’m a 37 year old transgender woman from Ontario, Canada. I’m also a Linux enthusiast, and a Web Developer by trade. Huge Star Trek fan, huge Soulsborne fan, and all-around huge nerd.
I love how intuitive it is. I knew immediately that it meant “have you ever” or “do you ever”
Are you using the dedicated GPU as your primary GPU or the integrated GPU? I’ve found using the dGPU as the primary can sometimes lead to suspend/resume issues.
If you have an unusual setup, it can be annoying trying to give programs permissions and sometimes it just outright doesn’t work. For example, I mainly game on a laptop which has a pretty small hard drive, so I tend to put most of my games on an external hard drive. Flatpak really doesn’t play well with that.
Yeah, I’m saying that I agree that version numbers are harmful to mass adoption and I go on to explain that it’s not really a version number at least in Ubuntu, but a “YY.MM” formatted date. I think making that more clear would help people that are unfamiliar with versioning and development.
I would use Heroic Games Launcher personally. You can add any game you want, and before it creates the prefix for you, you have the option of running installers on the prefix first. Then you can add the game executable. If the game requires proton fixes which it very likely would, you can search the game on SteamDB to find the AppID then make sure there’s a file called steam_appid.txt next to the game executable with the game’s app ID from SteamDB. That will tell Proton to apply any fixes that it has on file automatically.
If you’re a fairly advanced user, you can also just look at what files are included on the game’s SteamDB “Depots” page. For example, GTA San Andreas looks like it requires “DirectX Jun 2010 Redist”. You can either download that from Microsoft or you can run winetricks (through Heroic, or through terminal) on the prefix to add d3dx9.
Heroic Games Launcher: https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher
Steam DB: https://steamdb.info/
Anyone coming from a development background will entirely get the idea of stable releases. 23.10 or 24.04 are just rolling releases of a stable distro. It’s the production ready version. You can choose to opt-in to the development updates at the risk that your system might be slightly more unstable, but that’s not a decision that a casual user should consider.
The version numbers on Ubuntu specifically, are just dates. 23.10 is the stable release from October, 2023. That’s all it is and there’s really no point in thinking about it deeper than that. It’s a date, not really a version number.
First of all, make sure that Steamworks Common Redistributables is installed because according to the steamdb page for GTA 5 it requires vcrun2022 and d3dx9 installed from winetricks (or protontricks) which it normally gets from the Steamworks Common Redistributables automatically.
From my admittedly very brief research, it doesn’t look like you can play GTA 5 online if you skip the launcher but if you want to just play offline you can set your Steam Launch Options by right clicking the game and going to properties. If you set it to command% -scOfflineOnly
that will skip the launcher but disable multiplayer.
You can also try setting the Steam Launch Options to PROTON_USE_WINED3D=1 %command%
which forces Proton to use the OpenGL driver rather than the Vulkan driver for D3D.
I’ve tried both pretty extensively and moonlight is so, so much better. I was really surprised, but it’s far and away better than steam link. You can stream your PC by using Sunlight - https://github.com/LizardByte/Sunshine
I think it’s that neuro-diverse people tend to gravitate towards each other, so this is probably survivor’s bias. I definitely find that other people with ADHD are able to grab and hold my attention better than neuro-typical people and also they’re more understanding and forgiving when I’m flaky, or too hyperactive, or whatever.
I just started using Proton, but I don’t think any of their apps are available for Linux natively, which is disappointing. I mostly use Proton apps inside Ferdium which I find useful for combining all of my productivity apps and Ferdium basically just keeps a website loaded, and websites are always cross platform compatible. I would love to know if there’s a timeline for Linux apps in mind.
It’s definitely an edge case by say you’re in ~/ and you run a script like ./code/script.sh then it thinks the current working direct is ~/ rather than what is probably intended which is ~/code/. If your bash script uses full paths like /home/$USER/code/ then it will still run correctly regardless of the current working directory that the scrip was run from.
I wonder if others have some favourite posters that you they quite often?
For me, it’s @Stamets and ThePicardManuever but I’ve noticed a couple other prominent posters lately although their names haven’t stuck for me just yet.
Gitlab is quite good and used by a lot of open source developers.
There are considered to be 10 stages of genocide as described by Wikipedia here: https://en.wikipedia.org/wiki/Ten_stages_of_genocide
The stages ramp up in severity until we’re at full gas chamber Nazi status by stage 9 and stage 10 is denying any crime occurred.
I’d say Israel and Palestine were already at like stage 6 before this, now it’s at like stage 8. It’s not clear if Israel actually plans on exterminating all Palestinians, but it sure seems like that’s where they’re leading things.
You need to learn bash scripting. Also, there are a few default files that the .bashrc uses which can be helpful to compartmentalize the custom things you do to it so that it’s easier to undo if you screw something up. To do that, just add this to the bottom of your .bashrc
if [ -f ~/.bash_custom ]; then
. ~/.bash_custom
fi
What that will do is check if the .bash_custom file exists and then run the .bash_custom file in your home directory and apply anything in there. Also, you can call the file whatever you like, but bash does have some defaults that it will check for and run them without editing the .bashrc at all. It’s kind of hard to find a list of the the files that it automatically checks for, but I know that .bash_aliases is one of them, and I think it checks .bash_commands as well, but I’m not entirely sure. Either way, you can force it to check your custom one by using the code above.
Then you can create the file and add any custom things in there that you like. For example, I like to frequently update through the terminal but running sudo apt update && sudo apt upgrade && sudo apt autoremove && flatpak upgrade
was a bit tedious and I wanted a bit less feedback so I made a custom alias for my personal use.
alias update='echo "Updating packages..."; sudo apt update -y &> /dev/null; echo "Packages updated."; echo "Upgrading packages..."; sudo apt upgrade -y &> /dev/null; echo "Packages upgraded."; echo "Cleaning up packges..."; sudo apt autoremove -y &> /dev/null; echo "Packages cleaned up."; echo "Updating flatpaks..."; flatpak update -y &> /dev/null; echo "Flatpaks updated."'
Which hides most of the text from updating and just gives me feedback on what it’s currently doing if I don’t really care to know all of the details. So now I just run update
in the terminal and plug in my password and it updates and upgrades everything in a human readable way.
There’s a lot that can be done with bash scripting, like editing files, iterating over files and directories, setting environment variables. It’s basically a full programming language so the limits are mostly your imagination.
lol as expected the comments in this thread are all off topic!
Seriously though, give us an update if you find it helpful OP! We clearly need all the help we can get out here
Do you think using a custom ssh key directory would prevent these malicious apps from working correctly or is there some environment variable that always points to the ssh key folder or I guess they could just run a search on the system for any files like *.pub. Are there any safety procedures that one can take to circumvent these kinds of attacks?
This feels like a great application of AI to root around through the code of packages in these repos and find ones that access the ssh key directory at all to be looked at more thoroughly by a human.
My biggest concern with Epic is their insistence on kernel level anti-cheat which is just ridiculous overkill and probably being used as spyware let’s be honest. They have many ties to China’s Tencent which has a 40% stake in the company and is known to basically just be an extension of the Chinese government.
There’s also the very odd fact that just having the Epic Games Store open in the background will deplete your laptops battery life by up to 20%. Is it just horribly optimized and uses all that battery even when idling, or is it doing something nefarious in the background? We don’t know.
As for exclusives, they have bought exclusives that were mostly crowd funded from the start which is quite the kick in the teeth to the early investors that helped get the project off the ground. And there were even some exclusives that were already listed for pre-order through Steam, forcing everyone to need to get a refund.
Plus, any good will that they’ve purchased so far is just in service of making a good name for themselves. They’ve been losing around $400 million per year since 2019 just to bring in new users. They’re going to suddenly turn around and start being cut-throat as soon as they think they can.
They are not consumer friendly, they want to dictate trends in gaming. Valve is already the king of that throne and they’re fairly benevolent and have pushed trends that are good for gaming and consumers overall. I have serious doubt that Epic would be anywhere near as good for gaming as Valve has been if they should actually become profitable, and an industry leader. Especially when it’s projected that they won’t be profitable until 2027, which means they’ll need to recoup their investment of nearly $3.2 billion since 2019.
I think upgrading the RAM as you mentioned is going to make a big difference. While the physical RAM might be soldered to the motherboard, you could buy a fairly cheap SD card or USB and set the system up to use that as virtual memory. It won’t be as fast as actual RAM but it might help and large SD cards are honestly really cheap these days.