linux

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

Flaky, in I finally switched back to Linux as my daily driver after a couple of years of being on nothing but Windows.
@Flaky@iusearchlinux.fyi avatar

I always think about going back to Windows, but then I snap myself out of it seeing what Microsoft are doing. I still have a virtual machine for MusicBee (which… isn’t the greatest in WINE, I’ll just say that much) but everything else works fine. Also had a pretty good experience with Apple Music in Waydroid, with scrobbler support (Pano Scrobbler)

Owljfien,

I was trying to get MusicBee working earlier this week and gave up, ended up trying something called Strawberry and found myself liking it for the brief amount I’ve used it

Flaky,
@Flaky@iusearchlinux.fyi avatar

My workflow is too married to MusicBee to do that lol, it’s the reason I keep a Windows VM handy nowadays (okay, and Apple Music if I need to do some playlist things)

bertmacho, in Can one recover from an accidental rm -rf of system directories by copying those files back in from a backup?

you dont say the o/s but if the pkg manager works, or you can add a statically compiled version, you could force reinstall all pkgs

lemmyvore, in [Video] Red Hat Is About To End Xorg: Is Wayland Ready?

There’s no Red Hat anymore, it was sold to IBM 5 years ago. All their recent shifts in FOSS strategy are a predictable result of that. IBM only cares to streamline RHEL operations not about what’s usable or appropriate for Linux in general.

penquin, in Laptop with long runtime

And I’m out here ecstatic for getting 4 hours on my laptop 😂

oneguynick, in Laptop with long runtime
@oneguynick@lemmy.world avatar

Lenovo x13s Arm setup with Linux is coming along and can hit those runtimes. Will be slower, but good enough for daily work

gomp, (edited ) in Can one recover from an accidental rm -rf of system directories by copying those files back in from a backup?

Just reinstall :)

Copying back the files to the right partition/directory works, but if you didn’t backup the owner and permissions for each file it’s gonna be a pain to restore those.

After reinstalling, you can compare your new system with your backup to see what changes/configs you had made

radioactiveradio, (edited ) in What are the differences between linux distributions?

How much snap you have/need. Or the stability I guess, but in my experience that hasn’t been a problem yet.

bruhduh, in Laptop with long runtime
@bruhduh@lemmy.world avatar

Basically any laptop with AMD U series apu with big enough battery will suffice, just set up properly TLP programm after installation

knobbysideup, in Linux Mint - Screenshot annoyance

Try using a timer

user224,
@user224@lemmy.sdf.org avatar

Why did this not come to my head. My idea was to use video capture card, connect that to another computer or phone, set screens to mirror and then take snapshot of the video.

Work harder, not smarter.

absGeekNZ,
@absGeekNZ@lemmy.nz avatar

Timer doesn’t work with an area, but works well for the whole screen

mvirts,

Ya use gimp, the old standby for impossible screenshots

russjr08,
@russjr08@outpost.zeuslink.net avatar

This is what I do, I can’t speak for Mint’s screenshot tool, but Spectacle for KDE will indeed freeze the whole screen after a set timer - allowing you to open context menus and whatnot. Then on the “frozen” image you can highlight only a specific section of the screen to screenshot, make annotations, etc.

Spectacle is one of the things I miss the most every time I try out GNOME again for a bit.

cmnybo,

With the MATE screenshot tool, you can set a timer and set it to either capture the active window or the whole desktop. It will capture context menus when using the timer.

colourlesspony, in 13" or smaller Linux laptop - best replacement for aging chromebook?

Unfortunately, the new FOSS linux laptop scene is basically the pine book pro for less then $250 or Framework/System76/Tuxedo for greater than $900 with nothing in-between.

possiblylinux127,

That is not true at all. There are plenty of options

colourlesspony,

Yeah, I should be more clear. I’m talking about laptops that the manufacture openly supports or ships a linux distro with it. I just assume OP already knows he can do a bit of research and get a decent $300 laptop from like lenovo/acer/hp/dell/etc… and install linux on it.

Nimrod,

I’m comfortable doing the Linux swap on an old dell, but I guess what I’m looking for is a recommendation of a device that is known to work well for that purpose.

Are there any “gotchas” that I should be looking out for in the hunt?

0x4E4F, (edited )

If you’re hunting down older eqipment (5, 6 years old), no, not really… everything just works with Linux and older stuff. The newer stuff is always the problem with any OS that is not Windows (though that is changing for the better in the last few years, especially for Linux).

colourlesspony,

It’s hard to recommend because sometimes with cheaper laptops they have weird wifi chip sets, audio chip sets, and stuff for controlling the lcd back light, f-keys, etc… Also sometimes they have weird way to boot into the boot menu that may not be well documented. I don’t really know what brand or models should be avoided though.

Nimrod,

Never heard of the pinebook pro. Looks pretty neat. I wish it came with a smaller size, it would be perfect.

NotAnArdvark,

Oooh, don’t do the Pinebook Pro. I think anything Pine64 isn’t unsuitable for a non-tinkerer to be using. Also, if there’s DRM content involved (unsure on Hulu), you’ll probably want to stick with an x86 CPU.

Nimrod,

Yeah… the more I read into the pine stuff, the less fitting it is. I might enjoy one to mess with, but it won’t make a great gift!

Moobythegoldensock,

How about Pinetab 2?

Though it’s important to note that you’re buying the hardware and the community is actively working on the software. For example, the wifi driver is only partially functional and it’s currently recommended that only developers should install it. Otherwise, they’re recommending using an external adapter or phone for wifi until it gets fixed.

possiblylinux127,

Keep in mind that the CPU is ancient by today’s standards. It will be slow

haagch, in Laptop with long runtime

Not the most comfortable but if you get one with usb-c pd charging, there are quite a few powerbanks even with 100+ watt now.

governorkeagan, in PeerTube v6 is out, and powered by your ideas !

I can’t wait for these changes to go live on TILvids.com

Thank you for all the hard work!!

mesamunefire,

My favorite instance on peertube.

governorkeagan,

Same!

pan_troglodytes, in Laptop with long runtime

bought a (used) t470 a few months ago, been happy with it - especially for the price.

RagingToad, in How to take actions on multiple docker containers at once

If the containers are related you could use docker-compose, which has commands to stop / restart/ remove all containers at once.

wcooley,

I use Compose even when I have a single container to run because I can put all the config bits I need into a file and can then do most of the work without remembering lots of command line options and often without even needing to mention the service name directly.

youngGoku,

Same. I can’t remember the last time I started a docker container without a compose file.

YIj54yALOJxEsY20eU,

I keep a docker directory in my home dir that has a directory for each docker container/stack in a compose file. Taking down a container looks like so.

  • cd docker/wallabag
  • docker-compose down

Imo, the best way to work with docker.

Discover5164,

i do the exact same

luthis,

Cool, didn’t know that!

Just tested, so you have to cd to the directory with the docker-compose.yml file in it first

gratux,
@gratux@lemmy.blahaj.zone avatar

you can also use the -f option to specify the compose file without going to it.

macattack, (edited ) in 13" or smaller Linux laptop - best replacement for aging chromebook?

As of next month, I’ve been using Chromebooks for 10 years however I also came to the same conclusion re: Google/ChromeOS over the summer.

Initially, I bought a Windows laptop but the keyboard layout (specifically the function keys) felt absolutely foreign, even after I wiped it and installed Debian. In retrospect, my theory is that a $500 Chromebook has worse internals but a much better keyboard/trackpad than a Windows equivalent, and that the keyboard layout is more user-friendly in a browser-first world. Eventually, I went back to my Chromebook but with a twist.

I’m biased, but since you seem like you know your way around Linux and tinkering, one suggestion that hasn’t been mentioned is that you buy a new Chromebook and turn it into a Chrultrabook (aka a Chromebook w/ ChromeOS completely wiped & replaced w/ Linux).

I’ve been running one of the last few months and it’s been an overall pleasant experience. Perhaps most important for me is that the tutorial includes keyd to reprogram the keyboard shortcuts to mirror the Chromebook layout. The community is growing and responsive, especially on the Linux side.

Documentation website

Supported Chromebooks

Helpful Discord Chat

Brand new Forum that is still being built

Nimrod,

Thanks for the resources. I think this could be the way forward. I’ll do some research first, as I need something super stable, since I won’t be the final user. So if it breaks, I’m on the hook.

Do you have any suggestions on possible candidate Chromebooks?

macattack,

I just did some digging on Best Buy and Amazon for sales, but mostly came across larger models or models that were MediaTek/Snapdragon (the chrultrabook team almost exclusively works on intel devices).

I’d say your best bet is to go to the supported devices list, and Ctrl + F for ‘13’ or ‘11’ to highlight the smaller-sized chromebooks and then check to see what’s available, or to jump in the Discord and pose the question to those in the linux channel

Nimrod,

Nice. That’s the move. I am finding it more and more difficult to find smaller laptops/chromebooks these days. If I want a big screen, I’ll sit down at my desktop!

Thanks again for the resources

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