I should’ve used it sooner rather than last year when they announced AI integration to Windows. Every peripheral I tried is just worked without needing to install drivers, and it works better and faster than on Windows, just like today when I tried to use my brother’s 3D printer expecting disappointment, but no, it just connected and was ready to print right away (I use Ultimaker Cura), whereas on my brother’s Windows computer I have to wait like 20 seconds; sometimes I have to disconnect and reconnect it again for it to see and ready to use. Lastly, for those who are wondering, I use Vanilla Arch (btw), and sorry for bad English.
My personal experience has been frustrating each time. I’ve tried to switch over at least 3 times over the years, but I always gave up. This time, I installed Ubuntu and immediately had to spend 3 hours trying to get my Xbox controler dongle to work, but just couldn’t do it. Found a driver online that people said would work, it didn’t because it wasn’t properly signed, tried to sign it but the signing app just didn’t create the certificates needed. Gave up, I have Bluetooth so I’d live, though I’d rather use the dongle if I can.
I then immediately encounter another problem that couldn’t be fixed (for the life of me I can’t remember what it was exactly) and just gave up.
The previous time I tried it I remember that among other things, one of my main problems was the lack of clipboard history (which I use extremely often). I tried installing an app for it but all of them either didn’t work or didn’t work the way I want them to or I just didn’t like their look and feel.
I also hate the font rendering on Linux, it always looks blurry compared to Windows, and the double titlebars most apps have (e.g. Discord, at least on Ubuntu), I like my screen real-estate.
Linux is awesome
& so are you ^🥁 1, 2, 3, 4… 🎸^
Aww, thank you
Most of my library just works under Linux.
Plus it is a pleasure to code under Linux.
You would be suprised how cool Linux can get when you go deep down the rabbit hole, if you really want to go deep into Arch I reccomend trying a tiling window manager like Sway or Hyprland :3
(Btw these are the dotfiles I use: https://github.com/koeqaife/hyprland-material-you)
The Hyprland dev is enough to make sure I never use Hyprland
Ive yet to find a tiling Window manager that looks as good
Yeah, it does look great.
But in terms of tiling WMs, I have high hopes for Cosmic! It’s coming along really well (though not as pretty as Hyprland)
Without having read through your codebase, are you using someone else’s top bar, or did you write it yourself in ags?
I wasn’t satisfied with the performance of any bars I tried for X11 so I wrote my own custom one using the eww widget system. I’ve tried ags for a bit but I couldn’t even make an empty bar window that attaches itself to the top of the screen and spans the entire width of my single monitor. 😅 That part worked flawlessly in eww.
Lucky. I couldn’t get HDR working properly, and most of my GPU features were missing because Nvidia refuses to support Linux (and AMD GPUs can’t keep up). So I had to go back to Windows.
Been trying to switch to Linux since 2004. I’ll try again in 5 years.
Nvidia has an open driver now I believe? I install
nvidia-open
.Curious to know what you mean by:
AMD GPUs can’t keep up
And,
I had to go back to Windows
you had to, because of HDR? I have an Nvidia RTX 2080 Super, and I don’t know of any features that are missing. Games can do DLSS and ray tracing and whatever else they need. For me, support seems to be absolutely beast on Linux. 🤷♂️
Does that driver support SDR to HDR conversation, AI upacaling, and most importantly: the 3D Settings page? I can live without the first two features, but I can’t believe that there is no 3D Settings page in Linux. It has so many graphics settings that aren’t available in most games.
And yes, AMD GPUs can’t keep up. Especially if you like Ray Tracing. I’m not an AMD hater; I have a 7700X
Does that driver support SDR to HDR conversation, AI upacaling,
Assuming you mean conversion and upscaling. DLSS is AI upscaling, right? I don’t think X11 has much support for HDR. But I’m not well versed in display servers at all to make that claim firmly.
and most importantly: the 3D Settings page? I can live without the first two features, but I can’t believe that there is no 3D Settings page in Linux. It has so many graphics settings that aren’t available in most games.
Ah, you mean that custom program where you set a bunch of settings externally and specifically for each game? I think the program
nvidia-settings
has that? Try it out!And yes, AMD GPUs can’t keep up. Especially if you like Ray Tracing. I’m not an AMD hater; I have a 7700X
Ah that’s a shame. Newer AMD cards are surely better than my old 2080 Super though eh. 🙃
DLSS is AI upscaling, right?
No, not DLSS. RTX Video Enhancement. Makes YouTube look so much better.
I think the program
nvidia-settings
has that? Try it out!It does not. I’m talking about this page. Almost every game in existence is missing several settings that are on this page, especially GPU Power Management Mode, Negative LOD Bias, Max Framerate in the Background, and Max VR Prerendered Frames.
Try Nobara or Bazzite. Plasma supports HDR fairly well, and those distros includes a pile of tweaks for Nvidia devices. It might get you sorted.
Tweaks and preconfigured distros aren’t solution here. The driver is still lacking certain features and that can only be fixed by NVIDIA
Yes. Yes it is.
Can anybody comment on their experience using Arduino and ESP with Linux? Especially does Linux handle COM ports better than Windows? There’s a seemingly immortal problem of COM ports becoming unusable until you go into Device Manager and uninstall them (again and again) - and if that doesn’t work, reboot Windows. I experience this less often now than say 5 or 6 years ago, and sometimes it’s my fault, but jeez.
You might have issues with permissions for serial ports on some distros, but there are loads of easy to follow guides for that. Linux definitely handles them better than windows though. I never had issues where they just stop working like on Windows.
I regularily program Arduinos in Arduino IDE v2 (https://flathub.org/apps/cc.arduino.IDE2) and ESPs via the ESPHome web flasher and the esphome CLI tool.
Works flawlessly once you added yourself to the dialout group as mentioned by @StorageB@lemmy.one.
COM ports as handled by Windows is misery anyways. Linux definitely does it better
Yes, com ports work way better than in windows. I’ve done a lot of embedded development on linux and it’s way more pleasant than in windows. One thing you do have to keep in mind is that access to com ports (USB and real) requires root access by default, but once you’ve set the udev rule up, it becomes accesible to normal users and/or group of users. After that, it works flawlessly. Android dev also works great and imo better than on win. Proprietary jtags may be an issue, but I’ve never actually had an unsolvable situation.
Thank you, that’s massively helpful! Pasting your comment into my ESP32 project notes so when I soon move to Linux I can remember to figure out the udev rule and jtags.
Running this command was the literally the only thing required for me to get access to the com ports. After that, everything worked perfectly.
sudo usermod -a -G dialout $USER
(note that $USER is part of the command - do not replace that with your actual username)
Pasting this right into my project doc. Thanks so much!
Same, programmed an arduino last week, that was all I had to do too
I’ve had wemos d1 boards from AliExpress show up as a brltty and the braille teletype driver grabs the device. Just something to look out for on some distros
That’s a bizarre glitch I never would have known to look for - thanks!
Yeah I’d rather deal with this than a blind persons gear not work
How do you have Cura installed?
You can get it on their official website
So you just used the AppImage. I seem to recall having issues with it, but that’s been awhile. I’ll have to give it another try. Are you using Wayland?
Yes I use the appimage package, I don’t have any issue with it on Wayland, or you can get it on the AUR, you might need to follow this procedure and wait a minute for Cura to detect the USB
I recently made the switch to linux as well and I have it on my laptop and gaming PC. I do keep a portable install of windows on an external drive for more niche cases, such as music production which I had terrible luck with on Linux. When I booted up my laptop with the windows drive, I noticed that my keyboard backlight wasn’t working. And it took me a second to realize that Windows doesn’t come with basic drivers… In Linux mint, my keyboard backlight worked right away. I also wish I made the jump to Linux much earlier.
For music prod on Linux, have you tried Reaper?
Yes. I’ve made posts about my problems before. But I use an E drum kit to trigger vsts in a daw. It’s just easier for me to use windows.
Yeah. I’ve been trying to get the word out.
I’ve been screwing with Linux for decades, but somewhere along the line, Linux got easier and more reliable than Windows. I was as surprised as anyone. My last couple Linux installs were a cake walk.
I also like Linux more than Mac, but I’m a tinkerer at heart, and Mac’s lack of fiddly bits (customization options) has kept me from staying on it long.
Same here.
Daily driver is a mac but I always use a desktop Linux machine at home.
I came.
I saw.
makes eye contact
shuts the curtains
I conquered.
I came again.
I… I… oops, sorry.
I’ve been using it on and off since 1994. I still have a slackware dist on CD with the 1.1 kernel. I think Linux is great although I still prefer to use Windows, and Linux via WSL which is my optimal set up these days.
I use Vanilla Arch (btw), and sorry for bad English.
Sure buddy… Is the “bad English” in this thread with us right now?
Is the “bad English” in this thread
It’s in every thread right now.
I laughed when I saw this. Like, it was a guy excited that his computer is working better, including with his printer. Maybe a teensy bit of punctuation I’d do differently, but whatever. It’s the Internet. Then suddenly “oh yeah sorry English isn’t my first language and I’m sure you can all see that”
Yeah, I assumed they just had a typo or two like we all do from tiem to time.
Your English is great, OP
Welcome to the brotherhood.
Only problem I ever had with Linux was having too many different versions of the Nvidia driver installed, so it would take lots of storage. It was easy to fix.