linuxdeploy VS linuxdeployqt

Compare linuxdeploy vs linuxdeployqt and see what are their differences.

linuxdeploy

AppDir creation and maintenance tool. Featuring flexible plugin system. (by linuxdeploy)

linuxdeployqt

Makes Linux applications self-contained by copying in the libraries and plugins that the application uses, and optionally generates an AppImage. Can be used for Qt and other applications (by probonopd)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
linuxdeploy linuxdeployqt
10 8
493 2,109
0.6% -
6.9 4.7
4 months ago 9 days ago
C++ C++
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

linuxdeploy

Posts with mentions or reviews of linuxdeploy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-31.
  • i need help to create a yml on github for create a AppImage
    3 projects | /r/linux4noobs | 31 Aug 2023
    name: Build DeSmuME AppImage on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build DeSmuME AppImage runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Install libfuse2 and Qt dependencies run: | sudo apt-get update sudo apt-get -y install libfuse2 qtbase5-dev qtchooser - name: Install dependencies run: sudo apt update && sudo apt install meson libsdl2-dev libpcap-dev libgtk-3-dev libgtk2.0-dev autoconf libglu1-mesa-dev - name: Build DeSmuME run: | cd desmume/src/frontend/posix/ meson build ninja -C build - name: List Build Folder Contents run: | cd desmume/src/frontend/posix ls -la cd ./build ls -la - name: Find Executable run: | # Buscar el archivo ejecutable de manera recursiva en el directorio de construcción executable_path=$(find desmume/src/frontend -name "desmume" -type f -executable) # Verificar si se encontró el archivo ejecutable if [[ -n "$executable_path" ]]; then echo "Archivo ejecutable encontrado en la ruta: $executable_path" else echo "Archivo ejecutable no encontrado." exit 1 fi - name: Install linuxdeploy and plugins run: | wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage wget https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage chmod a+x linuxdeploy-x86_64.AppImage chmod a+x linuxdeploy-plugin-qt-x86_64.AppImage - name: Build AppImage run: | ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt --output appimage mkdir dist mv ./AppDir/*.AppImage dist/ - name: Upload AppImage artifact uses: actions/upload-artifact@v2 with: name: desmume-appimage path: ./dist/
  • I'm completely lost as how to how to distribute a c++ program that had 3rd party dependencies.
    1 project | /r/cpp_questions | 4 Feb 2023
    Check out LinuxDeploy as an example of tooling for packing up a Linux application with all dependencies and shipping an artifact that is easy to run: https://github.com/linuxdeploy/linuxdeploy
  • Can't find a way to create AppImage for Qt6 programs
    3 projects | /r/QtFramework | 4 Oct 2022
    I recommend moving away from linuxdeployqt, and use linuxdeploy (almost the same name, but without the "qt" at the end). It has a Qt plugin, and it's as easy to use. Check how a real world application is using it, and it's with Qt 6.
  • Linuxdeploy goes from AUR source code to AppImage Executable While Bundling Resources In One Script
    2 projects | /r/AppImage | 24 Aug 2022
  • deploying an app in linux?
    1 project | /r/QtFramework | 3 Jun 2022
    You can use linuxdeploy if you want an alternative to generating the AppDir and the AppImage.
  • Help building a tool from github
    2 projects | /r/linux4noobs | 11 Apr 2022
    This is how you would generally build linuxdeploy (or any cmake project, in general): $ git clone https://github.com/linuxdeploy/linuxdeploy $ cd linuxdeploy $ cmake --build BUILD_DIRECTORY Where BUILD_DIRECTORY is either a directory in source path (eg. build) or another directory somewhere else (incase you want to do out-of-tree building)
  • Glibc error for static linking Ada project?
    5 projects | /r/ada | 12 Nov 2021
    You can use AppImage for this. It's easy to generate one using linuxdeploy, but I've found that it's not so easy to generate a fully portable one, when the distributions are very different in library versions.
  • Build stand-alone Qt product + publishing
    2 projects | /r/QtFramework | 17 Feb 2021
    The maintainer of that tool is rather hostile about allowing it to run anywhere but an ancient version of Ubuntu. If supporting ancient distributions isn't a requirement the similarly named linuxdeploy is a good choice. https://github.com/linuxdeploy/linuxdeploy
  • Can I repurpose an ond android phone with adguardhome?
    1 project | /r/androidafterlife | 9 Feb 2021
    With it being rooted you could use Linux Deploy (requires Busybox) & then the documentation seems pretty robust for AdGuard Home. Tricky part would be to figure out how to give the phone a static IP.

linuxdeployqt

Posts with mentions or reviews of linuxdeployqt. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-05.
  • Two reasons because Arch-based AppImages are not a good idea
    2 projects | /r/archlinux | 5 May 2023
    The second reason is the "modularity" of Arch, why Debian packages all the dependences in many different packages? Because a developer can isolate a bug or exclude that package using the right patch. Arch tends to package everything together. That's why an AppImage of Chromium for me is about 140 MB from a Ubuntu base and 280-300 from an Arch-base... but at least this is an issue of both arch-deployer and arch2appimage... I think that by using linuxdeployqt would be better in this case (SPOILER, it requires the host system with an old GLIBC version, also Debian Bookwork is too new for it xD ).
  • Font size is too small for the 4K monitors
    1 project | /r/linuxquestions | 22 Mar 2022
    Eagle uses 'linuxdeployqt' for cross-platform installations. Read about it HERE. There is a qt.conf file in the directory where the eagle executable is located. I am not sure exactly how to use it.
  • How I Create - Github Token Manager
    7 projects | dev.to | 10 Mar 2022
    linuxdeployqt allow to automatically pack all shared library that we need on binary file into single AppImage file, although linuxdeployqt mainly to generate AppImage for Qt application but it can use for general application, more information on https://github.com/probonopd/linuxdeployqt.
  • Help for create an installer of my app in raspberry pi 4
    1 project | /r/QtFramework | 11 Jan 2022
    For raspberry on the other hand is an entirely diferent story. I tried to use this: probonopd/linuxdeployqt but with no avail. The problem is that if i download the AppImage directly from the github account i cannot use it in the raspberry because it is not compiled for raspbian or i was told. So, i tried downloading directly the source code and compile it using the Qt Creator on the raspberry but also i am encountering several problems. When i try to build qt creator gives me this error: MakeFile:65: sub-QtWebEngineApplication-qmake_all] Error 3. Also, i am receiving Unkown module(s) Qt:webengine in the Qt Creator.
  • Are you able to build a qt project into just exe?
    2 projects | /r/cpp_questions | 21 Apr 2021
    You are looking for the windows equivalent of Mac DMG format, or linux appimage https://github.com/probonopd/linuxdeployqt/ / Flatpak.
  • https://np.reddit.com/r/QtFramework/comments/mu5cxh/qt_appimage_not_working_on_embedded_device/gv6xz02/
    1 project | /r/backtickbot | 20 Apr 2021
    # Generated by linuxdeployqt # https://github.com/probonopd/linuxdeployqt/ [Paths] Prefix = ../ Plugins = plugins Imports = qml Qml2Imports = qml
  • Qt AppImage not working on embedded device
    1 project | /r/QtFramework | 20 Apr 2021
  • Building an AppImage with linuxdeployqt
    3 projects | /r/QtFramework | 14 Apr 2021
    I am trying to use linuxdeployqt to create an appimage.

What are some alternatives?

When comparing linuxdeploy and linuxdeployqt you can also consider the following projects:

alire - Command-line tool from the Alire project and supporting library

TIDAL-Discord-Rich-Presence-UNOFFICIAL - UNOFFICIAL Tidal Discord Rich Presence

powerjoular

AppImageUpdate - AppImageUpdate lets you update AppImages in a decentral way using information embedded in the AppImage itself.

AppImageKit - Package desktop applications as AppImages that run on common Linux-based operating systems, such as RHEL, CentOS, openSUSE, SLED, Ubuntu, Fedora, debian and derivatives. Join #AppImage on irc.libera.chat

appimage

awesome-linuxdeploy - Crowd-sourced list of linuxdeploy plugins. Add your plugin to the list today!

LAN-Share - Cross platform LAN File transfer application built with Qt C++ framework

Serial-Studio - Multi-purpose serial data visualization & processing program

argparse - Argument Parser for Modern C++

pingnoo - An open-source cross-platform traceroute/ping analyser.