Install Bisq on Tails OS using the official .deb package. Learn how to persist the app, run it via Tor, and store wallet and trade data securely.
Why Use Bisq on Tails?
- ๐ Bisq is a decentralized, Tor-based Bitcoin exchange
- ๐ง Tails routes all traffic through Tor by default
- ๐พ Using persistent storage allows you to save wallet/trade data securely
What You’ll Need
- Tails OS installed with Persistent Storage enabled and unlocked
- At least 500MB of free persistent space
- Internet access (Tor)
Step 1: Create a Persistent Folder for Bisq
mkdir -p /media/amnesia/Persistent/bisq
cd /media/amnesia/Persistent/bisq
Step 2: Download the Official .deb Package
Get the latest .deb file from the official site using torsocks:
torsocks wget https://bisq.network/downloads/Bisq-1.9.13.deb -O bisq.deb
(Replace the version number if there’s a newer release)
Step 3: Install Dependencies
First update APT (over Tor):
torsocks apt update
Install required packages:
torsocks apt install -y openjdk-17-jre libsodium23 libxss1 libxrender1 libxtst6 libnss3
Note: These packages are not persistent. You’ll need to reinstall them after each Tails reboot unless automated via a script.
Step 4: Install Bisq
Now install the downloaded .deb package:
torsocks dpkg -i bisq.deb
If it complains about missing dependencies, run:
torsocks apt --fix-broken install
Step 5: Launch Bisq
bisq
The GUI should open in a few seconds. It uses the built-in Tor daemon unless otherwise configured.
Step 6: Store Wallet and Trade Data Persistently
By default, Bisq stores your data in:
/home/amnesia/.local/share/Bisq
But this data is not persistent. To persist it:
- Create a persistent config directory:
- Before launching Bisq, symlink the config folder:
mkdir -p /media/amnesia/Persistent/bisq-data
rm -rf ~/.local/share/Bisq
ln -s /media/amnesia/Persistent/bisq-data ~/.local/share/Bisq
This ensures your wallet, trades, and preferences are saved between reboots.
Optional: Create a Launcher Script
nano /media/amnesia/Persistent/bisq/start-bisq.sh
Paste this:
#!/bin/bash
# Ensure dependencies (must be manually installed after reboot)
/usr/bin/bisq
chmod +x /media/amnesia/Persistent/bisq/start-bisq.sh
Optional: Add Desktop Shortcut
nano /home/amnesia/Desktop/bisq.desktop
Paste:
[Desktop Entry]
Name=Bisq
Exec=/media/amnesia/Persistent/bisq/start-bisq.sh
Icon=utilities-terminal
Type=Application
Categories=Finance;
chmod +x /home/amnesia/Desktop/bisq.desktop
Security Tips
- Always verify downloads: use the GPG signature available at bisq.network/downloads
- Keep backups of your Bisq wallet and data in encrypted storage
- Use strong passwords and enable arbitrator protection where available
Troubleshooting
- Java not found? โ Reinstall
openjdk-17-jreafter reboot - GUI won’t open? โ Try running
bisqfrom terminal to check errors - Data not saved? โ Ensure the
~/.local/share/Bisqsymlink is set up properly
Final Thoughts
Running Bisq from Tails offers unmatched privacy and anonymity for peer-to-peer Bitcoin trading. While Tails is ephemeral by design, combining it with Persistent Storage and careful folder setup lets you securely retain your Bisq wallet and trading history across sessions โ all routed through Tor.
Next step? Fund your Bisq wallet, register a payment method, and try your first offer!





