spez,

I personally hate it when software has ‘linux support’ as one out-of-date .deb file and a .tar.gz

0x4E4F,
@0x4E4F@sh.itjust.works avatar

Meeh, if you can compile it or make it run on modern day libraries, who cares 🤷.

AVincentInSpace, (edited )

Right? Some of us like doing curl | tar xz to download and decompress in a single step, saving time and the hassle of installation

cupcakezealot,
@cupcakezealot@lemmy.blahaj.zone avatar

double click exe file

lseif,

10 page wizard, with malware boxed checked by default

BiggestBulb, (edited )
@BiggestBulb@kbin.run avatar

Being real, why DON'T distros just have the ability to do the installation if you double-click whatever file is downloaded?

I feel like we should have either option - download and double-click or just use the command line.

I mean, what else would double-clicking a .tar.gz file or an appimage do than install it (yes, I know, look into the archive, but really - how often is that the desired thing to do)? So, therefore, why don't we just have it install the files that are downloaded?

This is a legit question btw, I really don't know the answer

julianh,

How would the distro tell if the tar.gz is a program or just a bunch of compressed files? I tend to use tar files for compression rather than for distributing or installing software

Darken, (edited )
@Darken@reddthat.com avatar

By prompting the user to open as file / install as package

Like how many distros prompt (when opening executables) to open as file / run as a program

0x4E4F,
@0x4E4F@sh.itjust.works avatar

Yes, but the header of the file says it’s a binary, that is why it gives you the option to run as a program or open as a file. Because the OS knows that you can do either with binaries.

Darken,
@Darken@reddthat.com avatar

Is it the +x permission?

Why not use it the same way it is used in executables, but to indicate that a tar is installable

0x4E4F, (edited )
@0x4E4F@sh.itjust.works avatar

Some file managers might add the +x automatically if you choose to run the binary through the desktop environment (not the terminal)… or ask you if you’d like to mark the file as an executable (i.e. add +x to permissions).

You can’t do it the same way with tar, what are you gonna execute, tar is neither a script or an ELF binary. It’s like asking for a zip file to be executable, doesn’t make sense. You can change the extension to .exe, but it won’t run, it’s not an exe, no MZ header, nothing 🤷.

callyral, (edited )
@callyral@pawb.social avatar

Do you not know what a tar.gz is? it’s like a zip file. how are you supposed to install it automatically? the structure inside is unknown.

also, it’s commonly used for things like backups.

0x4E4F,
@0x4E4F@sh.itjust.works avatar

I mean, what else would double-clicking a .tar.gz file or an appimage do than install it (yes, I know, look into the archive, but really - how often is that the desired thing to do)?

Personally, I open tarballs quite often. Why? Just wanna know what’s inside them.

Double click translating to install on tar.gz is not wise since anything can be packed in a tarball, a gzip archive or a gzipped tarball.

And then you have a similar problem with tar.xz (it’s becoming more and more popular from what I can see). It doesn’t use gzip to compress the archive, it uses LZMA, so you have to use xz instead of gzip to decompress the tarball.

Basically, it boils down to how UNIX used to work. Mind you, back in the day there were no package managers, it was all done with .tar.zip or make install. This really was hell to be honest… keeping track of what app installed what libraries and versions of it… yes it really was a PITA. This is the real reason why package managers were invented (thank god!) and why having only one package manager on a system is the preferred way to handle apps/software. Otherwise, you’ll soon be in dependency hell. Shared libraries are at the core of any UNIX based OS. Yes, Flatpaks/Snaps/AppImages and package managers like nix circumvent this problem, but in no way is the problem gone. It’s still there, we just don’t mess around with it.

So, basically the idea of having an “installer” came quite late into the game. Plus, having to check on all dependencies and making an install script that worked on every single distro out there was just so complicated, that no one would ever want to go through with it. Sure, there are install.sh scripts in some pacakges out there, but they basically check nothig, it’s more or less “copy this here, that there” which of course could be done by hand anyway… and then run the app and pray it has all of the dependencies it needs 😬… which it never does 😂.

Chrobin,

A .tar.gz is a regular archive, the file manager shouldn’t assume it’s a program. Also, how do you expect it to work? There’s no general rule for archives. As for appimages, one of their selling points is that you can run them portably, so it shouldn’t install by default, but run. However, a right click install option would be nice.

kylostillreigns,
@kylostillreigns@lemmy.world avatar

Cause .tar.gz is not an executable binary in itself. It is more like a zip of the binary and its support files. Since it would be really difficult to distribute and maintain native binaries for every type of distro, application publishers used to just distribute for distros that has a larger userbase, like a .deb for Debian/Ubuntu and a .rpm for Fedora/RHEL/Suse, and then they would provide a tarball for any other distro. Flatpak and Snap have been introduced to eliminate this overhead from application developers, but they still offer tarballs as the newer solutions are still far from standardization.

BiggestBulb, (edited )
@BiggestBulb@kbin.run avatar

I 100% get that (and I know it's an archive), but I'm just saying why doesn't double-clicking a .tar.gz just run "tar xf file.tar.gz | sh" on that file? Or check if there's an executable in the extracted files and then run it if there is, and if it's just an archive of files then open the extracted folder?

0x4E4F,
@0x4E4F@sh.itjust.works avatar

What if I don’t want to install it, even if there is a binary in there? What if I just wanna open the archive and see it’s content?

The OS does the smart thing. The header says it’s an archive, so we treat it as just that, an archive. Commercial OSes like Windows and MacOS are the oddballs out, not Linux. It just interprets the cold hard truth - this is an archive, I have no idea what’s in it, you tell me what to do with it, end of story.

018118055,

curl pipe bash lol

AlexisFR,
@AlexisFR@jlai.lu avatar

But it’s correct. It’s time to move on.

0x4E4F,
@0x4E4F@sh.itjust.works avatar

Hey, I have nothing against people using GUIs to install software. Just don’t say it’s retarded to use a tarball to do the same. After all, everything is done through the terminal (more or less) in UNIX like operating systems. Just because it has a GUI, doesn’t mean that “black magic” commands are not being run in the background.

Octopus1348,
@Octopus1348@lemy.lol avatar

The command line way is right at the top, and it doesn’t seem like it’s implying retarded if you know this meme format.

HKayn,
@HKayn@dormi.zone avatar

It’s a meme.

crony,
@crony@lemmy.cronyakatsuki.xyz avatar

sudo emerge app-misc/i-love-gentoo

WallEx,

Ew, what’s that website?

backhdlp,
@backhdlp@lemmy.blahaj.zone avatar

Average redditor who didn’t grow up to understand that opinions exist:

MentalEdge,
@MentalEdge@sopuli.xyz avatar

A bit of an elitist gatekeeper, are we?

db2,

It’s a screenshot of a post by someone that fits that description. The OP here tried to show that but it isn’t clear.

MentalEdge, (edited )
@MentalEdge@sopuli.xyz avatar

The original post is a perfectly humorous meme on the idea that “maybe enabling users doing things via gui isn’t a horrible idea”.

Posting a screenshot of someone else’s post, with a clearly negative note, in hopes of provoking… What? A hateful echo chamber around it?

There’s nothing funny here. It essentially just boils down to “look at how dumb this reasonable opinion exaggerated for comedic effect is” which is little more than toxic slander looking for validation.

TexMexBazooka,

I too consume my memes with a pinky out

octesian,

I don’t know whether to upvote or downvote. Congratulations.

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