Linux

9606 readers
293 users here now

Welcome to c/linux!

Welcome to our thriving Linux community! Whether you're a seasoned Linux enthusiast or just starting your journey, we're excited to have you here. Explore, learn, and collaborate with like-minded individuals who share a passion for open-source software and the endless possibilities it offers. Together, let's dive into the world of Linux and embrace the power of freedom, customization, and innovation. Enjoy your stay and feel free to join the vibrant discussions that await you!

Rules:

  1. Stay on topic: Posts and discussions should be related to Linux, open source software, and related technologies.

  2. Be respectful: Treat fellow community members with respect and courtesy.

  3. Quality over quantity: Share informative and thought-provoking content.

  4. No spam or self-promotion: Avoid excessive self-promotion or spamming.

  5. No NSFW adult content

  6. Follow general lemmy guidelines.

founded 2 years ago
MODERATORS
1
2
 
 

Switched to Linux a little over a year ago and it's been great, but one thing eludes me. What's the best way to do the following when you don't use Windows or MacOS?

  1. Manage music collection - on Windows I used iTunes to sync my mp3's to the phone. Is there a linux solution?

  2. Manage SMS from desktop - I'd like to be able to read and reply to SMS messages on my iPhone from the linux PC right in front of me instead of this rinky dink iPhone soft keyboard. Is this possible?

And how the hell does anyone but a child type on an iPhone anyway, while we're at it? (rhetorical) Grrrr.

Thanks!

3
 
 

Stumbled across this quick post recently and thought it was a really good tale and worth sharing.


A couple of weeks ago, I saw a tweet asking: "If Linux is so good, why aren't more people using it?" And it's a fair question! It intuitively rings true until you give it a moment's consideration. Linux is even free, so what's stopping mass adoption, if it's actually better? My response:

  • If exercising is so healthy, why don't more people do it?
  • If reading is so educational, why don't more people do it?
  • If junk food is so bad for you, why do so many people eat it?

The world is full of free invitations to self-improvement that are ignored by most people most of the time. Putting it crudely, it's easier to be fat and ignorant in a world of cheap, empty calories than it is to be fit and informed. It's hard to resist the temptation of minimal effort.

And Linux isn't minimal effort. It's an operating system that demands more of you than does the commercial offerings from Microsoft and Apple. Thus, it serves as a dojo for understanding computers better. With a sensei who keeps demanding you figure problems out on your own in order to learn and level up.

Now I totally understand why most computer users aren't interested in an intellectual workout when all they want to do is browse the web or use an app. They're not looking to become a black belt in computing fundamentals.

But programmers are different. Or ought to be different. They're like firefighters. Fitness isn't the purpose of firefighting, but a prerequisite. You're a better firefighter when you have the stamina and strength to carry people out of a burning building on your shoulders than if you do not. So most firefighters work to be fit in order to serve that mission.

That's why I'd love to see more developers take another look at Linux. Such that they may develop better proficiency in the basic katas of the internet. Such that they aren't scared to connect a computer to the internet without the cover of a cloud.

Besides, if you're able to figure out how to setup a modern build pipeline for JavaScript or even correctly configure IAM for AWS, you already have all the stamina you need for the Linux journey. Think about giving it another try. Not because it is easy, but because it is worth it.

4
 
 

Hello linux@lemmy.world!

I've completely switched from dual boot to full Linux last year and I've been struggling to find the one tool that could replace the printer software that came with my Canon printer.

My printer came with an application that allows me to print border-less photos and apply fixes such as colour correction, remove red eyes, etc. So far I haven't found any application that allows me to print photos properly.

I'm using Kubuntu 24.04 and I tried using Gwenview to print my photos. While the dialog allows me to configure my printer to print on 4x6 border-less photo paper, it still prints with ~4mm borders.

I'm also asking myself, is this more of a KDE Plasma printing issue or an application printing issue?

Any help would be appreciated.

EDIT: I'm even considering using paid software at this point. Any solution is welcome.

5
15
submitted 1 day ago* (last edited 1 day ago) by possiblylinux127@lemmy.zip to c/linux@lemmy.world
 
 

Old post but I think it is still relevant. Fedora also supports this but Fedora doesn't have a LTS support window

6
 
 

I did some searching and many users recommend Rofi but looking at man rofi-script it seems to just be a list picker. You pick something from the a list and only one thing runs. On Alfred and Raycast you can have interactive extensions which are essentially keyboard navigable UIs.

  • One example looking at the Alfred workflow gallery is Reddit Browser, where you select a subreddit from a list and then it shows of lists of posts, you can press cmd enter to go back & select another subreddit.
  • Another one lets you ask questions for chatgpt and shows answers right in the launcher (I'm not necessarily looking for AI extensions).
  • This Raycast extension lets you search and create Notion pages.
7
 
 

But I've got two doubts remaining.

Currently, I'm running Windows 11, but I'd still like the ability to dual boot for certain games which don't necessarily work with Linux for various reasons. Is it possible to move a windows install to a different drive and then install Linux on the main drive instead?

If yes, how do I do it?

Second doubt is if I'll have many issues daily driving Linux if I have an Nvidia card

8
9
 
 

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

We had a community challenge on Twitch in January for me to initiate my migration off Windows 10 to Linux.

The process began in February and I've been on Linux as my daily driver for a few weeks now. This video is an overview of that experience, my background and where things currently stand.

I'm very pleased with Linux Mint overall, despite some initial headaches and misgivings. Figured you might be interested in seeing this :)

10
 
 

I enjoy Trelby for Screenwriting, which last saw an update in 2018. https://www.trelby.org/

11
 
 

Hi guys!

I have a Surface laptop, which I want to use again with a microSD as external storage. Since this can be easily pulled off from the laptop, I want it to be encrypted. This was encrypted before, but eventually the SD failed, and I'm trying to recreate what I had...without much success.

Steps so far... Create the LUKS volume:

#cryptsetup luksFormat /dev/sda

Format in ext4 (I believe it was in Exfat with the old SD?):

#cryptsetup open /dev/sda encrypted
#mkfs.ext4 /dev/mapper/encrypted

That should do it regarding the volume creation. Now comes what I can't quite get working. I created a pw txt file within my home folder:

/home/user/EncryptedSD.txt

Then I refer to this via /etc/crypttab at boot:

encrypted /dev/sda /home/user/EncryptedSD.txt

And my /etc/fstab should attempt to mount this on the spot:

/dev/mapper/encrypted /media/SDCard ext4 auto,nofail,rw

However, as this is set, I'm being prompted halfway through boot for the password. And I can't type anything onto that field. Not that it matters, as it's a really long randomly generated password, no way I could remember it.

Even if I managed to make it go through boot, I'm still prompted for mounting the drive when I clicked on it, and I'm also prompted for the password, so clearly something's not quite there yet. Any ideas? I intend to sync a series of network folders to this drive, so not being ready can make it a bit messier to sync at boot.

Thanks!

12
15
submitted 5 days ago* (last edited 5 days ago) by absGeekNZ@lemmy.nz to c/linux@lemmy.world
 
 

My partner is looking for an alternative to PicCollage, there doesn't seem to be a simple collage builder for digital scrapbooking on Linux.

It needs to be able to scale, rotate and place images (video nice but not required) and add text that can be put into various "fun" fonts.

I don't know what the "ideal" would be other than the above.

Note: she is running Linux Mint 21.3

13
 
 

cross-posted from: https://lemm.ee/post/60562469

Hi all!

I know that AMD has software for controlling RGB on Windows. I found some old threads where someone suggested disconnecting the LEDs themselves, which is not something I'm willing to do with my 2-day old card.

I also would love not having to switch to Windows just to turn the bloody RGB off.

I've never used OpenRGB and I don't quite understand their compatibility guide for the 9070, so I'm not sure if it's doable there.

So! Does anyone here have that card and was able to disable RGB on Linux?

As a sidenote: I just realised that my OS sees two GPUss - the dGPU and the iGPU. Is there a way I can turn iGPU off so that it doesn't get in the way?

Any help appreciated!

Oh, I should probably mention - I'm on:

OS Garuda Linux x86_64
├ Kernel Linux 6.13.8-zen1-1-zen
├ Packages 1366 (pacman)[stable]
├ Shell fish 4.0.1

DE KDE Plasma 6.3.4
├ Window Manager KWin (Wayland)
14
 
 
15
16
 
 

So following on from my last post I'v now tried again, this time using Rufus to make my boot USB rather than balena etcher which despite being reccomended is apparently problematic. I also downloaded and verified a fresh install of the cinnamon ISO.

Result is uh....

Failed to open \EFI\BOOT\mmx64.efi - Not Found
Failed to load image (windows symbol): Not Found
Failed to start MokManager: Not Found
Something has gone seriously wrong: import_mok_state() failed: Not Found

This happens when trying to boot from the USB so its actually worse than last time where the demo environment worked but it kept crashing on attempting a proper setup.

PC in question is a small notebook with no discreet GPU to speak of (Intel integrated graphics) that I've been hoping to use as a testbed before comiting to Linux on my main PC.___

17
 
 

Three security bypasses have been discovered in Ubuntu Linux’s unprivileged user namespace restrictions, which could be enable a local attacker to exploit vulnerabilities in kernel components.

The issues allow local unprivileged users to create user namespaces with full administrative capabilities and impact Ubuntu versions 23.10, where unprivileged user namespaces restrictions are enabled, and 24.04 which has them active by default.

Linux user namespaces allow users to act as root inside an isolated sandbox (namespace) without having the same privileges on the host.

Ubuntu added AppArmor-based restrictions in version 23.10 and enabled them by default in 24.04 to limit the risk of namespace misuse.

18
 
 

https://gitlab.com/christosangel/deshuffle

deshuffle is a terminal word puzzle game, written in Bash.

The simple aim is to put all the given letters in order to find the shuffled word against the clock. The time available after a number of words also reduces, so the game gets harder as it goes.

There is not only one solution to every puzzle. If the user find a word with the same letters, the solution will be accepted.

By default, the adjusted definitions of the words appear in the end of each round.

The game ends when the user fails to find the word in time, or fails to create an acceptable solution altogether.

If the score is among the 10 best scores achieved, it makes it in the Top Ten Highscores.

This game was inspired by https://wordnerd.co/23words/.

19
20
21
22
23
 
 

re-publicado de: https://lemmy.ml/post/27680406

Just a recomendation, as the theme is quite beautiful.

Edit: Just the GIMP on the title.

24
 
 

So, I've recently binged a YouTube channel called Linux Creative Project, which documents someone's transition from macOS to Linux for creative work. They go over their hardware, software, and their experiences/problems during the transition.

Any of you know any other YouTube channels that do something similar (Documenting their transition to Linux)?

25
 
 

I got this bluetooth/wifi card years ago, and am just now trying to get it setup on Linux. I'm using Fedora. How do I get bluetooth setup?

The device is this:

EDUP PCI-E WiFi 6 Network Card AX1800Mbps Bluetooth 5.2 Heat Sink 802.11AX 2.4Ghz/5.8Ghz Wireless PCIe Network Wi-Fi 6 Card PCI Express WiFi Adapters 6dBi Dual Band Antenna for Windows 11/10 64-bit

Since it is old, I am not opposed to buying a new one, but would rather not.

view more: next ›