There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

linux

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

rodbiren , in How can I easily and conveniently transfer files wirelessly between my linux computer and android phone?

Croc or syncthing depending on what kind of experience you are after. Syncthing if you want to have a shared folder like expert. And croc if you just need to send something. Croc has an app on f-droid, and syncthing is on the app store. Both are open source and pretty for excellent in their own right.

Cethin ,

I can recommend syncthing. If it’s a file you want to keep updated between the two devices, it’s great and easy to set up. I use it for my password manager database.

Default_Defect , in How can I easily and conveniently transfer files wirelessly between my linux computer and android phone?
@Default_Defect@midwest.social avatar

Take a picture of your screen.

/s

Crashumbc ,

With a Polaroid.

xilona ,

and wait for it to “dry” 😂

Jean_le_Flambeur , (edited ) in How can I easily and conveniently transfer files wirelessly between my linux computer and android phone?

In Debian KDE KDEConnect works well. Dont know about suse but can imagine it works there too

EDIT: grammar

Cethin ,

KDE Connect works even on Windows supposedly. I’ve had great experience with it on Ubuntu, Fedora, and Garuda.

laughterlaughter ,

Works well*.

junezephier , in KDE Plasma 6.1 released

damn, working too hard to notice the error in the second sentence :p

“will take you desktop to…”

harl3k1n ,

It’s still the first sentence.

fmstrat , in How can I easily and conveniently transfer files wirelessly between my linux computer and android phone?

I just use Nextcloud as a storage provider on a local computer.

bigmclargehuge , in what foss phone OS do you use and why?
@bigmclargehuge@lemmy.world avatar

Ran LineageOS on a OnePlus 6T for a couple months. Overall, it was perfectly usable, but also lacked some of the polish of my daily (Galaxy S23), which was totally to be expected.

Guenther_Amanita , in why does ublue bundle homebrew?

I don’t know the pros or cons of it vs Nix and others, but one pro is that it also runs on MacOS and other OSs. I’ve never used it, but it’s nice that uBlue offers a simple installation ootb.
Many devs seem to use it regularly, and it isn’t dead simple to set up from what I’ve heard. When uBlue offers an installation, then there is at least one person using it, otherwise it wouldn’t exist :D

smileyhead , in why does ublue bundle homebrew?

UBlue developer likes and use Homebrew so he thinks it is essential tool so his distro preinstall it to be better and more “user friendly”.

warmaster , in why does ublue bundle homebrew?

Dev Bias

eldain , in How can I easily and conveniently transfer files wirelessly between my linux computer and android phone?

Primitive ftpd from fdroid is my go-to “too lazy to configure a cloud thing” solution. It is fast and just works.

dandroid , in How can I easily and conveniently transfer files wirelessly between my linux computer and android phone?

I have tried KDE connect, and it never works when I need it to. I just send it to myself on Signal. It’s the easiest, most non-bullshit way.

vk6flab , in why does ublue bundle homebrew?
@vk6flab@lemmy.radio avatar

It’s a package management system in the same way that Flatpack, yum, apt-get, snap and dozens of others are.

If you use MacOS and Linux, it’s not inconceivable that you might want to use the same package management system across both.

I’ve used it, didn’t particularly warm to it and didn’t install it on my most recent MacOS install after it shat all over itself on a previous installation.

I didn’t know that it was available for Linux. Not tempted to try.

I’m a firm believer in apt-get and failing that, Docker with side journeys into podman.

poki , (edited ) in why does ublue bundle homebrew?

By default, Fedora Atomic envisions the following in regards to installing packages/software:

  • First, try the Flatpak.
  • If that doesn’t work, use Toolbx(/Distrobox).
  • If all else fails, resort to rpm-ostree.

This works pretty fine, but isn’t perfect:

  • Flatpak has become pretty good for software with a GUI. However, while it can do CLI, it’s underutilized.
  • Toolbx/Distrobox has its merits, but not everyone enjoys consuming CLI through containers.
  • Besides the fact that installing all your CLI tools through rpm-ostree will negatively impact how fast you can update your system, it also requires you to (soft-)reboot before you can access the newly installed package (unless you enjoy living on the edge with –apply-live). This can be pretty cumbersome, especially if you’re in flow.

Thus, the situation around CLI on Fedora Atomic became a sore to the eyes. Within the community, there were multiple attempts to tackle this problem:

  • Nix; For some time, this was the perfect solution. Unfortunately, in its current iteration, installing Nix on Fedora Atomic requires SELinux’ enforcing mode to be turned off. As turning enforcing mode off is unacceptable for uBlue’s maintainers, this was eventually dismissed.
  • Better tooling around Toolbx/Distrobox; There have been made some efforts in this regard, perhaps most notably Ptyxis. But, we’re not there yet. Though, some are hopeful of what podmansh will bring to the table.
  • Homebrew; It behaves as any other package manager used for installing packages from the repository on any Linux distro out there. Except, in this case, it’s exclusively utilized for CLI. Currently, it’s simply the most straightforward in use. You just have to teach people to replace their apt/dnf/ pacman with flatpak (for GUI) and brew (for CLI). Furthermore, it comes with a big and healthy repository. Finally, it utilizes technologies related to the ones found on Fedora Atomic.
  • https://www.freedesktop.org/software/systemd/man/latest/systemd-sysext.html; This has only very recently been added to systemd. I wouldn’t be surprised if this will play a prominent role going forward. Though, I’m unsure if CLI will benefit most of it.
mogoh ,

Very interesting. I wish flatpak would offer a better CLI experience. I don’t want another package managing tool, but here we are.

poki , (edited )

Can’t agree more.

I believe Flatpak initially couldn’t and/or didn’t want to do CLI. At some point, it offered some basic functionality; I first noticed it on Bottles. But, it’s pretty dire if no variation of top can be found as a Flatpak.

I wouldn’t be surprised if most people are simply unaware that Flatpak can even do CLI. This inevitably also negatively affects its CLI ecosystem.

Bitrot , (edited )
@Bitrot@lemmy.sdf.org avatar

The flatpak packaging tutorial has you build a cli app, so anyone building one is likely aware.

The real issue is invoking the commands. If you install a snap of top, you run top and it opens. If you installed a flatpak it wouldn’t be added to your PATH and even if you added the exports directory to your PATH you would need to remember to run org.gnu.top. Nobody wants to run some random flatpak run command all the time or create aliases for everything, so “flatpak isn’t for cli” becomes the mantra.

In an ideal world a flatpak could register the cli commands it wants to present to the user, and some alternatives system could manage which flatpak gets which command if there were collisions.

theshatterstone54 ,

In an ideal world a flatpak could register the cli commands it wants to present to the user, and some alternatives system could manage which flatpak gets which command if there were collisions.

This has been my dream ever since I discovered Flatpak. I wish it becomes the case one day.

It’s good that there has been partial progress in that direction. Let me give an example with the Floorp browser. I can do a flatpak install floorp and I can do a killall floorp and they will work. If we can somehow get a way of accessing flatpaks as if they’re regular packages via the terminal (is it possible to build a program to do this and have it packaged as a flatpak?; Maybe a program that creates a oneliner script to act as an “alias” in a directory (within $HOME so it works on immutable systems) that gets added to $PATH), that would be amazing!

filister ,

Doesn’t updating homebrew packages require a reboot?

Pantherina ,

No

autotldr Bot , in FreeBSD 14.1 vs. DragonFlyBSD 6.4 vs. NetBSD 10 vs. Linux Benchmarks

This is the best summary I could come up with:


The newly released FreeBSD 14.1 was delivering great out-of-the-box performance on this AMD Ryzen Threadripper 7980X 64-core / 128-thread workstation.

NetBSD 10.0 was much slower than the rest for the SQLite embedded database benchmark.

The packaged PHP on each operating system varies but in any event here is a look at the out-of-the-box performance.

FreeBSD 14.1 overall was the best BSD performer among the BSDs tested on this AMD Ryzen Threadripper workstation from System76.

It was refreshing to see how well the new FreeBSD 14.1 was performing and competing with the likes of Ubuntu 24.04 LTS and CentOS Stream 9.

Those wishing to see even more benchmarks form this Threadripper 7980X BSD/Linux comparison can do so via this result page.


The original article contains 164 words, the summary contains 120 words. Saved 27%. I’m a bot and I’m open source!

autotldr Bot , in Fedora 41 Looks To Offer A KDE Plasma Mobile Spin - Phoronix

This is the best summary I could come up with:


Two new change proposals have been filed for enhancing the KDE offerings with this autumn’s Fedora 41 release.

First, there is a proposal to offer a new Fedora Spin using KDE Plasma Mobile.

Similarly, a Fedora Kinoite Mobile Bootable Container image is also proposed as part of that.

Some find success as well using KDE Plasma Mobile on 2-in-1 laptop devices too.

Those are the newest Fedora 41 change proposals for that feature release due out in October.

These changes still need to be approved by the Fedora Engineering and Steering Committee (FESCo) in the coming weeks.


The original article contains 255 words, the summary contains 97 words. Saved 62%. I’m a bot and I’m open source!

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines