// Download TermStudio
TermStudio v1.0.0 is the first stable release. Choose the package format that matches your Linux distribution. All packages are free and open source under the MIT License.
LATEST STABLE
v1.0.0
Released 2024 | MIT License | Linux x86_64
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ [ Choose Your Package ] ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Download Packages
Compatible distros:
- Debian 10, 11, 12
- Ubuntu 18.04, 20.04, 22.04, 24.04 LTS
- Linux Mint 20, 21
- Pop!_OS 20.04+
- Elementary OS 6+
- Kali Linux
- All Debian-based distros
Install command:
sudo dpkg -i termstudio_1.0.0-1_all.deb
sudo apt-get install -f
⬇ Download .deb Package
Compatible distros:
- Red Hat Enterprise Linux (RHEL) 7, 8, 9
- Fedora 36, 37, 38, 39, 40
- CentOS 7, CentOS Stream 8/9
- AlmaLinux 8, 9
- Rocky Linux 8, 9
- openSUSE Leap / Tumbleweed
- All RPM-based distros
Install command:
# Fedora / RHEL 8+
sudo dnf install termstudio-1.0.0-1.noarch.rpm
# RHEL 7 / CentOS 7
sudo rpm -ivh termstudio-1.0.0-1.noarch.rpm
⬇ Download .rpm Package
Build requirements:
- Any Linux distribution
- GCC 7.0+ or Clang 6.0+
- GNU Make 4.0+
- Autoconf / Automake
- Standard C library (glibc)
- Git (optional, for cloning)
Build commands:
tar -xzf termstudio-1.0.0.tar.gz
cd termstudio-1.0.0
./configure
make
sudo make install
⬇ Download Source (.tar.gz)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ [ Verify Your Download ] ━━━━━━━━━━━━━━━━━━━━━━━━━━
// Verify Your Download
After downloading, verify the file integrity using sha256sum:
# Check the SHA256 hash of your downloaded file
sha256sum termstudio_1.0.0-1_all.deb
sha256sum termstudio-1.0.0-1.noarch.rpm
sha256sum termstudio-1.0.0.tar.gz
# Compare with the official checksums listed above
# All hashes should match. If they don't, re-download.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ [ Need Help? ] ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
// Installation Troubleshooting
Missing Dependencies (.deb)
sudo apt-get install -f
Run this after dpkg -i to automatically resolve and install any missing dependencies.
Missing Dependencies (.rpm)
sudo dnf install --allowerasing termstudio-1.0.0-1.noarch.rpm
Use dnf instead of rpm to handle dependency resolution automatically.
Build Errors (Source)
sudo apt install build-essential autoconf
# or
sudo dnf groupinstall "Development Tools"
Ensure build tools are installed before compiling from source.