- NTSync coming in Kernel 6.11 for better Wine/Proton game performance and porting.
- Wine-Wayland last 4/5 parts left to be merged before end of 2024
- Wayland HDR/Game color protocol will be finished before end of 2024
- Nvidia 555/560 will be out for a perfect no stutter Nvidia performance
- KDE/Gnome reaching stability and usability with NO FKN ADS
- VR being usable
- More Wine development and more Games being ported
- Better LibreOffice/Word compatibility
- Windows 10 coming to EOL
- Improved Linux simplicity and support
- Web-native apps (Including Msft Office and Adobe)
- .Net cross platform (in VSCode or Jetbrains Rider)
What else am I missing?
I’m a Linux dinosaur user since mid 00’s and I confirm that despite huge efforts to make it as seamless as possible, it still sucks today. The problem is that you even have different file pickers (that’s what xdg-desktop-portal tries to mitigate but some applications will do it the traditional way by including toolkit library and filepicker from it, or they will even implement their own), there’s a great freedom to how drives can be mounted and multiple systems to manage drive mounts. It’s managed by gvfs or kio or something else, the behavior is a little differently every time. There are attempts to handle all automatic mounts in /run/media and while most distros conform to that, some won’t.
What I would recommend is to
Good tips thank you!
The major difference for me was that drives are shown in the mnt folder
This is not intuitive but like much other, makes sense once you know it
This isn’t intuitive because you can mount anything (mostly) anywhere you want under any path. The whole Linux ecosystem never decided one standard path or mounting method. If you want a disk to be mounted under
/home/$USER/Games
where/home
is also mountpoint to something else, you are free to do so. Desktops automate it and expose UI controls, yet again some apps are from GNOME world, some other from KDE or else and they have different UX and way to expose mounted storage. And I agree it’s not ideal, especially for newcomers.Oh, and two more random tips:
df
,lsblk
ormount
can help checking out state of mounted filesystemsNice thank you!