Linux

47866 readers
1567 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
301
 
 

cross-posted from: https://lemmy.ndlug.org/post/1167059

COSMIC’s Alpha 2 release builds upon that work with functionality built out for Files, additional Settings pages, considerable infrastructure work for screen reader support+, and some highly requested window management features. System76 is ecstatic at the level of excitement and collaboration so far with alpha testers and early app & applet developers, and we look forward to seeing what comes from these new additions.

...

The second COSMIC alpha will be released on September 26th. Those participating in Alpha 1 on Pop!_OS can simply update through the COSMIC App Store to transition. This alpha will be followed by monthly alpha releases until all core features have been built out.

More coverage:

302
303
304
 
 

publication croisée depuis : https://sh.itjust.works/post/25672147

Hi everyone!

For a while, I've been using the surface kernel for my Surface Go using Fedora 40. The other day I tried to clone my installation with Clonezilla to put it on another old computer I had lying around.

It didn't work and I have a suspicion that it didn't because of the surface kernel so I'm trying to use the stock kernel instead.

After a few modifications, usinge uname -a, this is the output I get: Linux surface-go-fedora-de-guillaume 6.10.10-200.fc40.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 12 18:26:09 UTC 2024 x86_64 GNU/Linux

When using uname -mrs, this is the output I get: Linux 6.10.10-200.fc40.x86_64 x86_64

Can someone with more knowledge than me confirm that everything is back to stock form as I don't know if the SMP PREEMPT thing shoud be there? Doe's anyone know if the Surface Kernel is probably what prevented me from cloning my installation and putting it on another computer?

305
306
307
 
 

This is an old post, I plan on making a new one with updated details.

I was installing Debian on my Getac F100-G2, and I booted to the live usb perfectly fine. I tested everything and it seemed to work great, except for one time I got logged out randomly. I installed it(overwriting windows) and it completed with no error. When I rebooted, it booted to a black screen and did not provide any error message. I've tried booting to the same installation media as well, and it does the exact same. I've switched between legacy boot and uefi, which has been an issue in the past with debian. I have also tried booting from a pureos live usb and that hasn't worked either. Getac devices are for enterprise use more than person, and rather poorly documented, so any help is appreciated!********___

308
 
 
309
310
311
 
 

I am not the author.

312
55
submitted 1 month ago* (last edited 1 month ago) by petsoi@discuss.tchncs.de to c/linux@lemmy.ml
313
 
 

I haven't heard anything in months. Maybe there is legal trouble?

314
315
 
 

TL;DR: Want to use my desktop keyboard/mouse with my Laptop. What software are you using/enjoying? Arch+KDE w/ Wayland will be the main host, main client is Windows 11. Secondary hosts may be Debian and MacOS, same client, but low priority on the Mac.

Hey folks, I'm rearranging some things a bit at home, would love to get some current thoughts on keyboard/mouse sharing over IP (no video).

I have to put up with some tools that don't play nicely with wine/proton, and so my work laptop is a windows device. I'll be controlling that device primary from Arch and Debian, though MacOS is a possibility. I'd like to keep the laptop closed and not add another mouse/keyboard into the mix, so Keyb/Mouse over IP it is.

Here's what I'm looking at, haven't tried them all yet, but looking for opinions:

  • Barrier - Dead fork. Hasn't been updated in some time, being superseded by input-leap. Most portions of the project managed by someone who had not been active for a couple years before the Input Leap fork.
  • Input Leap - Forked from Barrier at the end of 2021, and nearly 3 years later, no stable binary releases yet. Development seems fairly active, but no binary releases yet doesn't provide a massive amount of confidence that it will be stable. Doesn't mean I won't build and test though.
  • Lan Mouse - Seems pretty neat, the lack of input capture on MacOS could create an issue for me in certain situations, but I can work around that if I need to for the rare times I'd need it. Traffic is unencrypted/plaintext. Its entirely local, and I've got more security than most users (and some companies), but still. Probably leading the pack right now.
  • Deskflow - Upstream project for Synergy, a rename to differentiate the user project from Synergy. TONS of recent activity, but the switch is very recent. I don't know if there are any binaries built, but its a longstanding project (and like many, many others, I used Synergy before it went commercial, it was nice).

Any other options out there? Good/bad experiences with any of these?

316
 
 

I've been seriously looking to migrate away from Windows's grip recently and I've laid my eyes on LMDE, as it seems like a simple and stable distro (I'm a total beginner in Linux/Unix). However, I have a laptop with an NVIDIA integrated graphics card, and given NVIDIA's record, I'm worried about compatibility issues given that LMDE is Debian-based. Can anyone shine me some light on this? Thanks!

317
 
 

In this video, I provide an overview of the 5 best or most exciting features coming to the highly-anticipated GIMP 3.0 release! These are my 5 favorite new features coming to GIMP 3.0, including non-destructive editing, smart guides, and CMYK support.

318
 
 

Hello,

just wanted to share the idea. I was thinking about installing Android on Laptop just like it's already installed on mobile. I know it's possible using Waydroid but It would be nice If we have a distro that provides an iso to install stock Android(or Lineage OS) so people could easily install Android on their Laptops. I don't know if anyone has already tried it or not.

Edit: Thank you guys for the suggestions I am going for BlissOS and PrimeOS :)

319
 
 

so a common claim I see made is that arch is up to date than Debian but harder to maintain and easier to break. Is there a good sort of middle ground distro between the reliability of Debian and the up-to-date packages of arch?

320
321
 
 

(Edit: I always forget that Beehaw will convert every ampersand character in code segments to &. Have this in mind when reading the code below. Do you have these problems too with your instance?)

If you update your system from terminal, do you have a shortcut that bundles bunch of commands? I'm on EndevourOS/Arch using Flatpak. Rustup is installed and managed by itself. The empty command is a function to display and delete files in the trash using the program trash-cli. In my .bashrc:

alias update='eos-update --yay \
    ; flatpak uninstall --unused \
    ; flatpak update \
    ; rustup update \
    ; empty'

empty() {
    trash-empty -f --dry-run |
        awk '{print $3}' |
        grep -vF '/info/'
    trash-empty -f
}

I just need to type update. Also there are following two aliases, which are used very rarely, at least months apart and are not part of the main update routine:

alias mirrors='sudo reflector \
        --protocol https \
        --verbose \
        --latest 25 \
        --sort rate \
        --save /etc/pacman.d/mirrorlist \
    && eos-rankmirrors --verbose \
    && yay -Syyu'

alias clean='paccache -rk3 \
    && paccache -ruk1 \
    && journalctl --vacuum-time=4weeks \
    && balooctl6 disable \
    && balooctl6 purge \
    && balooctl6 enable \
    && trash-empty -f'

This question is probably asked a million times, but the replies are always fun and sometimes reveals improvements from others to adapt.

322
323
 
 

Hi all,

I am about to do a bit of a distro hop, and I am looking at Fedora and its spins, after years on Debian / POP.

I am not looking forward to setting it all up again, it's a drag.

I wonder, is there a tool that lets me script installs?

I'll want to check if application exists, and if so, update, otherwise, install. That kind of thing.

Things like:

  • Telegram
  • Joplin
  • Docker
  • Firefox
  • Ungoogle Chromium
  • Sublime Text
  • VSCodium
  • Keepass
  • Thunderbird
  • DBeaver
  • Gimp
  • Inkscape
  • KDENLive
  • Syncthing
  • Steam
  • VLC
  • Localsend
  • Flameshot
  • Element
  • Cherrytree
  • Calibre
  • Anydesk

I show the list, only to give an idea of what might be involved.

I'm new to Fedora, so not sure how it differs beyond the package manager. But, thought I'd ask.

Does such a tool exist, and is it worth my time? I can practice on a VM before trying on the final install/s.

Thank you

324
 
 

Hello. I know this isn't completely related to Linux, but I was still curious about it.

I've been looking at Linux laptops and one that caught my eye from Tuxedo had 13 hours of battery life on idle, or 9 hours of browsing the web. The thing is, that device had a 3k display.

My question is, as someone used to 1080p and someone that always tries to maximise the battery life out of a laptop, would downscaling the display be helpful? And if so, is it even worth it, or are the benefits too small to notice?

325
 
 

I'm talking about the System 7/8/9 days of macOS. I really like the aesthetic and workflow in the older macOS versions (call me a masochist) and I'm hoping if someone knows of something that already exists. I know there are plenty of skins/themes that hearken back to Windows 95/98, but most of what you find online when you look for "Linux like macOS 9" is things that make it look like modern macOS.

view more: ‹ prev next ›