linux

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

Max_P, in Need help with making Linux my home
@Max_P@lemmy.max-p.me avatar

My network randomly drops. A restart fixes but I can't even download Cyberpunk with my 1GB connection before it crashes. Klogs showed something about the network manager successfully shutting down but I can't find much else.

Share the output of sudo dmesg logs as well as sudo journalctl -u NetworkManager | cat. The first is the kernel logs about what's going on with your connection, and the second one is from the utility that manages networking on most systems (there's alternatives but pretty sure Manjaro uses NM). It should give us more info as to the reason of the disconnections.

No Radeon software. I sometimes need to record clips/ stream so relive is nice but the biggest problem is my second 1080p monitor I Super Resolution to fit more programs on it. I can't find a way to replicate that functionality. I also do not know how to control Radeon anti-lag, chill, Smart Memory Access, etc.

Most of these things are more deeply integrated on Linux, so you don't need to worry about them for the most part. Some of them are also buzzwords for marketing purposes for features that really should be default on, which on Linux, when it's reasonable, do default to on. For example, you don't turn Smart Memory Access on: if it can use it, it will use it. Same with VRR, at least on Wayland: just on by default on KDE.

  • ReLive: you can use any screen recorder that will work on any GPU. Right now with the Wayland transition it's a bit weird and OBS is the better choice there, but on an Xorg session you can just use something like Simple Screen Recorder. On KDE, Spectacle, the default screenshot utility also has the ability to record short video clips but it can be a little buggy.
  • Super Resolution: just set the monitor's scaling to less than 100% in the display settings. It's technically probably better than Super Resolution for apps that supports <100% scaling, because instead of making a fake 4K display for example, it'll render everything at 1080p still but instead cause apps to render smaller, achieving the same result but with the potential of remaining pixel perfect. It won't be doing any AI scaling though, so YMMB.
  • Anti-lag: it's kind of a hack, and on Linux we're trying to get things right for the graphics stack with Wayland. But if you're running Wayland, KWin is already doing what it can to reduce lag on the desktop, and individual applications have to implement similar methods if they want to. Have you run into specific things where it's noticeable? Linux is generally pretty good when it comes to input lag already.
  • Chill: you can run games in Valve's gamescope wrapper to limit framerate. That's exactly how they do it on the Steam Deck. You can also use CoreCtrl to underclock the GPU.
  • Smart Memory Access: it's just marketing for Resizable BAR, and it's on by default. You can check with sudo dmesg | grep BAR=, if it's greater than 256M and equal to your GPU's memory size, it's working.

<span style="color:#323232;">[    7.139260] [drm] Detected VRAM RAM=8176M, BAR=8192M
</span><span style="color:#323232;">[    7.576782] [drm] Detected VRAM RAM=4096M, BAR=4096M
</span>

HDR controls. Nothing in the display settings so I'm lost

Yeah that one's still WIP unfortunately. It's technically possible on Xorg but you have to run everything HDR all the time and things break. It's coming along fairly well!

Alternative Software I haven't spent a lot of time looking but things like wallpaper engine, rainmeter, powertoys.

  • Wallpaper Engine -> KDE's desktop backgrounds have a lot of options to do similar stuff including animated wallpapers. Go to change your wallpaper, there's a button to download new modules and new backgrounds. For example: store.kde.org/p/1413010
  • rainmeter -> Conky, or KDE's desktop widgets. Right click on your desktop, add graphical component.
  • powertoys -> A lot of those have built-in and better equivalents. Fancy zones: we've had that as standard for a good decade here. You can also fairly easily make your own or use other people's KWin scripts, which lets you manipulate the desktop however you want. Here's some examples: store.kde.org/browse?cat=210&amp;ord=latest

You can even download desktop effects, if you like your windows to burn down or have a glitch effect or whatever: store.kde.org/browse?cat=209&amp;ord=latest


It takes some time to adjust, but welcome abord! Depending on how much you customize, you may find it difficult to go back to Windows!

Administrator, in What's the point of terminal file managers (mc, ranger, nnn, etc)?

As someone who uses nnn (occasionally lf) all the time, terminal file managers make navigation (especially bookmarking) easier.

Think Nemo’s my default file manager but with GUI file managers I find it hard to switch contexts. I always used to have two splits open with Nemo but if I need to open a new context I’d have to open another instance of Nemo and then I gotta switch between the instances now.

Now, nnn gives me 4 contexts, which can be easily switched between using 1-4. I’ve added zoxide within nnn to pretty much jump to any directory within my system. This isn’t really possible with a GUI file manager. Guess you can add integration to other tools as well to the list of pros of a terminal file manager.

File preview needs a mention as well. It’s easier when you can quickly glance a file and move on instead of opening it.

Lettuceeatlettuce, in Which is better: Linux or GNU/Linux
@Lettuceeatlettuce@lemmy.ml avatar

The penguin’s name is “Tux” and he’s the official Linux mascot.

I think Linus Torvalds picked it a long time ago, he said he wanted something that was non-threatening, so hence the penguin lol.

The debate about Linux vs GNU/Linux imo, is one of the stupidest and pedantic debates I’ve ever heard. Maybe it mattered 30+ years ago when things were much less developed and only hardcore nerds and programmers used it, but now days it’s only important to grognards and neckbeards.

Hot take, but it’s like those pretentious music enthusiasts that will argue about what precise genre an artist fits into. “I would say they are post-progressive indie skitzo-pop. No way! They are clearly more neo-grunge sca-punk with post-rock elements” who cares?? Have your ultra-precise categories in your personal music collection all you want, but acting like it’s based on some hardcore objective truths of the universe is stupid.

Nobody is confused when I say I run Linux as my OS. Actually, people do get confused but it’s not because of GNU/Linux, it’s because they haven’t ever heard of Linux and thought that Windows and MacOS were the only 2 OSes for computers.

If somebody genuinely pulled an “um, actually” on me for saying Linux vs GNU/Linux, I would scream laugh loudly and then change the subject.

kib48, in Mozilla Might Finally Enable Firefox's Wayland Backend Soon

it’s not already enabled??

atetulo, in What's the point of terminal file managers (mc, ranger, nnn, etc)?

It’s really annoying navigating a filesystem in the shell.

Either you remember exactly where a file is located, have a reference, or you’re going to be doing a lot of “ls, cd, ls, cd”.

Shdwdrgn, in ShellBot Uses Hex IPs to Evade Detection in Attacks on Linux SSH Servers

Does anyone know of a linux tool that can immediately ban an IP address if they try to log in to ssh with specific user names? I see a ton of attempts in my logs for names like fax, mysql, admin, and of course root. Fail2ban only works if the same IP makes repeated attempts but I’m betting if I could generate a list from these failed attempts it would probably correlate with standard blocklists of compromised hosts. For that matter, is there a way to use an RBL to limit addresses that ssh will even accept? Of course none of these attempts have a chance of logging in, but it would still be nice to further limit my exposure for any future attacks.

backhdlp, in What's the point of terminal file managers (mc, ranger, nnn, etc)?
@backhdlp@lemmy.blahaj.zone avatar

They’re better than


<span style="color:#323232;">cd something
</span><span style="color:#323232;">ls
</span><span style="color:#323232;">cd something-else
</span><span style="color:#323232;">ls
</span><span style="color:#323232;">cd ../..
</span><span style="color:#323232;">ls
</span>
Artemis, in Richard Stallman has cancer
@Artemis@lemmy.sdf.org avatar

My dad is recovering from cancer and it was a hard fight, I sincerely wish the best for Stallman.

sovietknuckles, in Microsoft published a guide on how to install Linux.
@sovietknuckles@hexbear.net avatar

You could not live with your own OS. Where did that bring you?

tux-shining Back to me

Imnebuddy, in Microsoft published a guide on how to install Linux.

Windows: What is my purpose?

User: You are a bootloader to install Linux.

asexualchangeling, in Microsoft published a guide on how to install Linux.

I’m reminded of Google’s financial support for Firefox, so as to dissuade the idea that they are a monopoly

0x0, in Microsoft published a guide on how to install Linux.

So the Embrace-Extend-Extinguish continues…

sb56637, in SpiralLinux - It's really Debian underneath the hood!

Hi everyone, SpiralLinux creator here. Another thing that motivated the creation of this set of spins is the diversity of hardware, even in my own machines. I personally don’t like having to switch to a completely different distro for a specific computer just because of hardware support issues. Some devices might need a newer kernel for certain components to work, whereas other hardware works better with the older kernel from Debian Stable. So SpiralLinux offers a hybrid approach, Debian Stable base system with the Debian Stable kernel included on the live ISO, but the much newer kernel version from Debian Backports is also available on the ISO. This can make the difference between the image booting or not, or between having internet connectivity or not, and it makes it more likely that SpiralLinux will work across the entire range of a user’s computers.

MonkderZweite, in Linux holds a market share of approximately 14% in India.

I find the concept of ‘market share’ applied to FOSS projects quite confusing.

Pantherina, in TIL You can use `systemd-analyze plot > plot.svg` to plot the service startup time to find bottlenecks

My bottleneck at boot is my damn Bios… I am so hyped about flashing Heads on my Thinkpad T430.

Even the old legacy Lenovo bioses where very fast at startup. The UEFI (with extremely nice secure-boot settings too) of an AMD Acer starts up in like 2 seconds. My old intel Thinkpad T430 needs like 4 seconds.

And then my Lenovo T495 bullshit UEFI comes. No secure boot configuration at all, I have no idea how to boot from USB sticks, and this thing needs nearly 10 seconds to boot! Linux compared, a full Desktop OS, needs 3 seconds to show SDDM (after the LUKS dialog)

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