Linux

63406 readers
578 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 6 years ago
MODERATORS
51
52
175
Keep Android Open! (keepandroidopen.org)
submitted 1 week ago* (last edited 1 week ago) by inari@piefed.zip to c/linux@lemmy.ml
53
21
submitted 1 week ago* (last edited 1 week ago) by inari@piefed.zip to c/linux@lemmy.ml
54
55
 
 

I've been a linux server admin for almost 20 years but I've never been able to fully switch from Windows for my daily driver. With all the Windows 11 bullshit I want desperately to switch but I feel like I can't win with a desktop distro. I've had nothing but issues related to hardware/drivers with each distro I've tried.

Fedora KDE Plasma Desktop 43 has given me the most luck but it's left me with one glaring issue which has me writing this post from Windows - how the fuck do I configure the OS to wake the monitors properly after going to sleep? If my monitors go black either from display sleep, OS sleep, or OS hibernation, the system can wake just fine but the displays show no detected input. I've tried both the open and proprietary nvidia drivers with no luck. I've also configured s2idle as the only sleep configuration and while it sometimes allows the monitors to wake without issue, it doesn't always work.

Am I just missing something? Is there a different distro I should try? I've now been through Manjaro, Fedora, Ubuntu, Pop_os, Arch, and Kali with nothing fully working for my hardware.

Really feeling like I should just give up and give it another few years and try again - any advise otherwise? I'd really really like to abandon microslop.

MSI MS-7E16 (X670E Gaming Plus Wifi)
AMD Ryzen 9 9950X
Nvidia RTX 4080 Super
64 GB DDR5
Latest Bios and firmware for everything; all software/os features up-to-date

56
 
 

So im a noob as some say, theirs certain games and software i use on windows that wont work on linux. ive tried linux but i found myself switching back to windows. I really do want to stay with linux but im not sure how or if i should duel boot or something? also what flavor of line do you enjoy or would suggest?

57
 
 

Hi,
I am looking for a PIM that would allow me when I create an event in the calendar to link it to local contacts.

Therefore after when I open the card of a contact I could list all the events linked to that contact and also all the notes, tasks or whatever.

This was easily done in Microsoft Outlook 2007 !

Do you know any Linux PIM software that can do the same ? and if not natively in GUI then trough CLI? Or do you know where to look for?

Thanks.

58
 
 

Hey! Hope this is a good place for these types questions!

I've been on Linux for the last couple of years. Tested a few distros before landing on Mint. Its perfect for a half-techie like me.

Towards the end of last year I had to replace my laptop due to a hardware failure. I landed on a Lenovo which was sold without an OS. Unfortunately I've been having some audio issues, and support hasn't been super helpful. Ive been doing tons of troubleshooting to solve ir, but to no avail. To make it more frustrating, I briefly installed windows just to check, and there everything works as intendes. So it doesn't seem like a hardware issue...

Before actually returning the device I figured it would be worth a shot to see if the issue persisted in the latest kernel. The problem is that I dont really know the best way to do that, and searching isn't really helping since I dont really fully understand what I'm asking.

So Im turning to you for help in the hope that some kind soul can point me in the right direction. What is the easiest way for me to get the latest kernel running on my machine? I don't mind wiping the computer, or if its unstable, or installing another distro to get there. I just want to see if it can get the audio working and I don't know where to start. Everything I find seems to be a bit behind.

Thanks!

59
60
47
submitted 1 week ago* (last edited 1 week ago) by MonkderVierte@lemmy.zip to c/linux@lemmy.ml
 
 

Please add a comma to your short options (-o, --option). This makes it easier to look it up.

Just something i wanted Linuxers to be aware of.

61
 
 

This is the 1.6 release that is API and ABI compatible with previous 1.4.x releases. This release contains some of the bigger changes that happened since the 1.4 release last year, including:

  • An LDAC decoder was added for bluetooth.
  • SpanDSP for bluetooth packet loss concealment.
  • Safe parsing and building of PODs in shared memory.
  • Added support for metadata features. This is used to signal that the sync_timeline metadata supports the RELEASE operation.
  • Node commands and events can contain extra user data.
  • Support for more compressed format helper functions to create and parse formats.
  • Support for compile time max channels. The max channels was increased to 128.
  • Support for audio channel layouts was added. This makes it possible to set "audio.layout" = "5.1" instead of the more verbose audio.position = [ FL, FR, FC, LFE, SL, SR ]
  • Support for Capability Params was added. This can be used to negotiate capabilities on a link before format and buffer negotiation takes place.
  • More HDR colortypes are added.
  • Loops now have locking with priority inversion. Most code was adapted to use the faster locks instead of epoll/eventfd to update shared state.
  • Channel position are parsed from EDID data.
  • Channel maps are now set on ALSA.
  • The resampler now supports configurable window functions such as blackman and kaiser windows. The phases are now also calculated with fixed point math, which makes it more accurate.
  • Many bluetooth updates and improvements.
  • The filter-graph has an ffmpeg and ONNX plugin. The ffmpeg plugin can run an audio AVFilterGraph. The ONNX plugin can run some models such as the silero VAD.
  • Many AVB updates. Work is ongoing to merge the Milan protocol.
  • Support for v0 clients was removed.
  • The jack-tunnel module can now autoconnect ports.
  • ROC support multitrack layouts now.
  • Many RTP updates.
  • rlimits can now be set in the config file.
  • Thread reset on fork can now be configured. JACK clients expect this to be disabled.
  • node.exclusive is now enforced.
  • node.reliable enables reliable transport.
  • pw-cat supports sysex and midiclip as well as some more uncompressed formats. Options were added to set the container and codec formats as well as list the supported containers, codecs, layouts and channel names.
  • Documentation updates.
62
 
 

Just wanted to share an alias I have in use and found it useful again. It's a simple wrapper around xargs, which I always forget how to use properly, so I set up an alias for. All it does is operate on each line on stdout.

The arguments are interpreted as the command to execute. The only thing to remember is using the {} as a placeholder for the input line. Look in the examples to understand how its used.

# Pipe each line and execute a command. The "{}" will be replaced by the line.
#
# Example:
#   cat url.txt | foreach echo download {} to directory
#   ls -1 | foreach echo {}
#   find . -maxdepth 2 -type f -name 'M*' | foreach grep "USB" {}
alias foreach='xargs -d "\n" -I{}'

Useful for quickly operating on each line of a file (in example to download from list of urls) or do something with any stdout output line by line. Without remembering or typing a for loop in terminal.

63
64
 
 

[A conversation I have actually had.]

65
 
 

66
62
submitted 1 week ago* (last edited 1 week ago) by inari@piefed.zip to c/linux@lemmy.ml
67
 
 

cross-posted from: https://lemmy.world/post/43283704

Hello again, new version = new features

This version is designed to improve the mouse experience for those who don't like the overlay taking up the entire screen. The Compact mode, similar to KZones or MouseTiler, allows you to move your windows around the tiles in KWin tile manager (Meta + T shortcut) with a small window and now the UI adapts to your KDE theme.

Features

  • New compact mode for the UI

  • Fluid tile adapts to the KDE theme

  • New extra empty desktop appears when the last desktop contains windows, allowing you to always have a free desktop, similar to the behavior in GNOME

  • New popup appears when executing the “Change tile layout” shortcut

  • Improvements for Plasma 6.6

https://codeberg.org/Serroda/fluid-tile/releases/tag/v6.0

https://codeberg.org/Serroda/fluid-tile/wiki/Installation

https://codeberg.org/Serroda/fluid-tile/wiki/User-interface

Demos

https://codeberg.org/Serroda/fluid-tile/raw/commit/066003066815a2a26ec3f17b9fb43a765e636355/.meta/compact_mode_cursor.webp

https://codeberg.org/Serroda/fluid-tile/raw/commit/4247fad9b689fef042c05fe16e4cfddcaf5c5fb2/.meta/popup_shortcut.webp

Just a quick note to say that these small projects depend on you, the users. My laptop keyboard is currently broken, so I have to program the script using a Bluetooth keyboard from Aliexpress. I need a little help from you so I can continue developing the script

So far, there has only been one donation in five months of development to help repair the laptop, but it's still not enough

If you like the project and want to continue seeing updates, or if you think it has a future, you can help me through these links

https://ko-fi.com/M4M81LR295

https://liberapay.com/Serroda/donate

68
25
submitted 1 week ago* (last edited 1 week ago) by altphoto@lemmy.today to c/linux@lemmy.ml
 
 

This started happening a few months ago, I would be minding my own Ubuntu business and then suddenly I can't left click.

After much digging and stupid AI querying, I added something to disabled power management to my boot sequence. That seems to minimize the problems but I still get the problem every 5 minutes or so.

To temporarily fix the problem I Ctrl-alt F3 then F2 to come back to. GNOME.

I tried with a mint usb and I got the same problem. I thought it was then maybe a mouse problem but the pointer does the same no matter what mouse I use and every mouse I tested worked fine on another Ubuntu of the same release. So I think maybe it is some sort of hardware and driver combination and to power management.

I see lots of posts of past years but nothing more recently, but no real solutions or explanations for what might be happening.

Okay looks like a start up script will be the thing to do next.

69
 
 

AsteroidOS 2.0 is here with a massive load of new features and support for many more watches.

Thank you to all contributors who made it possible!

Watch the visual demo: https://www.youtube.com/watch?v=U6FiQz0yACc

Read the announcement: https://asteroidos.org/news/2-0-release/

Enjoy the wrist-sized Linux ride!

70
216
submitted 1 week ago* (last edited 1 week ago) by JRepin@lemmy.ml to c/linux@lemmy.ml
 
 

cross-posted from: https://lemmy.ml/post/43288310

In KDE Plasma 6.6 Spectacle can read texts from screenshots, a new on-screen keybord is available for testing, a first-time wizard was added, current theme can be saved as a new global theme, emoji selector got a new easier skin tone selection, you can now connect to a Wi-Fi network via a QR code, application sound volume can be changed by scrolling over a taskbar button via mouse, and there is much more.

71
 
 
72
 
 

Distro developers began discussing ways to reduce the size of firmware updates last year. Now, in Ubuntu 26.04, it’s introducing meta-packaging to spread Linux firmware across 17 smaller packages in the resolute archives. This resolves a bug filed in 2022.

The sub-packages are:

  • linux-firmware-mellanox-spectrum
  • linux-firmware-intel-wireless
  • linux-firmware-intel-graphics
  • linux-firmware-amd-graphics
  • linux-firmware-nvidia-graphics
  • linux-firmware-intel-misc
  • linux-firmware-broadcom-wireless
  • linux-firmware-netronome
  • linux-firmware-misc
  • linux-firmware-qlogic
  • linux-firmware-marvell-wireless
  • linux-firmware-mediatek
  • linux-firmware-marvell-prestera
  • linux-firmware-realtek
  • linux-firmware-qualcomm-wireless
  • linux-firmware-qualcomm-graphics
  • linux-firmware-qualcomm-misc
73
 
 

So I have that error when it starts up and it says "RDSEED32 is broken disabling the corresponding CPU bit"

I noticed today that AMD has already patched this but what is the easiest and beginner friendly way to update it on my machine? I run fedora.

I was hoping it would be some update within Linux but so far no dice as according to this page from AMD the update has already been issued. (https://www.amd.com/en/resources/product-security/bulletin/amd-sb-7055.html)

I know windows is usually the easiest way to do these things but I would be willing to learn a little bit (within my technical limits) to avoid using it for this.

And if I DID have to use windows, right now I'm using LUKS encryption so isn't that like a monster to add windows into without messing stuff up?

I am very beginner on command line stuff but can navigate through files and stuff like that.

What's the best move for this?

74
75
view more: ‹ prev next ›