linux

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

Fizz, in Debian Bookworm and Bullseye Users Receive Important Linux Security Updates
@Fizz@lemmy.nz avatar

As a headline reader I’d sure hope users of these distros receive security updates

Yerbouti, in What's your favorite music player on Linux?

I’d like to take this opportunity to remind you that spotify sucks, they hate artists but love Joe Rogan. If you can’t buy albums via bandcamp, Tidal offers quality and royalties far superior to Spottily. You can transfer your playlist in a few clicks and the price is almost identical (6 accounts for like $15/m).

visnae,

One Swedish company for another. Joke aside, isn’t the whole problem with royalties in the music scene still the issue that the record labels taking 90% of profits?

iegod,

Tidal sucks for EDM. Trance and progressive in particular.

ReakDuck,

Thr issue with spotify I have is only one. Its pretty good at predicting new songs with radio that I may like and I usually use the radio feature as I dont like to repeat my own playlists over and over.

Yerbouti,

Tidal’s algorythm is excellent for suggestions and the radio feature works well. I wasn’t sure at first but after a few months of listening to my stuff, Tidal strated to get really good at suggestions. My only issue left is how picky the search engine is Any spelling mistake will get you no results, but I can live with that. I work in studio environnement so getting access to uncompressed master files is huge for me.

ReakDuck, (edited )

I gave it a short try just to see if my fav artists are there. Yes. Didnt expect this. Also feels much more serious than spotify. I will see if the algorithm does its job.

Its weird how at first it only displayed music I would never listen to or is not near the artists I selected at the beginning. I guess I need to listen and favoritize them. And wait?..

Edit: It got a bit better over time. But there are a few songs still missing on Tidal 💀

greencactus,

But didn’t they had the issue with supporting MQA, which kinda was a scam? As far as I know they now switched to FLAC, but it still feels a bit weird.

Yerbouti,

Yeah MQA felt indeed bit of a weird for a lossy codec. FLAC is a real lossless format that’s been around for a long time, I’m glad they now use it. I like the fact that Tidal can be set to different quality on wi-fi vs phone data. Anyway, Tidal is still a buisness with only profit as a goal, but they give 3 times more to artists. Best way to support artist will always be by going to shows and buying albums and merchs, but most people wants a streaming sevice so IMO Tidal is the best right now. One day maybe Funkwhale or another decentralized option will offer a real revenu model for artists.

rottingleaf, in Is it actually dangerous to run Firefox as root?

Yes, it is. As a user you compromise only that user as a consequence of some sandbox escape. Then there may or may not be some successful privilege elevation.

rizoid, in Thoughts on this?
@rizoid@lemmy.dbzer0.com avatar

Most people don’t give a shit and just want a system that works. As a lot of distros switch to / have switched to Wayland I have never noticed any issues in daily usage of any of my devices, in fact my surface laptop 4 can’t do external displays if I’m running x11 but that feels like a surface issue not a display manager issue. Point being that the switch is happening and a majority of users do not care as long as their systems keep running, and in my experience there’s no reason to believe they won’t.

allywilson, in Happy 1704067200 seconds since 1970

Wait, there’s a GNU Epoch as well?

SteveTech, (edited )

I don’t believe so, I think OP just misremembered 1970.

The 1704067200 is the 2024 new year, in seconds from 1970 (normal Unix time).

prettydarknwild,
@prettydarknwild@lemmy.world avatar

nope, i just put the image because why not

allywilson,

Because UNIX Epoch starts 1970, not 1975 is why I mentioned it.

phorq,

You forgot to take into account leap years or as I’ve come to call them the leaping gnu/years

prettydarknwild,
@prettydarknwild@lemmy.world avatar

thank you for correcting me jaja

walthervonstolzing,
@walthervonstolzing@lemmy.ml avatar

GNU-Epoch is not the UNIX-Epoch.

iopq, in What are your opinions of Guix?

Everyone thinks it’s great, but they actually run NixOS in the meanwhile

OmnislashIsACloudApp, in Is anyone using awk?

I use awk all the time. a very common and probably simplest reason I use it is it’s ability to handle variable column locations for data.

if you know you always want the last field you can do something like

awk ‘{print $NF}’

but usually using it as for performing more advanced operations all in one go without having to pipe something three times.

sure you can do grep cut grep printf, but you can instead do the pattern matching, the field, the formatting, whatever you need to all in one place.

it’s also got a bunch of more advanced usage of course since it’s its own language. one of my favorite advanced one liners is one that will recognize if it is going to print a duplicate line anywhere in your output and prevent it. in cases where you don’t want to sort your output but you also want to remove duplicates it is extremely helpful and quick rather than running post-processing on the output in another way.

all that said main reason I use it is because I know it and it’s fast, there’s nothing you can do in awk that you can’t do in Python or whatever else you’re more comfortable with. The best tool for the job is the one that gets it done quickly and accurately. unless your environment is limited and it prevents the installation of tools you’re more familiar with then there’s no real reason to use this over Python.

Ramin_HAL9001, (edited ) in Is anyone using awk?

I used to use the command line, Bash, Awk, Sed, Cut, Grep, and Find (often piped to one another) quite often. I can recall that the few times I used Awk was usually for collating lines from logs or CSV files.

But then I switched to using Emacs as my editor, and it gathers together the functionality of all of those tools into one, nice, neat little bundle of APIs that you can easily program in the Emacs Lisp programming language, either as code or by recording keystrokes as a “macro.”

Now I don’t use shell pipelines hardly at all anymore. Mostly I run a process, buffer its output, and edit it interactively. I first edit by hand, then record a macro once I know what I want to do, then apply the macro to every line of the buffer. After that, I might save the buffer to a file, or maybe stream it to another process, recapturing its output. This technique is much more interactive, with the ability to undo mistakes, and so it is easier to manipulate data than with Awk and shell pipelines.

netwren,

This is fascinating to me. Do you have any links or suggestions for this workflow to learn more?

Ramin_HAL9001, (edited )

This is fascinating to me. Do you have any links or suggestions for this workflow to learn more?

I am glad you asked, because I actually wrote a series of blog posts on the topic of how Emacs replaced my old Tmux+Bash CLI-based workflow. The link there is to the introductory article, in the “contents” section there are links to each of the 4 articles in the series. The “Shell Basics” (titled “Emacs as a Shell”) might be of particular interest to you.

If you have any specific questions, or if you have recommendations for something you think you would like to learn from one of my blog posts, please let me know. I would like to write a few more entries in this blog series.

sxan, in Is anyone using awk?
@sxan@midwest.social avatar

Nearly every day. There was a time when I’d reach for Ruby, but in the end, the stability, ubiquity, and portability of the traditional Unix tools - among whom awk is counted - turned out to be more useful. I mainly underuse its power, though; it serves as a column aggregator or re-arranger, for the most part.

UntouchedWagons, in Experience with KDE on Fedora?
@UntouchedWagons@lemmy.ca avatar

KDE on Fedora is great. My only complaint is by default Firefox doesn’t use the KDE file picker, it uses (presumably) Gnome’s file picker. This is fixable but I shouldn’t have to do it.

juli,

Even the flatpak version? No idea why fedora is still not yet on the flatpak version.

UntouchedWagons,
@UntouchedWagons@lemmy.ca avatar

No idea, I try to avoid containerized software on desktops unless absolutely necessary like discord and jellyfin.

juli,

Why?

SimplyTadpole,
@SimplyTadpole@lemmy.dbzer0.com avatar

I use the Flatpak version of Firefox on Fedora Kinoite and it uses the KDE file picker without problems, I guess it’s an issue with the RPM version.

mortalic,

Oof, that would annoy me greatly. Obviously those are two of the heavier usage items I’d need.

smay, in linux phone with external camera?

i feel like this would just be better served by having a phone and a camera. a good large camera will continue to be a good camera for years and years past the time the phone is too old to be useful for modern needs. my almost 20 year old DSLR still outperforms my phone camera, and my phone is quite recent.

drwankingstein,

the general Idea I am getting from this would be something where the phone itself could be swapped out

fuckwit_mcbumcrumble,

Most nice modern cameras have either USB, bluetooth, or even wifi connectivity to connect to whatever you want. You could just have a normal phone and a normal camera and just copy the files off via whatever method you prefer.

juli,

That’s exactly why I want to replace the phone camera

conciselyverbose,

Excluding some of the smaller point and shoots, which are still more volume than most phones, DSLRs and Mirrorless cameras are way bigger than phones for a reason. It's because that's what it takes to take actual high quality pictures without cheating heavily with processing.

smay,

my point is that you might as well just have the phone be separate at that point. instead of having to frankenstein them together just have two devices. also, last i checked the linux experience on a small handheld device is not something you’d want to subject yourself to daily. android is much more what you’d want.

walden, in Which distro in your opinion is the best for virtualization (Windows 10 on either KVM or VMware), stability, and speed?

Will you use it for other stuff or just virtualization? Proxmox is designed for virtualization. It’s based on Debian and has a web GUI.

mmababes,

Virtualization mostly. I need Win 10 and Kali Linux to run at the same time on the host distro.

db2,
Aradia,
@Aradia@lemmy.ml avatar

For just two VM, any Linux distro is enough, virt-manager to easily run those VMs up and done. The default network will allow them to communicate between their NAT. Proxmox sounds too many complications for just some testing or development stuff.

kelvie,

Proxmox is a lot more user friendly than virt-manager (yes I’ve used both, but I just started using proxmox).

Aradia,
@Aradia@lemmy.ml avatar

But Proxmox is a big web interface app with many packages, right? virt-manager looks much easier than installing Proxmox.

4am,

Other posters are right in that KVM is the same on just about every distro. Proxmox comes with extra tools for management and I think that makes it especially well suited.

SpaceCadet, (edited ) in What distros have you tried and thought, "Nope, this one's not for me"?
@SpaceCadet@feddit.nl avatar

I ditched Ubuntu LTS for my homelab virtual machines around 20.04 when they started to push snaps, netplan and cloud-init, meaning I would have to spend a significant amount of effort redoing my bootstrap scripts for no good reason and learning skills that are only applicable in the Ubuntu ecosystem. I went with debian stable instead, and was left wondering why I hadn’t done that sooner. It’s like Ubuntu without all the weirdness.

TheAnonymouseJoker, in File transfer to USB drive fails after 4.3 gb
@TheAnonymouseJoker@lemmy.ml avatar

exFAT filesystem is what you need, and FAT32 is what you have. Windows (natively) and Linux (via Terminal) both allow to format it and change filesystem. You can use GParted GUI on Linux for ease.

GenderNeutralBro,

MacOS also supports exfat out of the box. So do most Android phones, TVs, consoles, etc.

It’s only viable choice for cross-platform use, AFAIK. Not the best fs out there by any means but I still use it on my all my USBs because I need them to work everywhere.

TheAnonymouseJoker,
@TheAnonymouseJoker@lemmy.ml avatar

It is one of the best, while also being the most viable for cross platform use. While journaling types and the more niche Linux filesystems are better, they are quite exclusive. My external HDD and USB sticks are formatted as exFAT and it helps when I use them across both Linux and Windows on my computer.

Commiunism, in What distros have you tried and thought, "Nope, this one's not for me"?

Gentoo - too long compile time, especially on my dated CPU. I prefer my system to update quickly.

Linux Mint - don’t like apt, some packages I installed refused to work properly (like Lutris), and the color scheme which is admittedly customizable but I prefer rolling with defaults except when using WM.

Void Linux - after installing it I realized how much I actually missed systemd, couldn’t be arsed to symlink services manually. And yes, I realize that’s the whole point.

NixOS - realized how much there is to learn with the flakes and separating home configurations and whatever, and just gave up

Manjaro - I tried it twice at the beginning of my Linux journey, and both times the nvidia driver shat itself and gave me different problems that I couldn’t fix.

Maybe I’ve been spoiled by Arch though, as most of my problems probably boil down to “not the same packages”, “not pacman”, “need to learn new skills that weren’t in Arch” and so on. Though admittedly, I did try to explore with an open mind to find a new “cool” distro, but I’d always go back.

lemmyvore,

Doesn’t Void have a tool that does the symlinking for you?

lseif,

skill issue, skill issue, skill issue, skill…

/s

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