How do you guys get software that is not in your distribution’s repositories?

79 points

There is no software that is not in AUR. I use arch, BTW.

permalink
report
reply
32 points

But yeah, sometimes I just compile from source, if needed.

permalink
report
parent
reply
8 points

That’s exactly what the vast majority of AUR packages do already? You can also apply modifications to the compilation process if needed.

permalink
report
parent
reply
4 points

Indeed, but don’t underestimate my laziness.

permalink
report
parent
reply
19 points

My software, QuickDAV, is not in the AUR. It’s open source, and I release it only as an AppImage, because I am lazy.

permalink
report
parent
reply
22 points

I guess we should have added the word “notable”

I’m terribly sorry, you left the door wide open ;)

I’m curious, what makes AppImage a good choice for the lazy developer? Is it easier to create?

permalink
report
parent
reply
18 points

Ouch. xD

It’s super easy to create. And you distribute it on your own, so it’s basically like an installer exe on Windows. In my mind it’s one step above only offering source code.

permalink
report
parent
reply
4 points
*

I’m curious, what makes AppImage a good choice for the lazy developer? Is it easier to create?

The appimage is basically just git clone -> make -> make install DESTDIR=/path/to/AppDir -> wget appimagecreationtool and finally appimagecreationtool /path/to/AppDir and that’s it you have your appimage.

appimagecreationtool being several tools that can create the appimage from an AppDir, like linuxdeploy, linuxdeploqt, go-appimage, etc

And that on itself isn’t complex either, it if basically running ldd on the binary, then copy those libraries into the AppDir and finally run patchelf to patch the paths in the binaries and libraries, suyu uses a deploy script instead of using those tools, which I’ve recently forked and began expanding.

I don’t know how easy it is to make a flatpak or snap, but I do know the dev of zen browser hates dealing with the flatpak and iirc right now the flatpak is outdated as result.

EDIT: Also lite-xl has been making a flatpak for like 2 years and it isn’t ready yet.

permalink
report
parent
reply
3 points

There’s so much random, useful software distributed only as appimages. But not notable enough for packaging fanboys.

permalink
report
parent
reply
2 points

i use arch based btw (I love my Manjaro and it’s AUR support) :>

permalink
report
parent
reply
2 points

Rpg paper maker

Though the Linux version is now in a “do not use” state. The developer decided to just make it into a web app because it was only working on Ubuntu

permalink
report
parent
reply
2 points
*

Gatekeeping the word “software” here?
Here’s something not in the AUR. Tested on arch

permalink
report
parent
reply
20 points

Clearly we need an Arch version of rule 34 and rule 35

Rule 34a: If linux software exists, it’s in the AUR. No exceptions.

Rule 35a: If linux software is not in the AUR, it will be made available in the AUR.

permalink
report
parent
reply
3 points
*

I don’t intend on pushing that one to the AUR. It’s not worth it.
Maybe I’ll make an AppImage at most.

I don’t know any formal requirements for it being on AUR, but I just feel like this one does not fit there.

permalink
report
parent
reply
-4 points

This is such a weird gatekeeper take

permalink
report
parent
reply
69 points

If you don’t compile from source, do you even Linux?

permalink
report
reply
38 points

Linux From Scratch user detected

permalink
report
parent
reply
12 points

Or Slackware

permalink
report
parent
reply
10 points

Or gentoo.

permalink
report
parent
reply
9 points

Ah … yeah … totally. I would never use some filthy peasant distro like Mint. No sir! Never never ever!

permalink
report
parent
reply
11 points

AUR changed my life

permalink
report
parent
reply
4 points

Did someone’s script wipe out your tax returns?

permalink
report
parent
reply
58 points

Native package manager > Native binaries > AppImage > Flatpak.

Yes, snap isn’t even on the scale.

permalink
report
reply
58 points

Not a fan of AppImages myself. For an universal format it has surprising amount of issues with different distros, in my experience. And the whole Windows style “go to a website, download the AppImage, if you want to update it, go to the web page again and download it again” is one thing I wanted to get away from. At least they don’t come with install wizards, that clicking through menus thing was a pain.

For one off stuff I run once and never need again, AppImage is alright. But not being built-in with sandboxing, repos, all that stuff, it just seems like a step back.

permalink
report
parent
reply
11 points

I ran into the same issues, mentally, when trying out AppImages for the first time - but my attitude changed once I found and started using this tool: https://github.com/ivan-hc/AM

permalink
report
parent
reply
3 points

Glad you like AM.

permalink
report
parent
reply
1 point

So it’s Scoop, but for Linux? (That’s a compliment. I love Scoop.)

permalink
report
parent
reply
24 points

App images are a very Windows way to do things. They bundle everything so they are big

permalink
report
parent
reply
9 points

They are windows, but the linux version of dll-hell across distros and distro versions makes windows dll hell look quaint.

If someone had addressed that better it would be one thing, but binary interoperability is infinitely broken, so app image is actually an improvement.

permalink
report
parent
reply
6 points
*

Isn’t the gnome runtime alone 2GiB? You know how many appimages that is?

Not to mention you are unlikely to only use one runtime.

permalink
report
parent
reply
9 points

Then again, loads of apps share that runtime. And if other runtimes have same stuff as that GNOME runtime, the shared parts are on your disk only once. It’s pretty smart in how it works.

permalink
report
parent
reply
8 points

I’m a technically savvy but new to Linux user who installed Mint as my primary OS about a month ago. So far I’ve used Flatpaks and AppImages without any issue and haven’t come across snaps. Would you explain the differences and why I would care about one over another?

permalink
report
parent
reply
4 points

At the end of the day, they’re just different ways of reaching the same goal: universal packages for Linux. I personally use them interchangeably depending on the application and use case.

There are some packages that definitely work better and are intended to be used and installed via your native package manager (if they rely on system libraries and whatnot). But using either a Flatpak or AppImage results in the same experience - in my experience. It’s a personal preference.

permalink
report
parent
reply
2 points

IMO flatpaks are the future of installing linux apps. The comment you replied to lives in the past. System package manager should be for system binaries, not for applications.

permalink
report
parent
reply
6 points

But I like my applications years out of date and I think its good that every distro has to spend manhours on packaging it individually.

permalink
report
parent
reply
5 points

And the last three aren’t even an option in the enterprise unless your CTO is 24.

permalink
report
parent
reply
54 points
*

Why not just stick to what we’ve always been doing?

  1. wget something.tar.gz
  2. tar something.tar.gz
  3. man tar
  4. tar xzf something.tar.gz
  5. cd something
  6. ls -al
  7. ./config.sh
  8. chmod +x config.sh
  9. ./config.sh
  10. make config
  11. Try to figure out where to get some obscure dependency, with the right version number. Discover that the last depency was hosted on the dev’s website that the dev self-hosted when it went belly up 5 years ago. Finally find the lib on some weird site with a TLD you could have sworn wasn’t even in latin characters.
  12. make config
  13. make
  14. Go for coffee
  15. make install
  16. SU root
  17. make install
permalink
report
reply
12 points

I much prefer our modern package format solutions:

  1. sudo apt install something
  2. open
  3. wtf this is like 6 months old
  4. find a PPA hosted by someone claiming to have packaged the new version
  5. search how to install PPAs
  6. sudo apt <I forgot>
  7. install app finally
  8. wtf it’s 2 months old and full of bugs
  9. repo tells me to report to original developer
  10. report bugs
  11. mfw original dev breaks my kneecaps for reporting a bug in out of date versions packed with weird dependency constraints they can’t recreate
permalink
report
parent
reply
2 points
*

We should normalize programs that don’t use such exotic and impossible libraries that you have to do anything besides type “make” and “make install” for it to work.

In theory it’s a no brainer. In practice not so much.

permalink
report
parent
reply
2 points

in the end we end up using containers afaict

permalink
report
parent
reply
1 point
*
Deleted by creator
permalink
report
parent
reply
46 points

I’m currently on a atomic distro, so how I get my software from favorite to least favorite is this:

  1. Flatpak
  2. Appimage
  3. Fedora distrobox
  4. rpm-ostree
permalink
report
reply
5 points

Have you met nix?

permalink
report
parent
reply
7 points

Nix is cool but also incredibly painful

permalink
report
parent
reply
1 point

I use nix package manager on fedora silverblue. It’s awesome.

permalink
report
parent
reply
4 points

os-tree is slow as molasses

permalink
report
parent
reply
8 points

As it should be, don’t do that.

Doctor, when I do this it hurts…

Also, you’re creating a disk image…

permalink
report
parent
reply
4 points

It is. I also wonder if there was a model that accomplishes the same thing but with less image copying.

Like, make snapshots every day, but manual installs are not snapshotted but still tracked with ostree. So you can revert them, display them transparently etc.

permalink
report
parent
reply
3 points

finally, somebody in this thread who doesn’t live in the past.

System package manager is for system binaries. Not for applications.

permalink
report
parent
reply

linuxmemes

!linuxmemes@lemmy.world

Create post

Hint: :q!


Sister communities:

Community rules (click to expand)

1. Follow the site-wide rules
2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack members of the community for any reason.
  • Leave remarks of “peasantry” to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn. Even if you watch it on a Linux machine.
4. No recent reposts
  • Everybody uses Arch btw, can’t quit Vim, and wants to interject for a moment. You can stop now.

Please report posts and comments that break these rules!

Community stats

  • 6.5K

    Monthly active users

  • 1.3K

    Posts

  • 71K

    Comments