linux

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

Pantherina, in Reminder to clear your ~/.cache folder every now and then

Your Distro should normally do that for you.

Advising for this means people will delete random cache and download stuff always.

Are multiple files in there? If yes you could add a script that only deletes files of certain age.

Takios,

I’m not aware of any distro that automatically clears a user’s .cache in their home directories. Maybe you’re thinking of /var/cache?

Engywuck, in Am I wrong to assume that docker is perfect for single board computers that relies on low life expectancy drives (microsd)?

I use docker myself on my RPi4, but the OS is on a 128 GB SSD connected through USB3. These SSD are pretty cheap nowadays and (likely?) more resilient than sdcards…

luthis, in SOLVED How to correctly set user/pass in compose file?

Fixed it, I had to delete the images

astraeus,
@astraeus@programming.dev avatar

The instructions say ALLOW_EMPTY_PASSWORDS=yes. They also say this is meant for development purposes only, I assume they mean you should build a dockerfile for something more pressing like a prod environment.

callyral, in One of these 6 will become Plasma 6. Wallpaper Which one do you prefer?
@callyral@pawb.social avatar

The middle-right one. Would be nice though if instead of a clock it had something else since it’d be weird to have a static clock.

My secondary choice would be the one with the red tree.

possiblylinux127, (edited ) in I use linux for the same reason I wear fuzzy socks and sweaters

Too long, didn’t read

Pantherina, in How to switch thr state of Fn keys?

Best would be BIOS. What vendor, what model? INFORMAATIIOOON

rutrum, in CLI Editors with Distrobox?
@rutrum@lm.paradisus.day avatar

In my experience, you still have your same path to your nix installed binaries in the distribox container, so you shouldnt even have to duplicate your configuration. I also dont suspect python dev to be that bad so long as you use venv or conda.

BautAufWasEuchAufbaut, in Xenia wouldn't suggest that :c
@BautAufWasEuchAufbaut@lemmy.blahaj.zone avatar

Based Xenia suggesting browsers for an open and healthy web. Go Xenia!

01adrianrdgz,
@01adrianrdgz@lemmy.world avatar

yes!! It would also be based to suggest all browsers!!

Vincent,

You mean the ones for a closed and unhealthy web? :P

Maybe they could recommend Windows as well, while they're at it, haha.

gary_host_laptop,
@gary_host_laptop@lemmy.ml avatar

I suggest you to use all browsers!11!1

BautAufWasEuchAufbaut,
@BautAufWasEuchAufbaut@lemmy.blahaj.zone avatar

This account really doesn’t look like it’s a novelty account/a troll and that concerns me

01adrianrdgz,
@01adrianrdgz@lemmy.world avatar

why does that make you concerned?? I hope you are ok!! I like all software and I love Linux but in the end I love technology and what matters is that I promote software friendship!! Available for everyone!!

BautAufWasEuchAufbaut,
@BautAufWasEuchAufbaut@lemmy.blahaj.zone avatar

Oh you’re young, sorry for the offensive wording. I saw you’re programming and trying technology out - good on you! I hope you’ll never lose your excitement about technology.
It’s quite a political thing, but I am sure you’ll find your way around it.

01adrianrdgz,
@01adrianrdgz@lemmy.world avatar

I know everything about the current status of open source, I’ve read about Richard Stallman, about how he dislikes the word open source, but what we need to understand is that all software can be nice, nya!! And it’s ok I forgive you meow.

UnRelatedBurner,

may I ask, how much anime do you watch?

YoorWeb,

After scrolling for the last 15min out of interest, I concluded, it’s just some kid: lemmy.world/post/9536754

teawrecks, in I use linux for the same reason I wear fuzzy socks and sweaters

I know it’s beside your point, but I want to chime in…

My understanding of the history of fashion is that back in the 1950s America…they were trying to nudge culture into accepting their worldview.

On the contrary, I don’t think that’s how the mentality came about, or was held at that time at all. If you go back to the 1850s or 1750s, suits and dresses (or some older variant of them) were a sign of wealth, intelligence, high class living, etc. They had to be hand-tailored by experts using rare fabrics and dyes that had to be shipped all around the world. Then the industrial revolution came, and clothing was able to be mass produced (usually at the cost of quality). Suddenly the middle class had access to suits and dresses, but the perception that it was something for the wealthy was still there. For many businesses targeting the middle class, the suit and dress WERE the uniform, as a means of displaying how regal their brand is.

And it’s not like we’ve gotten past this. If you go on any of the social media sites with ads, take a look at what you see: some knock-off piece of trendy clothing that’s made to look like a high end fashion brand, but targeting the lower/middle class.

All that said, I’m all for the “punk rock” mentality. Don’t do what your parents did just because society told them to tell you it was important. Stick it to the man, yadda yadda. But I think it’s a trap to assume that the 1950s proletariat felt any differently than the same class of people do today.

As for windows v linux, of the people who are aware of both yet continue using windows, I think most would say that they use it specifically because they have a “preference for something that i can just set up and not have to tinker with” and because they also aren’t making their choice based on “the trackers in win11 or because [they] care that Microsoft is an evil megacorp”.

deikoepfiges_dreirad, in Arch or NixOS?

I used to like the idea of nixos because it felt “tidy” to configure everything centrally. However that tidyness is achieved by adding an extra layer which just replicates the configuration options of every program. If there is a bug in that layer or something is just not implemented, either you have to learn the whole inernals of nixos and nixpkgs, for which there is no real documentation, or you have to resort to doing things imperatively again, which is hard because of the opacity of the generated system and also defeats the whole purpose. So basically, you are completely dependent on nixos developers for things you could have easily done yourself on arch.

flashgnash,

I have to disagree with this, with home-manager you can pretty much put just put your normal config files inside your NixOS config and map them into wherever they’re meant to go, except now they’re managed by nix

The built in config options are really nice but you don’t have to use them in the slightest as long as the package itsself is in nixpkgs

Adanisi, in I use linux for the same reason I wear fuzzy socks and sweaters
@Adanisi@lemmy.zip avatar

Ah, the freedom to modify software as you wish. Got to love it.

flashgnash, in CLI Editors with Distrobox?

Python is easy on NixOS, you just need to use python venvs and you can use pip like normal

(python -m venv .venv) to create the venv (only need to do once per project)

.venv/bin/activate to enable the venv (Vscode should do this automatically if you create the venv through the python extension)

Then just pip install to your heart’s content

(Probably a good idea to pip freeze > requirements.txt every time you install a new library too to make it reproducible

Also you should probably add the venv directory to gitignore if you’re using git as it’ll add a lot of crap to source control that can be easily regenerated from the requirements.txt

SimplyTadpole, in Which distro/image to use for distrobox where you just want to install tools?
@SimplyTadpole@lemmy.dbzer0.com avatar

For everyday tasks, I think a Fedora distrobox works fine, but you would have to upgrade it eventually and I admit I’m not sure how you do that under distrobox. Still, I initially used it and still have a Fedora distrobox I use for doing stuff for my job, as well as one I use for running a game modding program that requires Java, and they both work fine.

I’ve also had success with a Debian distrobox, which I used to compile Render96ex. Debian is pretty universal, so it’s much easier to follow compile instructions using it than a Fedora distrobox ^^’

hottari, in Arch or NixOS?

You can setup your Arch with grub menu btrfs snapshots just like NixOS for convenient rollbacks. NixOS has too steep a learning curve, coming from someone who recently tried it and ended up being somewhat disappointed by it. NixOS sounds good on paper but in reality it is a long way from a mature product for desktop or general use.

As you mentioned Arch has AUR which packages just about anything and everything you could ever want in the future. And the Arch Wiki will never be “not relevant” so long as you are using Linux anywhere, the Arch Wiki is a handy reference.

qaz,

NixOS sounds good on paper but in reality it is a long way from a mature product for desktop or general use.

It’s 20 years old already, will it ever be ready at this point?

ProgrammingSocks, (edited ) in What's your experience with bluetooth audio?

No issues to report here. Audio sucked when I had an old shitty laptop with a BT4.0 chip but after I upgraded to a Thinkpad X280 Bluetooth just worked out of the box. Been using pipewire but before that I used pulseaudio with bluetooth audio extensions that you can find on the AUR. Pulseaudio was far less stable, pipewire just werks.

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