It’s remarkably difficult to really fuck up freebsd. On Linux, getting boots to fail is easy. FreeBSD is quite a bit more robust in that regard, as the base image isn’t updated piecemeal.
I like Android. If linux would be like Android, it would take off and be probably a lot more advanced than it is now. It’s currently built as a cell phone OS, because that’s what it is.
But if someone made a desktop android, that worked on raspberry pi, and pc’s, and could be self contained on a usb stick like you can with linux??? THAT distro might be the thing to beat Windows. Especially if it was free and open source.
Right now, on android, you can use terminal. Before I knew what terminal was, I downloaded it on an old rooted phone 10 years ago.
So YOU can do all the terminal stuff you want in this hypothetical desktop Android. But don’t make ME do stuff that I don’t understand.
Right now, standard linux is essentially a keyboard OS. Where the bulk of important functions come from the keyboard. Windows is a mouse OS where the bulk of important functions happen with a mouse.
And of the two styles, I prefer mouse. You prefer keyboard, but linux CAN do both…it just chooses not to.
Give me a distro where they don’t even include terminal. You can download it if you want, but it’s not standard.
So I don’t see why you’re saying Android is some kind of insult. I like Android.
I didn’t say it as an insult, just pointing it out. Fwiw, I use Waydroid on my computer, and it’s pretty okay. I don’t think there’s any desktop OS, Linux or otherwise, that doesn’t ship with a terminal program, though.
Cool, but you’re in a gaming community in a post about the Playstation, so I’m not really sure why you’re talking about operating systems and behaving like this when someone talks about the console the post is about.
I love Linux. I’ve moved both my PC and laptop to Linux this year and gotten rid of Windows completely and I’m loving it. OpenSUSE Tumbleweed doesn’t get enough love.
That being said… Linux is not easy guys. This guy is full of shit. But I would still recommend trying it if you’re an enthusiast with this sort of inclination.
If I had to read documentation first, I wouldn’t be using Linux. We write software so we can automate things, so we should be able to automate away most of the troublesome parts until we’re just left with a useful device that does its job.
To be fair, it’s just because windows is the most used and common desktop operating system and the two OSs are different. People would be confused about windows too if the tables were turned.
What’s confusing about wine prefixes apart from the fact that wine itself doesn’t come with a graphical interface to manage them? On a Deck, Steam should handle these for you
Calling them “prefixes” is about the total of the confusion. Call them “instances” or even just “boxes” and it’s suddenly clear what they do.
(The only reason I’m not using “sandbox” is because they don’t really provide sandboxing from a security point of view, only a kind of separate instance with its own configuration but with access to everything via the Z drive)
Once you figure out that using a different “wine prefix” only really means a separate “Windows” with it’s own config and file structure there’s nothing confusing about it.
Same. However some mod programs that rely on Windows prerequisites like C++ and .NET don’t have that (which is where my frustrations were stemming from)
I have so far avoided that specific pit, but that’s because for maybe decades now and still whilst using Windows as my main I’ve avoid proprietary solutions (except for games) and went for Open Source ones instead, which has yielded the benefit that since I moved over to Linux for good a few months ago, I have yet to be faced with needing something I used to use in Windows and not finding a Linux native version.
I’m sure I’ll end up in the same kind of situation you describe.
By the way, have you tried “Bottles”? From what I’ve heard (but did not test myself yet) it might help there and it’s not specifically for games.
Bazzite is the answer you search for. Learn the terminal & eventually get a grasp on why atomic distros are cool and you’ll be okay. I was on windows for years & when I learned the terminal for that it was like I was giving God powers.
The only thing I’m trying to install linux on is my Raspberry Pi. Upon googling Bazzite, it doesn’t seem to support Raspberry Pi.
Also, I’ve been trying to learn terminal off and on for 15ish years, with no luck. I’ve been trying to get the fan to work, unsucsessfully on my raspberry pi, for 4 years now. Apperently I have to compile some code…I don’t know what that means…
What the fuck are you on about? I just build a Raspberry Pi based console running RetroPie with a custom cooler, fan, and power button with LED indicator. Check out my recent posts to 3D printing.
I compiled nothing but RetroPie since the Pi 5 isn’t officially supported but it was dirt simple to do. Install Raspbian, clone RetroPie repo, run install script, press enter on the first option, wait a few hours.
Once again, you just suck at computing. Especially if after 15 years you still can’t Bash. In 15 years I built a career as a senior linux engineer.
So you’re stating on this post that you understand coding, and know how to compile. You’re trying to “insult” me by saying I suck at computing.
Except I’m not insulted. You know who else sucks at it? EVERYBODY. It’s like an auto mechanic trying to insult you for knowing how to change a muffler, and how it’s so easy.
I don’t know how to change a muffler. I just want to drive the car. Just like everybody else.
I just want to push a button, have my fan work, and play retro games. I don’t want to have to bash in terminal. I don’t want to compile a program. I just want to play video games.
And you know who else just wants it to work with no programming knowledge needed? EVERYBODY.
THAT is the reason that after 30+ years linux is at an all time high user base with less than 5% of the market, despite Apple being expensive as hell in a tough ecconomy, and Windows being universally agreed on as being dog shit. People STILL don’t want to switch to linjx because NOBODY understands it or wants to deal with it.
They’d rather deal with Windows 11 spying on your screen, or paying an assload for a mac than deal with linux.
I made a fucking console from the ground up. I didn’t do it to be easy – I did it because I could, and now I have something unique that is amazing to use, gorgeous to look at, runs everything up to Dreamcast/Dolphin with ease. And anyone can do it with the STLs I give away.
It even supports bluetooth audio but I will admit getting that to work was the only pain point of the whole build, but mostly because my un-official build didn’t have bluetooth support out of the box for audio so I needed to install the pipewire service and enable audio to the bluetooth device. Still only took a few minutes to work out.
Compiling means that you take code then run that code trough a program that checks if the code works like intended. After that it will put out a binary/exe/whatever that you can work with further.
From wiki:
In computing, a compiler is a computer program that translates computer code written in one programming language into another language. The name “compiler” is primarily used for programs that translate source code from a high-level programming language to a low-level programming language to create an executable program. There are many different types of compilers which produce output in different useful forms.
Open terminal > cd (command to change directory) into the directory where the code is that you want to compile > then run the compiler
In rust I would CD into the directory that I have written my code in. Let’s say user/rust/projects/example1 with the command:
cd user/rust/projects/example1
Now every command I type will be executed on that directory. The tool I use is called “cargo” the command to compile is “build”.
So with that information I type:
cargo build
While being in user/rust/projects/example1 and when I did everything right my Programm will compile and the result of that can be found in a folder in that project. Something like:
user/rust/projects/example1/build/prod
Hope that helps to give a overview of how the process is supposed to go when everything works without a problem.
The code is your ingredients, you put the ingredients together, then bake it (compile). When it’s done you have a pie (a program you can execute and run).
Worst case scenario you can take it apart & put it back together to maybe find a defective part. Terminal is tricky because of the language barrier. It’s all just coding with extra steps which isn’t meant to dumb it down.
Build a pc.
Install linux.
Get confused by linux.
What the fuck does linux want from me???
Rip hair out.
Be bald.
People confuse you for skinhead.
Wear wig.
Wig blows off on sunny windy day.
Lose wig.
Be sad.
This is absurd. Where’s the step to grow a beard and become a hobbit?
Step 0
Linux is easy.
Not compared to using a console.
Consoles are easy, and I love my PS5 for chilling and playing games, and I love my Linux PC for its power and freedom from corporate bullshit.
Wait till you realize PlayStation is just Free BSD. 😏
Streaming with Sunshine 🌞 and Moonlight 🌙 is really spiffy too.
Playing games on my deck in bed with the power of my beefy PC 🧠🤯.
Plugging my Steam Library Micro SD Card from my deck <=> PC is as easy as a using Switch™ carts.
That you don’t have admin access to. Good for not fucking it up, bad for freedom.
It’s remarkably difficult to really fuck up freebsd. On Linux, getting boots to fail is easy. FreeBSD is quite a bit more robust in that regard, as the base image isn’t updated piecemeal.
I’d easily make the trade of linux standard being impossible to fuck up without rooting it, if it meant it became as easy to run as a commercial OS.
You just described Android.
I like Android. If linux would be like Android, it would take off and be probably a lot more advanced than it is now. It’s currently built as a cell phone OS, because that’s what it is.
But if someone made a desktop android, that worked on raspberry pi, and pc’s, and could be self contained on a usb stick like you can with linux??? THAT distro might be the thing to beat Windows. Especially if it was free and open source.
Right now, on android, you can use terminal. Before I knew what terminal was, I downloaded it on an old rooted phone 10 years ago.
So YOU can do all the terminal stuff you want in this hypothetical desktop Android. But don’t make ME do stuff that I don’t understand.
Right now, standard linux is essentially a keyboard OS. Where the bulk of important functions come from the keyboard. Windows is a mouse OS where the bulk of important functions happen with a mouse.
And of the two styles, I prefer mouse. You prefer keyboard, but linux CAN do both…it just chooses not to.
Give me a distro where they don’t even include terminal. You can download it if you want, but it’s not standard.
So I don’t see why you’re saying Android is some kind of insult. I like Android.
I didn’t say it as an insult, just pointing it out. Fwiw, I use Waydroid on my computer, and it’s pretty okay. I don’t think there’s any desktop OS, Linux or otherwise, that doesn’t ship with a terminal program, though.
E: added “desktop”
So? Fisher price makes some good toys if you want something easy to play with.
Same to your “Linux is easy” comment then.
I’m talking about an operating system, not a toy. Playstation is a toy, like a tonka truck, or a tricycle. Your rebuttal is bad.
Cool, but you’re in a gaming community in a post about the Playstation, so I’m not really sure why you’re talking about operating systems and behaving like this when someone talks about the console the post is about.
You are the reason why people think Linux fans are obnoxious twats.
I love Linux. I’ve moved both my PC and laptop to Linux this year and gotten rid of Windows completely and I’m loving it. OpenSUSE Tumbleweed doesn’t get enough love.
That being said… Linux is not easy guys. This guy is full of shit. But I would still recommend trying it if you’re an enthusiast with this sort of inclination.
It can be. But people don’t usually read instructions or ReadMEs or Docs first?
I will never understand why not. Did you know:
National average Proficient 34% Basic 65%
That is totes a big ooof and explains a lot about many people. @.@
If I had to read documentation first, I wouldn’t be using Linux. We write software so we can automate things, so we should be able to automate away most of the troublesome parts until we’re just left with a useful device that does its job.
May I introduce you to republicans, and the bible belt?
And Windows is hard
Show me your hair.
Use rats as wig
“Honey, don’t look”
As a windows main but steam deck user, can confirm Linux being confusing.
Fucking wine prefixes.
To be fair, it’s just because windows is the most used and common desktop operating system and the two OSs are different. People would be confused about windows too if the tables were turned.
Also the Linux community is toxic and overcomplicates things for no reason.
What’s confusing about wine prefixes apart from the fact that wine itself doesn’t come with a graphical interface to manage them? On a Deck, Steam should handle these for you
Calling them “prefixes” is about the total of the confusion. Call them “instances” or even just “boxes” and it’s suddenly clear what they do.
(The only reason I’m not using “sandbox” is because they don’t really provide sandboxing from a security point of view, only a kind of separate instance with its own configuration but with access to everything via the Z drive)
Once you figure out that using a different “wine prefix” only really means a separate “Windows” with it’s own config and file structure there’s nothing confusing about it.
Oh I know what prefixes are. Configuring them is the bitch part
I just use Lutris, which generally does most of that work for me.
Same. However some mod programs that rely on Windows prerequisites like C++ and .NET don’t have that (which is where my frustrations were stemming from)
Ah.
I have so far avoided that specific pit, but that’s because for maybe decades now and still whilst using Windows as my main I’ve avoid proprietary solutions (except for games) and went for Open Source ones instead, which has yielded the benefit that since I moved over to Linux for good a few months ago, I have yet to be faced with needing something I used to use in Windows and not finding a Linux native version.
I’m sure I’ll end up in the same kind of situation you describe.
By the way, have you tried “Bottles”? From what I’ve heard (but did not test myself yet) it might help there and it’s not specifically for games.
Yep! Have bottles installed along with protontricks
I was led to believe you could put windows on steamdeck? Am I wrong? I don’t have one.
You definitely can. The UI from Steam OS (Linux based) is much better though.
You could, but you wouldn’t
Bazzite is the answer you search for. Learn the terminal & eventually get a grasp on why atomic distros are cool and you’ll be okay. I was on windows for years & when I learned the terminal for that it was like I was giving God powers.
The only thing I’m trying to install linux on is my Raspberry Pi. Upon googling Bazzite, it doesn’t seem to support Raspberry Pi.
Also, I’ve been trying to learn terminal off and on for 15ish years, with no luck. I’ve been trying to get the fan to work, unsucsessfully on my raspberry pi, for 4 years now. Apperently I have to compile some code…I don’t know what that means…
What the fuck are you on about? I just build a Raspberry Pi based console running RetroPie with a custom cooler, fan, and power button with LED indicator. Check out my recent posts to 3D printing.
I compiled nothing but RetroPie since the Pi 5 isn’t officially supported but it was dirt simple to do. Install Raspbian, clone RetroPie repo, run install script, press enter on the first option, wait a few hours.
Once again, you just suck at computing. Especially if after 15 years you still can’t Bash. In 15 years I built a career as a senior linux engineer.
The Super Notendo – https://discuss.tchncs.de/post/22628904
I just taught myself parametric CAD including both solid body and surface modeling in 3 months.
So you’re stating on this post that you understand coding, and know how to compile. You’re trying to “insult” me by saying I suck at computing.
Except I’m not insulted. You know who else sucks at it? EVERYBODY. It’s like an auto mechanic trying to insult you for knowing how to change a muffler, and how it’s so easy.
I don’t know how to change a muffler. I just want to drive the car. Just like everybody else.
I just want to push a button, have my fan work, and play retro games. I don’t want to have to bash in terminal. I don’t want to compile a program. I just want to play video games.
And you know who else just wants it to work with no programming knowledge needed? EVERYBODY.
THAT is the reason that after 30+ years linux is at an all time high user base with less than 5% of the market, despite Apple being expensive as hell in a tough ecconomy, and Windows being universally agreed on as being dog shit. People STILL don’t want to switch to linjx because NOBODY understands it or wants to deal with it.
They’d rather deal with Windows 11 spying on your screen, or paying an assload for a mac than deal with linux.
Some of us like linux and want to deal with it…
Boy that’s a lot of work just to play some old crap from more than 30 years ago
I made a fucking console from the ground up. I didn’t do it to be easy – I did it because I could, and now I have something unique that is amazing to use, gorgeous to look at, runs everything up to Dreamcast/Dolphin with ease. And anyone can do it with the STLs I give away.
It even supports bluetooth audio but I will admit getting that to work was the only pain point of the whole build, but mostly because my un-official build didn’t have bluetooth support out of the box for audio so I needed to install the pipewire service and enable audio to the bluetooth device. Still only took a few minutes to work out.
Compiling means that you take code then run that code trough a program that checks if the code works like intended. After that it will put out a binary/exe/whatever that you can work with further.
From wiki:
And I have no idea what that means.
How do you reboot? You click start>power>reboot.
I know what that means.
Ask me to compile a script? Uhhhhh…
Open terminal > cd (command to change directory) into the directory where the code is that you want to compile > then run the compiler
In rust I would CD into the directory that I have written my code in. Let’s say user/rust/projects/example1 with the command:
Now every command I type will be executed on that directory. The tool I use is called “cargo” the command to compile is “build”.
So with that information I type:
While being in user/rust/projects/example1 and when I did everything right my Programm will compile and the result of that can be found in a folder in that project. Something like:
Hope that helps to give a overview of how the process is supposed to go when everything works without a problem.
The code is your ingredients, you put the ingredients together, then bake it (compile). When it’s done you have a pie (a program you can execute and run).
A lot of people would rather just go to a store and buy a pie.
the benefits of Bazzite are centred around it having good performance with nVidia / AMD / Intel GPUs.
RasPi doesnt work with those GPUs, so it makes sense Bazzite wouldn’t support it.
Worst case scenario you can take it apart & put it back together to maybe find a defective part. Terminal is tricky because of the language barrier. It’s all just coding with extra steps which isn’t meant to dumb it down.
Yeah, and I don’t know coding. I need it dumbed down.
to be fair, the Raspberry Pi has never been pitched as an idiot-proof consumer appliance.
it is supposed to be a cheap way for people to get into studying programming /computing / electronics.
Correction…it’s never been pitched that way by the makers of raspberry pi.
I first learned of it on youtube by some guy showing how easy it was to set up, and get your home arcade up and running in 30 minutes.
Yeeeeaaaahhhh…no.
Sorry you’re dumb. All you need for retropie is a RP4 and a SD card. The image burns directly to the SD card, insert, power on, play games.
Not everyone is a natural Linux user, no need to call other dumb for not knowing something you may know about.
But the problem is, I can’t get the fan to work. So the whole thing overheats until I fix that problem.
You forgot the part where you get angry, because your hdmi doesnt work with linux