This guide walks through installing JetBrains Toolbox from a tarball on Linux systems. JetBrains Toolbox is a desktop application that helps you install, update, and manage JetBrains IDEs like IntelliJ IDEA, PyCharm, WebStorm, and more.
- Linux system with sudo privileges
- Downloaded JetBrains Toolbox tarball (e.g.,
jetbrains-toolbox-2.6.3.43718.tar.gz) - Terminal access
Navigate to the directory containing the tarball and extract it:
cd ~/Downloads
tar -xzf jetbrains-toolbox-2.6.3.43718.tar.gzCheck that the files were extracted correctly:
ls -la jetbrains-toolbox-2.6.3.43718/
ls -la jetbrains-toolbox-2.6.3.43718/bin/You should see the main executable jetbrains-toolbox and other necessary files.
Move the extracted directory to /opt for system-wide installation:
sudo mv jetbrains-toolbox-2.6.3.43718 /opt/jetbrains-toolboxCreate a symbolic link in /usr/local/bin for easy command-line access:
sudo ln -sf /opt/jetbrains-toolbox/bin/jetbrains-toolbox /usr/local/bin/jetbrains-toolboxCopy the desktop file to make it available in your application menu:
sudo cp /opt/jetbrains-toolbox/bin/jetbrains-toolbox.desktop /usr/share/applications/Update the desktop file to point to the correct executable location:
sudo sed -i 's|Exec=.*|Exec=/opt/jetbrains-toolbox/bin/jetbrains-toolbox|' /usr/share/applications/jetbrains-toolbox.desktopCheck that the installation was successful:
which jetbrains-toolboxThis should return /usr/local/bin/jetbrains-toolbox.
You can now launch JetBrains Toolbox in several ways:
-
From Terminal:
jetbrains-toolbox
-
From Application Menu: Look for "JetBrains Toolbox" in your desktop environment's application menu
-
Direct Execution:
/opt/jetbrains-toolbox/bin/jetbrains-toolbox
When you first launch JetBrains Toolbox:
- It will create a configuration directory in your home folder
- You may need to accept the license agreement
- The toolbox will appear in your system tray
- You can then install JetBrains IDEs through the interface
After installation, the files are organized as follows:
/opt/jetbrains-toolbox/
├── bin/
│ ├── jetbrains-toolbox # Main executable
│ ├── jetbrains-toolbox.desktop # Desktop entry
│ ├── askpass # Password helper
│ ├── jre/ # Java Runtime Environment
│ ├── lib/ # Library files
│ └── ... # Other support files
/usr/local/bin/
├── jetbrains-toolbox # Symbolic link
/usr/share/applications/
├── jetbrains-toolbox.desktop # System desktop entry
-
Permission Denied:
- Ensure you have sudo privileges
- Check that the executable has proper permissions:
chmod +x /opt/jetbrains-toolbox/bin/jetbrains-toolbox
-
Desktop Entry Not Appearing:
- Refresh your desktop environment's application cache
- Log out and log back in
- Check if the desktop file exists:
ls -la /usr/share/applications/jetbrains-toolbox.desktop
-
Command Not Found:
- Verify the symbolic link exists:
ls -la /usr/local/bin/jetbrains-toolbox - Check if
/usr/local/binis in your PATH:echo $PATH
- Verify the symbolic link exists:
To remove JetBrains Toolbox:
# Remove the application directory
sudo rm -rf /opt/jetbrains-toolbox
# Remove the symbolic link
sudo rm /usr/local/bin/jetbrains-toolbox
# Remove the desktop entry
sudo rm /usr/share/applications/jetbrains-toolbox.desktop
# Remove user configuration (optional)
rm -rf ~/.local/share/JetBrains/Toolbox- System Requirements: JetBrains Toolbox requires a 64-bit Linux system
- Updates: The toolbox will automatically check for and install updates
- IDE Management: Use the toolbox to install, update, and manage multiple versions of JetBrains IDEs
- License: Each IDE may require its own license or subscription
- OS: Archcraft Linux
- Shell: zsh 5.9
- Version: JetBrains Toolbox 2.6.3.43718
This guide was created on July 3, 2025. For the latest information, visit the JetBrains Toolbox official page.