this post was submitted on 13 Jul 2023
42 points (95.7% liked)

Linux

47337 readers
1442 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hi, I am currently working on project that I'm calling Installies. It is a tool for Linux that makes it easy to find and use bash scripts to install, remove, update, or compile apps. You can add specific scripts for different distros or architectures.

I have been working on this for the past couple of months, and it is nearly ready to be released. Lately I realized that I haven't asked any other Linux users if they would find it useful, so if you could tell me if you might find it useful, or any advice/feedback, it would be greatly appreciated. Thanks!

you are viewing a single comment's thread
view the rest of the comments
[–] Ramin_HAL9001@lemmy.ml 21 points 1 year ago* (last edited 1 year ago) (3 children)

It would be easier for me to understand if you can explain how this is different from the various other methods of installing software onto a computer.

  • How is this different from a package manager, or something like FlatPak or AppImage, where you can find scripts (not necessarily bash scripts) to install whole packages from a binary repository?
  • How is this different from Nix or Guix, which provides a method of automatically setting up a shell environment with all dependencies ready for you to build a piece of software from its source code?
  • Is there an advantage to your solution over something like OhMyZsh, which provides a repository of Zsh functions you can install to configure the Zsh user interface.
  • Is there a reason why, if someone does not want to use a package manager, or Nix/Guix, they would prefer to use your solution rather than just go to the website and find the script there to install the software they need?
[–] Berserkware@lemmy.ml 9 points 1 year ago (2 children)
  1. It is different from a package manager because it isn't platform specific because you can add scripts for any distro or architecture.
  2. It isn't really comparable to something like that because it just stores and runs bash scripts to install stuff.
  3. It can install any app, from anywhere, not just specific to zsh.
  4. It's mostly convenience. Also, not all websites have a script to remove once installed, or automated ways to update.
[–] Ramin_HAL9001@lemmy.ml 7 points 1 year ago* (last edited 1 year ago)

it isn’t platform specific because you can add scripts for any distro or architecture.

...

it just stores and runs bash scripts to install stuff

...

to remove once installed, or automated ways to update.

Well, any Linux distro has a package manager which you can use to install, update, or remove software. So can Nix, Guix, AppImage, and FlatPak. And Nix and Guix allows you to build from source code.

So I guess my question is, if I were thinking about using your app to install software, and update and remove it, how is it more convenient than using my ordinary package manager? If it is more convenient for building software from source, how is it more convenient than Nix or Guix?

[–] madmaurice@discuss.tchncs.de 6 points 1 year ago* (last edited 1 year ago)

Flatpak isn't distro specific either, is it?