linux

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

pr06lefs, in The Paperweight Dilemma: Original Pinephone might lose future kernel updates if devs can't pay down tech debt

The pinephone is cool but so underpowered. Hoping to get some use out of of it as a audio looper controller. Looks like I can anticipate a sharp drop in support in the next year or two.

backhdlp, in Ackchyually, not every Linux is a GNU Linux
@backhdlp@lemmy.blahaj.zone avatar

“I use Linux as my operating system,” I state proudly to the unkempt, bearded man. He swivels around in his desk chair with a devilish gleam in his eyes, ready to mansplain with extreme precision. “Actually”, he says with a grin, "Linux is just the kernel. You use GNU+Linux!’ I don’t miss a beat and reply with a smirk, "I use Alpine, a distro that doesn’t include the GNU coreutils, or any other GNU code. It’s Linux, but it’s not GNU+Linux.

The smile quickly drops from the man’s face. His body begins convulsing and he foams at the mouth and drops to the floor with a sickly thud. As he writhes around he screams “I-IT WAS COMPILED WITH GCC! THAT MEANS IT’S STILL GNU!” Coolly, I reply “If windows was compiled With gcc, would that make it GNU?” I interrupt his response with “-and work is being made on the kernel to make it more compiler-agnostic. Even you were correct, you wont be for long.”

With a sickly wheeze, the last of the man’s life is ejected from his body. He lies on the floor, cold and limp. I’ve womansplained him to death.

SexualPolytope, in How I messed up by accidentally replaying all my keystrokes from the last few days
@SexualPolytope@lemmy.sdf.org avatar
db2, in How to change an xml wallpaper every day?

Plot twist: OP uses KDE

Matt, in What are your best DE tricks and apps youve found?
fossisfun, in What is the best linux alternative to OneNote?
@fossisfun@lemmy.ml avatar

I am surprised that no one has mentioned Rnote yet.

It is my favourite newly-created program for Linux. It is a relatively new app which supports annotating files and taking handwritten notes. You can import PDFs, set the page size to infinite or a fixed size (something OneNote can’t do), adjust the background to display grids or lines or dots or nothing with any spacing you like, input text with your keyboard, … It is available on Flathub for easy installation.

The only major downside is the following: Disclaimer: The file format is still unstable. It might change and break compatibility between versions.

HouseWolf, in How to start app via tiles (Metro-look)

I haven’t tested it myself personally but this menu for KDE seems to be what you’re looking for?

rodbiren, in Which distro do you believe deserves more recognition?

Mint is surprisingly loved and disliked from what I have seen. Having used it since 2007 I am in the category that likes it for what it is. But I am somewhat surprised by the open hostility it gets for simply existing. Main arguments being that it is a dinosaur, uses X11, should not exist because anything not KDE or GNOME is just diluting desktop Linux and is part of the problem. It has no fancy corporate sponsor, it has a small team, and it for sure has warts, but you can claw Linux Mint from my cold dead hard drive because I have distro hopped like an addict and it just checks the boxes for me. It shows up and works, even on newer hardware with a little tweaking here and there, but I can use Nvidia, find network printers without effort, scan, install and update flatpak, backup the system, game, and get actual work done that is not fiddle farting around with esoteric configs all the time. I can post on actual forums with actual users on it and not some discord where someone will just post memes over my questions. I have a strong feeling it will exist for a long while given it’s history. And it is mind numbingly borning as an OS. I just sit down and compute, what a concept.

andruid, in Your favorite web UI for your linux server?

Cockpit has been my go too, very quick to just get up and working plus including a web terminal for the rest of what you need.

eshep, in Bluez trying to connect to my PC?

@JokeDeity Seeing a device called "Bluez" trying to connect to your computer (in some undefined way) doesn't necessarily mean it has anything to do with bluez.

ScrambleVerdict, in Ryzen 7950x vs 7950x3d for an all rounder setup?

The cache matters a lot. That’s basically why the x3d chips are so great at gaming. With over clocking you’ll always get a lower clock than the stock boost clock with these newer chips. That’s why PBO (precision boost overdrive) in combination with CO (curve optimiser) will give the most performance. Both chips can do this.

Tl;Dr: get the x3d.

Oha, in MIcrosoft teams

Webapp works fine on firefox and chromium

Lettuceeatlettuce, in GPU upgrade for linux workstation
@Lettuceeatlettuce@lemmy.ml avatar

I’ve been running a 6700xt for the last year and a half and it’s been great! Plays everything I want at high/ultra 1080p, anywhere from 160-240FPS depending on the game and settings.

I record gameplay no problem too with OBS. I’m on Nobara Linux, a gaming-focused Fedora Distro, haven’t had a single issue so far with it.

Sentau, in GPU upgrade for linux workstation

I am assuming you currently use linux. Do you currently use CUDA with freecad and solidworks(which I am assuming you use through WINE or a VM). AMD generally has better raw performance at same price but has nothing equivalent to CUDA at this point. There is ROCm and plans for CUDA through ROCm but GPU support for ROCm is hit or miss. You also have openCL but performance is nowhere near as good as using CUDA even if the GPU using CUDA is weaker. AMD. will provide a much better gaming and day to day usage experience though

sebastiancarlos, in [Question] Which shell prompt do you use and why?

https://lemmy.sdf.org/pictrs/image/938229ad-4c04-413b-b2ae-18925e5b0e6e.png

.bashrc:


<span style="color:#323232;"># Prompt
</span><span style="color:#323232;"># "Make it simple, just the dollar sign"
</span><span style="color:#323232;"># "Say no more, fam"
</span><span style="color:#323232;"># - if error code is not 0, then prepend [N] where N is the error code
</span><span style="color:#323232;"># - if user is root, use red and #
</span><span style="color:#323232;">blue='e[34m'
</span><span style="color:#323232;">red='e[31m'
</span><span style="color:#323232;">bold='e[1m'
</span><span style="color:#323232;">reset='e[0m'
</span><span style="color:#323232;">PS1='$( status=$?; [ $status -ne 0 ] &amp;&amp; echo "[$status] ")['"$blue""$bold"']$['"$reset"'] '
</span><span style="color:#323232;">
</span><span style="color:#323232;">if [[ $EUID -eq 0 ]]; then
</span><span style="color:#323232;">  PS1='$( status=$?; [ $status -ne 0 ] &amp;&amp; echo "[$status] ")['"$red""$bold"']#['"$reset"'] '
</span><span style="color:#323232;">fi
</span>

.inputrc:


<span style="color:#323232;"># vi mode, change to 'emacs' here if you prefer
</span><span style="color:#323232;">set editing-mode vi
</span><span style="color:#323232;">
</span><span style="color:#323232;"># vi INSERT prompt
</span><span style="color:#323232;">set vi-ins-mode-string "1e[30;44m2 INS 1e[0m2 "
</span><span style="color:#323232;">
</span><span style="color:#323232;"># vi NORMAL prompt
</span><span style="color:#323232;">set vi-cmd-mode-string "1e[30;47m2 NOR 1e[0m2 "
</span>
  • All
  • Subscribed
  • Moderated
  • Favorites
  • linux@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #