This repository provides a Debian package repository for v2, a local-first rich-text editor with versioning capabilities.
Add the repository and install v2 with these three commands:
# Add GPG key
curl -fsSL https://oktana-coop.github.io/v2-deb/public.key | sudo gpg --dearmor -o /usr/share/keyrings/v2-archive-keyring.gpg
# Add repository
echo "deb [signed-by=/usr/share/keyrings/v2-archive-keyring.gpg] https://oktana-coop.github.io/v2-deb stable main" | sudo tee /etc/apt/sources.list.d/v2.list
# Install v2
sudo apt update && sudo apt install v2
Once installed via APT, v2 will be updated automatically with your system updates:
sudo apt update && sudo apt upgrade
If you prefer not to use APT, you can download .deb packages directly from the GitHub releases page.
# Download the appropriate package for your architecture
wget https://github.com/oktana-coop/v2/releases/download/v0.11.7/v2-0.11.7-amd64.deb
# Install with dpkg
sudo dpkg -i v2-0.11.7-amd64.deb
# Install any missing dependencies
sudo apt-get install -f
This repository follows the standard Debian repository layout:
pool/main/v/v2/ # DEB packages
dists/stable/ # Repository metadata
├── Release # Release information
├── Release.gpg # GPG signature (detached)
├── InRelease # GPG signature (inline)
└── main/
├── binary-amd64/ # amd64 package index
└── binary-arm64/ # arm64 package index
This repository is automatically updated when a new version of v2 is released on GitHub. The update process:
.deb packages from the GitHub releaseTo verify the repository is properly configured:
# Check repository status
apt-cache policy v2
# Verify GPG key
apt-key list
# View package information
apt show v2
If you get “repository not found” errors:
/etc/apt/sources.list.d/v2.list/usr/share/keyrings/v2-archive-keyring.gpgsudo apt update againIf you see GPG signature errors:
# Re-add the GPG key
curl -fsSL https://oktana-coop.github.io/v2-deb/public.key | sudo gpg --dearmor -o /usr/share/keyrings/v2-archive-keyring.gpg
sudo apt update
To remove v2 and the repository:
# Remove the package
sudo apt remove v2
# Remove repository configuration
sudo rm /etc/apt/sources.list.d/v2.list
sudo rm /usr/share/keyrings/v2-archive-keyring.gpg
sudo apt update
The source code for v2 is available at: https://github.com/oktana-coop/v2
v2 is open source software. See the LICENSE file in the source repository for details.
For issues, questions, or contributions: