linux

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

downhomechunk, in Writing program
@downhomechunk@midwest.social avatar

KDE comes with its own office suite. I’ve always preferred libre office so I don’t have much experience with it, but it’s there.

VelociCatTurd, in Using Ubuntu 23.10 with QEMU/KVM. I want to share 3 folders with Windows 10 (guest) but only one is showing up

I encountered a similar issue with NFS a very long time ago. I had to set the option for each of my NFS exports to have a fsid and make sure the fsid is different between them. So one folder has the option fsid=1 Second folder has fsid=2 and so on. I hope this helps point you in the right direction.

Tippon, in Is linux good for someone tech illererate.

Probably the most important thing to ask before you do anything is, do you have someone who can fix the computer if you screw it up? Installing Linux means removing Windows, so if you get half way through and get stuck, you’re going to be left with a computer that doesn’t work. Will you be able to recover it, or have someone who can?

Once you’re on the desktop, most of what you do is going to be very similar to Windows, except most of the programs will have different names. I would imagine that the vast majority of people can use Linux once it’s installed, especially if they’re in your situation, where they’re not used to computers and don’t have any habits from Windows.

SnokenKeekaGuard, (edited )
@SnokenKeekaGuard@lemmy.dbzer0.com avatar

Oh my thats an issue. I don’t know anyone who uses linux. In my country everyone just has pirated windows as I do. Thanks for the warning.

neidu,

Create a linux mint install USB. When you boot from it, you’ll be in a fully functional linux OS, without installing anything. This way you can try it out before making a commitment.

Although a recurring recommendation is to install linux on a second PC to try it for a while.

SnokenKeekaGuard,
@SnokenKeekaGuard@lemmy.dbzer0.com avatar

This sounds good. Thanks

Tippon,

It doesn’t have to be someone who knows Linux, you just need to be able to get back to a working computer. If it means going back to Windows until you know more, that’s fine, just keep learning :)

d3Xt3r, (edited )

Are you sure about that? Most countries around the world have a Linux user group of some sort. Find out what your local group is called, get in touch and I’m sure you’ll be able to find someone who’ll be more than happy to help.

fedoraproject.org/wiki/LinuxUserGroups

If your country isn’t on the above page then Google for (your country name) “Linux User Group”

Lem453, in Writing program

Onlyoffice

Is UI mimics ms office and has comparability with word files.

Not open-source and has some limitations without paying but works on windows and Linux. Can even be self hosted yourself to provide a web UI for access to your own files Google docs style.

Omega_Jimes, in KDE's Nate Graham On X11 Being A Bad Platform & The Wayland Future

I love Wayland until I don’t. I honestly don’t think about it, it gets out of my way and my system is stable, until I go to use something like scrcpy that just doesn’t work at all. Luckily, the amount of things that straight up don’t work is shrinking.

jeansibelius, in What distros have you tried and thought, "Nope, this one's not for me"?

Ubuntu

AllNewTypeFace, in Make a Linux App
@AllNewTypeFace@leminal.space avatar

The “Where to start” section should be a “Not You” meme, with Electron in the middle square

unionagainstdhmo,
@unionagainstdhmo@aussie.zone avatar

Electron can be done well, like vscode does. In saying that, it almost never seems to happen

SuperIce,

I’m curious what witchcraft Microsoft did with VSCode to make it so responsive and performant when no other electron app is.

unionagainstdhmo,
@unionagainstdhmo@aussie.zone avatar

Electron was made for Atom and I think, though I’m not 100% that code is based on Atom

JackbyDev,

The term to look up is Monaco. That’s the secret sauce part of VS Code that made it faster but I don’t know enough about it to describe it well

bellsDoSing,

Just looked it up a bit: microsoft.github.io/monaco-editor/

AFAIU, monaco is just about the editor part. So if an electron application doesn’t need an editor, this won’t really help to improve performance.

Having gone through learning and developing with electron myself, this (and the referenced links) was a very helpful resource: www.electronjs.org/docs/latest/…/performance

In essence: “measure, measure, measure”.

Then optimize what actually needs optimizing. There’s no easy, generic answer on how to get a given electron app to “appear performant”. I say “appear”, because even vscode leverages various strategies to appear more performant than it might actually be in certain scenarios. I’m not saying this to bash vscode, but because techniques like “lazy loading” are simply a tool in the toolbox called “performance tuning”.

BTW: Not even using C++ will guarantee a performant application in the end, if the application topic itself is complex enough (e.g. video editors, DAWs, etc.) and one doesn’t pay attention to performance during development.

All it takes is to let a bunch of somewhat CPU intensive procedures pile up in an application and at some point it will feel sluggish in certain scenarios. Only way out of that is to measure where the actual bottlenecks are and then think about how one could get away with doing less (or doing less while a bunch of other things are going on and then do it when there’s more of an “idle” time), then make resp. changes to the codebase.

JustEnoughDucks, (edited ) in What am I doing wrong?
@JustEnoughDucks@feddit.nl avatar

Hey, just to let you know, software raid nowadays is quite a bit better for home NAS that hardware raid. I would suggest using ZFS and zpools as a software raid.

arstechnica.com/…/zfs-101-understanding-zfs-stora…

If you are already past that point though. As far as sharing, if you are just using it as a small home server or NAS and want things simple, you could just use TrueNAS. It would make things much easier.

If you are running your main computer and sharing the files, I would suggest trying NFS instead of Samba. Samba shares are notoriously unreliable and buggy. Windows has NFS support for a while now for your other machines blog.netwrix.com/…/mounting-nfs-client-windows/

h3ndrik, (edited )

100% agree. Software RAID is the thing you want as a consumer. Doesn’t need to be ZFS. mdraid is another good and well tested option for the traditional way of using RAID.

sabreW4K3, in Fedora 40 Eyes The Ability To Boot Unified Kernel Images Directly
@sabreW4K3@lemmy.tf avatar

Is this good?

vanderbilt,
@vanderbilt@beehaw.org avatar

Yes, in my opinion. The configuration of grub (boot loader) is just another step to go wrong, and this will eliminate that possibility. Additionally, it will prevent stupider operating systems (cough Windows) from accidentally overwriting the boot loader during an update.

sabreW4K3,
@sabreW4K3@lemmy.tf avatar

Does that mean that the OS would have to handle version booting?

vanderbilt,
@vanderbilt@beehaw.org avatar

My understanding is that’s a yes.

sabreW4K3,
@sabreW4K3@lemmy.tf avatar

Thank you

Flaky, (edited )
@Flaky@iusearchlinux.fyi avatar

It basically means instead of relying on a bootloader (e.g. GRUB or systemd-boot) the computer boots the kernel directly. Generally there should be no change besides having to use the BIOS menu to manually select a kernel.

sabreW4K3,
@sabreW4K3@lemmy.tf avatar

Thank you, you’re awesome!

Flaky,
@Flaky@iusearchlinux.fyi avatar

No problem! :)

FWIW, a lot of the DIY distros (Arch and Gentoo being the ones on most minds) allow this already so it’s nothing new. It’s just Fedora implementing it that’s new I guess. If you’re curious, the term to search is “EFISTUB”.

Blisterexe,

Is the benifit making secure boot work better?

duncesplayed,

I think for most people they won’t care either way.

Some people do legitimately occasionally need to poke around in GRUB before loading the kernel. Setting up certain kernel parameters or looking for something on the filesystem or something like that. For those people, booting directly into the kernel means your ability to “poke around” is now limited by how nice your motherboard’s firmware is. But even for those people, they should always at least have the option of setting up a 2-stage boot.

Rin, in Vote on the new KDE Plasma 6 Logo
b9chomps,
@b9chomps@beehaw.org avatar

Actually, hexagons are the bestagons

Cwilliams,

Why is Grey not on Lemmy yet?

d3Xt3r, (edited ) in Debian Bug report logs: #1057843 - linux: ext4 data corruption in 6.1.64-1

This was already fixed in 6.1.66. Both are “old” kernels, so it’s nothing to worry about, unless you/your distro was deliberately staying on 6.1 for some odd reason (yes, I’m aware 6.1 is LTS, but so is 6.6).

lemmyvore,

Debian Stable is on 6.1.

syd, in Make a Linux App
@syd@lemy.lol avatar

WDYM so I shouldn’t make an anime flavored, Arch based distro named Archuwu?

cocolopez,
@cocolopez@lemmy.world avatar

ETA iso, wen?

Doombot1,

Where is it? Give it to me now

Helix,

Bruh this is needed

cerement,
@cerement@slrpnk.net avatar

UwUntu needs some competition

Murdoc,

I can totally picture this. Cutesy sound effects, characters pulling up/down menus, sparkle effects…
Where can I get it?

cerement,
@cerement@slrpnk.net avatar
Murdoc,

Thanks

CatTrickery,

Reminds me of this

0x2d, in Video editor for Linux?

Kdenlive

Openshot

espais,
@espais@programming.dev avatar

+1 for openshot if you need a no frills editor.

SnokenKeekaGuard, (edited ) in Is linux good for someone tech illererate.
@SnokenKeekaGuard@lemmy.dbzer0.com avatar

Ok i’m reading up on this sub and not arch seems to be the consensus for a newbie. I want to download smth and just have it there without thinking bout it the way it is with windows. Not a hobby that i spend hours on.

Apparently theres many versions of linux you can get?

jvrava9,
@jvrava9@lemmy.dbzer0.com avatar

Linux Mint is very easy with GUI’s for everything you need and the UI is pretty similar out of the box. Try it out on a live usb before making the switch.

SnokenKeekaGuard,
@SnokenKeekaGuard@lemmy.dbzer0.com avatar

Thanks. Just opened the linuxmint website and it looks promising

Flaky,
@Flaky@iusearchlinux.fyi avatar

Yeah, don’t use Arch if you’re new to Linux and not tech-literate. You seem pretty interested in Linux Mint from other comments here, I’d say give that a go.

SnokenKeekaGuard,
@SnokenKeekaGuard@lemmy.dbzer0.com avatar

Considering the nature of this converstaion, i love your instance name lol

PotatoesFall,

i gotta join in with the other Linux Mint voices here. It’s very user friendly. You just need to know:

  • the desktop environment is called Cinnamon. this will help you google stuff.
  • the system package manager is called APT, and if you just use the update manager you won’t have to interact with it directly, but it’s good to know.
  • in the software center many apps have the options sytem package or flatpak. system package means it goes through APT, flatpak is a sandbox system that is good for isolating your apps from your system. imo always choose flatpak, except for steam.
chalupapocalypse, in Windows 11 scores dead last in gaming performance tests against 3 Linux gaming distros

Cool what about games with anti-cheat

Pantherina,

Cool what about malware? /s (no really anticheat is malware)

teichflamme,

Anticheat isn’t malware. Malware has adverse effects on your system.

AC uses some techniques that some forms of malware also use (but far from all)

undefinedValue,

Malware defined as any software that does not benefit the user but wastes systems resources would fit here.

PM_Your_Nudes_Please,

And that definition depends on how you define “benefitting the user”. If someone has an online match ruined by a hacker, I’d argue that they would have benefitted from the game running some kind of anticheat.

Do we define user as the singular individual person? Or do we consider the user as a collective, and factor in the larger benefit to the masses? It could even be argued that the people running cheats are the ones running malware (specifically, malware that targets the other users in the match) and should therefore be treated the same way we treat people who use more traditional viruses and trojans at the detriment to others. The same way you wouldn’t want some virus-ridden machine connecting to your home network, (you’d probably want everyone to at least be running a basic virus scanner and have common sense when browsing,) you would want everyone in the game running anticheat to ensure there is no malware.

Very few people would say that it’s okay to waste others’ time and computer resources on a bitcoin miner trojan… Most people would (correctly) determine that it is theft. But then when it comes to online games, the same people feel entitled to waste other peoples’ time and computer resources by ruining their matches.

018118055, (edited )

If your security relies on software in the control of the end user you have a problem.

PM_Your_Nudes_Please,

That’s largely a corporate decision that is out of the hands of the programmers. Generally speaking, security specialists would agree with you. But running anticheat on the server costs server resources, which means you need more servers to accommodate the same number of players. Running it client-side is a cost cutting measure mandated by the corporate bean counters who did the math and concluded it’d be cheaper for the company to spend the users’ computer resources instead.

While I agree that client-side security isn’t the best solution, it’s certainly better than no solution. It’s the same argument people have against self-driving cars. The self-driving cars don’t need to be perfect; They just need to be better than the average driver. If they can reduce the number and severity of accidents that are currently happening without them, then they should be implemented. Even if the solution isn’t perfect. Because an imperfect solution is better than doing nothing at all.

018118055,

You’re right and it’s a pragmatic approach to the problem. They only need broad technical effectiveness to change user behaviour.

I’d argue that it’s not strictly cost cutting but cost transferring. The total client resources most likely exceed that which would be needed on servers.

teichflamme,

I don’t think that is a widely accepted holistic definition of malware. But even if, AC is not waisting resources. It’s taking the resources it needs to perform its job.

jimbo,

Anticheat benefits the users by…reducing the number of cheaters in games. Big concept to wrap your head around, I know.

woelkchen,
@woelkchen@lemmy.world avatar

There are several forms of anticheat. The ones that just run when the game is running, is usually fine. However, there is the Riot anti cheat which just runs all the time and isn’t uninstalled when Valorant is uninstalled. That is malware.

sir_reginald,
@sir_reginald@lemmy.world avatar

what about single player games? how does that anticheat benefit any user?

jimbo,

Are there single player games with anticheat?

sir_reginald,
@sir_reginald@lemmy.world avatar

I know that Resident Evil games come with Denuvo, for example.

woelkchen,
@woelkchen@lemmy.world avatar

DRM isn’t anti cheat.

sir_reginald,
@sir_reginald@lemmy.world avatar

in the denuvo product page it is called anticheat by their creators

irdeto.com/denuvo/anti-cheat/

woelkchen,
@woelkchen@lemmy.world avatar

in the denuvo product page it is called anticheat by their creators

irdeto.com/denuvo/anti-cheat/

You’ve linked to their anti cheat which they also offer but it’s not their main product. Funny that you missed that, given that you were already on their web site and irdeto.com/denuvo/ spells out “Anti-Piracy technology” in huge font:

https://lemmy.world/pictrs/image/eb54700c-f4e1-4db3-96e7-4500a3375299.png

sir_reginald,
@sir_reginald@lemmy.world avatar

being sincere I just searched for denuvo anticheat to see if it was called like that.

woelkchen,
@woelkchen@lemmy.world avatar

There are games with single player and multiplayer modes that come with anti cheat. I had some game a few months ago that was a Steam freebie (can’t remember the name) whose anti cheat didn’t install properly on Windows and it didn’t allow me to launch regular single player, only mod mode.

usrtrv,

If you’re not just being facetious, areweanticheatyet.com is a good source.

According to them ~58% of anti-cheat games work. There’s been a large uptick of anti-cheat support since the Steam Deck.

According to ProtonDB, 86% of the top 1000 games on Steam function (Silver+ rating). It’s a pretty safe bet that the most of the missing 14% is probably due to anti-cheat.

tea,

Thanks for this. The one multiplayer game I’ve been consistently playing apparently got Linux anti cheat support enabled 2 months ago.

I think installing Linux on my gaming/work PC will be a winter holiday project for me 😀.

Now to pick a distro.

usrtrv,

Is it Hell Let Loose? I started playing it since they support Linux now, very well done Battlefield-like game. I haven’t played much BF since 1942.

tea,

Yep, that’s the one haha

chalupapocalypse,

Yeah mostly just talking shit. I love my steam deck.

jimbo,

I’ve been playing games that use EasyAntiCheat (Hunt Showdown and Chivalry 2) and they seem to work fine.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linux@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 18878464 bytes) in /var/www/kbin/kbin/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php on line 171

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10502144 bytes) in /var/www/kbin/kbin/vendor/symfony/error-handler/Resources/views/logs.html.php on line 25