All installation guides

Install ITSDU on Linux

Choose AppImage for a portable single-file app that runs on most distributions, or use a .deb package on Debian-based systems like Ubuntu, Linux Mint, and Pop!_OS.

Which package should I choose?

  • .deb on Debian, Ubuntu, Linux Mint, Pop!_OS, and other Debian-based distributions.
  • AppImage on Fedora, Arch, openSUSE, and most other distributions — or anywhere you don't want to install a system package.

AppImage

Portable · Most distributions

ITSDU-Linux-0.1.7.AppImageDownload

Steps

  1. Download the AppImage

    Get ITSDU-Linux-0.1.7.AppImage from the downloads page.

  2. Make it executable

    Choose either approach.

    GUI

    1. Right-click the AppImage in your file manager.
    2. Open Properties Permissions.
    3. Tick Allow executing file as program (wording varies by file manager).

    Terminal

    chmod +x ITSDU-Linux-0.1.7.AppImage
  3. Run it

    Double-click the AppImage in your file manager, or from the terminal:

    ./ITSDU-Linux-0.1.7.AppImage

Debian, Ubuntu, Mint, Pop!_OS

.deb package

ITSDU-Linux-0.1.7.debDownload

Steps

  1. Download the .deb package

    Get ITSDU-Linux-0.1.7.deb from the downloads page.

  2. Install it with apt

    From the directory where you downloaded the .deb:

    sudo apt install ./ITSDU-Linux-0.1.7.deb

    apt will resolve dependencies automatically.

  3. Launch ITSDU

    Open ITSDU from your application launcher, or run itsdu in a terminal.

Fallback: dpkg

If apt isn't available, you can install with dpkg and then resolve any missing dependencies:

sudo dpkg -i ITSDU-Linux-0.1.7.deb
sudo apt install -f

Troubleshooting

Nothing happens when I double-click the AppImage

The file isn't marked as executable yet. From a terminal in the same folder:

chmod +x ITSDU-Linux-0.1.7.AppImage

Then double-click again, or run it directly with ./ITSDU-Linux-0.1.7.AppImage.

Permission denied

Same fix — make the AppImage executable:

chmod +x ITSDU-Linux-0.1.7.AppImage
Dependency problems when installing the .deb

Use apt instead of dpkg when possible — apt resolves dependencies for you:

sudo apt install ./ITSDU-Linux-0.1.7.deb

If you already used dpkg and saw dependency problems, run sudo apt install -f to fix them.

Which Linux package should I choose?

Use .deb if you're on Debian, Ubuntu, Mint, Pop!_OS, or another Debian-based distribution. It integrates with apt and your system package manager.

Use AppImage otherwise — including Fedora, Arch, openSUSE, and any time you want a portable, no-install option.

AppImage requires FUSE

Some newer distributions don't ship FUSE 2 by default. Most package managers can install it — for example on Ubuntu 22.04+:

sudo apt install libfuse2

Stay safe

Only download ITSDU from itsdu.danielz.dev or the official GitHub releases linked from the downloads page. Don't install files shared through random links or re-uploaded elsewhere.

Still need help?

Open an issue on GitHub if something isn't covered here. Mention your distribution and the exact command output you saw — that's usually enough to spot the problem.