526
20
submitted 1 month ago by spawnsalot@fedia.io to c/linux@lemmy.ml

Hi all, I've had a trawl around but can't quite find the answer I'm looking for. I'm currently on Windows with 5 separate physical storage drives with different purposes - OS, games, media, apps, random bullshit.

I've been trialling Linux on and off for ages and I think I've settled on Garuda for now. I'd like to have a similar style of separation under Linux if possible - in case I fancy a change of distro etc.

I'm assuming I can just leave my media drive as just a drive. My understanding is that apps/games are installed in the /usr/bin folder?

Is it possible or even worthwhile specifying a /usr/bin/apps and /usr/bin/games folder and pointing each folder to their respective drive? Or as both drives are the same make/model would it just be better to use them both as a single virtual volume?

Thanks in advance!

527
80
submitted 1 month ago by AndrewZabar@lemmy.world to c/linux@lemmy.ml

Hey all, I was about to setup uBlock Origin in chromium, when I saw the notice that it may soon be ended due to not following best practices, etc. I looked this up and some articles and posts state that Chrome is discontinuing content blockers / ad blockers soon. Will this apply to the chromium app in Linux?

Other than for testing purposes, my usage of Chromium is for the ability to make some sites into webApps. I just like some to be isolated with their own window and icon. The standard response I see to pretty much anyone is that they should switch to Firefox and stop wanting the webApp. I saw some comments that Firefox does not and will not implement webApps due to some security issues (?? not sure why). I don't understand how it is difficult just make a standalone window with a custom icon choice. I see no reason that has to compromise anything at all, but I am not a developer.

I'm getting off-track here. So, is Chromium going to go the way Google wants it to go for Chrome? It was my understanding that Chromium is kind of an offshoot and not just up to Google in terms of its course. Will we be able to use extensions that Google doesn't want, and have to get them from a new repository instead of the chrome web store?

Any insight on this would be appreciated, thanks.

528
20
submitted 1 month ago by that_leaflet@lemmy.world to c/linux@lemmy.ml
529
27
submitted 1 month ago by Petter1@lemm.ee to c/linux@lemmy.ml
530
194
531
110
submitted 1 month ago* (last edited 1 month ago) by ratzki@discuss.tchncs.de to c/linux@lemmy.ml

Hi, want to buy some used hardware to run with Linux (Gnome DE ON Mint, Debian OR ElementaryOS). Mainly Office use, transcoding, but also for casual gaming Half-life 2 and maybe some more modern games.

Are Thinkpads with integrated GPUs sufficient for that? Any nice alternatives which are sturdy and can be upgraded?

TIA!

EDIT: thank you for all the helpful input. Will check AMD options!

532
43
submitted 1 month ago* (last edited 1 month ago) by waspentalive@lemmy.one to c/linux@lemmy.ml

(Solved) I would like a small laptop to use to log medical data (Weight, Blood Pressure, etc) as I gather it. I need it to be small like 10'. it can be low power because I will probably use it only CLI, no GUI, but I need it to be inexpensive. ARM-based is ok, as long as I can SSH into my desktop machine.

533
71
submitted 1 month ago by j4k3@lemmy.world to c/linux@lemmy.ml

I've made the effort to secure mine and am aware of how the trusted protection module works with keys, Fedora's Anaconda system, the shim, etc. I've seen where some here have mentioned they do not care or enable secure boot. Out of open minded curiosity for questioning my biases, I would like to know if there is anything I've overlooked or never heard of. Are you hashing and reflashing with a CH341/Rπ/etc, or is there some other strategy like super serious network isolation?

534
0
submitted 1 month ago* (last edited 1 month ago) by e8d79@discuss.tchncs.de to c/linux@lemmy.ml

No this isn't a LTT video.

535
293
submitted 1 month ago* (last edited 1 month ago) by Charger8232@lemmy.ml to c/linux@lemmy.ml

The codenames for every major Debian release are named after characters from Pixar's Toy Story franchise. Debian's unstable release is fittingly named after Sid, an unstable character from the Toy Story movies.

536
30
submitted 1 month ago by that_leaflet@lemmy.world to c/linux@lemmy.ml
537
41
submitted 1 month ago by Mwa@thelemmy.club to c/linux@lemmy.ml

hi ik wine can translate userspace calls but i wonder if its possible to translate windows kernel level calls to linux ones (eg,kernel level anticheat,etc)

538
531
submitted 1 month ago by hellfire103@lemmy.ca to c/linux@lemmy.ml

cross-posted from: https://lemmy.ca/post/27756512

(Apologies if the link doesn't work; Google are dicks)

539
38
submitted 1 month ago* (last edited 1 month ago) by Unyieldingly@lemmy.world to c/linux@lemmy.ml

I been having issues with the cheap hp gaming laptop with Linux, One CPU core runs at 100% no matter that do i tried masking and disabling stuff, changing the Network card, adding Ram, and some desktops like Gnome forks had issues as well, KDE, and Mate work fine but it looks like it maybe has a Firmware, Driver or a Kernel issue, so far i tested it with Fedora, Fedora rawhide, Ubuntu and Mint, I'm going to test Debian next.

The laptop i had issues with Windows 11 works fine. https://www.walmart.com/ip/HP-Victus-15-6-inch-FHD-144Hz-Gaming-Laptop-AMD-Ryzen-5-8645HS-NVIDIA-GeForce-RTX-4050-8GB-DDR4-512GB-SSD-Mica-Silver-2024/5395277312

Edit Only Gnome 3 forks have issues with the Nvidia Drivers i will retest it at a later date with a new install and one CPU thread runs at 100% with all DE's and OSes but Windows 11.

Edit 2 I think i found the issue AMD APUs on some systems with Nvidia GPUs will spam the system the bug report i found said to disable the iGPU. also Gnome forks work fine i think it was my fault for not disabling secure boot.

540
86
Guide To GNU Coreutils (blog.robertelder.org)
541
113
submitted 1 month ago by gomp@lemmy.ml to c/linux@lemmy.ml

I've been looking around for a scripting language that:

  • has a cli interpreter
  • is a "general purpose" language (yes, awk is touring complete but no way I'm using that except for manipulating text)
  • allows to write in a functional style (ie. it has functions like map, fold, etc and allows to pass functions around as arguments)
  • has a small disk footprint
  • has decent documentation (doesn't need to be great: I can figure out most things, but I don't want to have to look at the interpter source code to do so)
  • has a simple/straightforward setup (ideally, it should be a single executable that I can just copy to a remote system, use to run a script and then delete)

Do you know of something that would fit the bill?


Here's a use case (the one I run into today, but this is a recurring thing for me).

For my homelab I need (well, want) to generate a luhn mod n check digit (it's for my provisioning scripts to generate synchting device ids from their certificates).

I couldn't find ready-made utilities for this and I might actually need might a variation of the "official" algorithm (IIUC syncthing had a bug in their initial implementation and decided to run with it).

I don't have python (or even bash) available in all my systems, and so my goto language for script is usually sh (yes, posix sh), which in all honestly is quite frustrating for manipulating data.

542
117
submitted 1 month ago* (last edited 1 month ago) by Sunny@slrpnk.net to c/linux@lemmy.ml

Hi.

Tried to install nix but am stuck with an issue I'm not able to resolve. Whenever I boot the system, it uses approx 5min on the boot-up of Nixos Stage #1 as seen in the picture. After a while it will boot into the system but without a GUI. I've done the installation twice, with different isos to make sure I didn't do it wrong. It only works if I downgrade to nixos 23.11, but if I update(+plasma 6) from there It results in the same problem.

The error is:

kernel: Acpi Error: Aborting method (long string) due to previous error (AE_AML_UNINITIALIZED_ELEMENT)

Have no idea what this error is, and there don't seem to be alot of info on it. Reaching out here to see if anyone is able to help me troubleshoot this, as I would really like to try latest Nixos.

543
20
submitted 1 month ago* (last edited 1 month ago) by Rentlar@lemmy.ca to c/linux@lemmy.ml

Some Lemmy user at one point had asked about a "multi-paste" feature, if there was a way to use keyboard shortcuts to display multiple clipboard items and copy/paste them out at will (this user mentioned similar to RTS games they like to play). ~~If someone can find that post, can you notify them and direct them here, please? I'm having trouble locating it but I recollect that it was within the last 3 months.~~ Edit: I found the post!

Somehow this was stuck in my mind when I accidentally pressed a keyboard shortcut, that showed my last 5 copied items. This isn't exactly what the user was looking for but I thought I'd publicize it here.

If you use Fcitx (because you need multi-language input) from the fcitx5 packages, then you may already have installed the clipboard add-on. You can use fcitx with just one keyboard layout. By default, it's activated by Ctrl+semicolon and shows the 5 last entries, but the number can be configured.

544
76
submitted 1 month ago by Shatur@lemmy.ml to c/linux@lemmy.ml

I searching for a tablet for drawing and discovered this one. Anyone tried drawing on it? I wondering if the experience is good.

On the page they doesn't mention if the screen supports drawing pens, but it's possible to order an MPP pen with it, so I assume that it works with Wacom or Surface pens?

545
22
submitted 1 month ago by Adonnen@lemmy.world to c/linux@lemmy.ml

I am trying to create a KVM/QEMU/Virt-Manager VM without exposing my IP/internet connection to it. I pay for a VPN subscription, and I typically access it through wireguard configs that integrate with my distro (Fedora 40 Workstation) and DE VPN menus. From my understanding, as I have them set up now, I can enable one of these configurations in my settings, and all of my traffic is routed through the VPN, except for my local network.

I want this VM guest to have all of its traffic sent to the VPN as well, with the exception of some connection between it and the host, so I could still access it from the host for utilities like ssh.

Is it possible to achieve this? When I looked online, it seemed to require some CLI configuration of IP routes, and I didn't feel confident not understanding the changes I was making, as I want to make sure it is impossible to leak; it just shouldn't have any access to my normal network. If my VPN is disabled on the host, then it simply shouldn't be able to access the internet.

546
66
submitted 1 month ago* (last edited 1 month ago) by j4k3@lemmy.world to c/linux@lemmy.ml

My old man has a bunch of .dox stuff saved. He has complicated large files saved that are not supported by any of the FOSS conversion tools. I've tried Libre office, Abi Word, and every command line tool and converter I can find. These are entire book sized files.

I have a W10 machine with Word. Is extracting the .exe and running it with wine feasible without making an epic mess or massive project of this?

547
1391
submitted 1 month ago by northmaple1984@lemmy.ca to c/linux@lemmy.ml
548
103
A Steam Deck Everywhere (blog.doomsdayrs.page)
submitted 1 month ago by doomsdayrs@lemmy.ml to c/linux@lemmy.ml

I figured out how to easily use Steam headlessly for Remote Play on Linux.

Took me a few hours to figure out, with some questions asked, but with this, I no longer have to deal with Sunshine or other janky ways of playing (steam) games remotely.

I'll be making a repository with some packaging andother convenience functions soon.

549
333

The link makes it seem like crap hardware, and sure 4gb of ram is really crappy. But how does this compare with one of my kid's Fire tablets? Does anyone have opinions on that?

550
177
submitted 1 month ago by theroff@aussie.zone to c/linux@lemmy.ml

Basically title. Do you know of any companies that use desktop Linux?

I can think of two in my area in Brisbane - Adfinis and Red Hat. Both have a pretty small presence here from what I last heard (several employees each).

My employer allows the Linux team to use Linux but it's discouraged and our lives are made somewhat difficult.

view more: ‹ prev next ›

Linux

47820 readers
966 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS