Skip to content

Commit 94ce9bb

Browse files
committed
#3341 doc: add Debian 13 installation instructions
Signed-off-by: Patrizio Bekerle <patrizio@bekerle.com>
1 parent b15cf7d commit 94ce9bb

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# QOwnNotes Changelog
22

3+
## 25.8.4
4+
5+
- There now is a software repository for **Debian Linux 13.0**
6+
- Please visit the [Debian installation page](https://www.qownnotes.org/installation/debian.html)
7+
for instructions (for [#3341](https://github.com/pbek/QOwnNotes/issues/3341))
8+
39
## 25.8.3
410

511
- Added a **new editor color schema** _Shark - Origami_ by @Inventhrice

webpage/src/installation/debian.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,33 @@ This package is built with Qt6.
2727

2828
[Direct Download](https://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_Unstable)
2929

30+
## Debian 13.0
31+
32+
Run the following shell commands to trust the repository.
33+
34+
```bash
35+
SIGNED_BY='/etc/apt/keyrings/qownnotes.gpg'
36+
sudo mkdir -p "$(dirname "${SIGNED_BY}")"
37+
curl --silent --show-error --location http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_13/Release.key | gpg --dearmor | sudo tee "${SIGNED_BY}" > /dev/null
38+
sudo chmod u=rw,go=r "${SIGNED_BY}"
39+
```
40+
41+
Run the following shell commands to add the repository and install QOwnNotes from there.
42+
43+
```bash
44+
SIGNED_BY='/etc/apt/keyrings/qownnotes.gpg'
45+
ARCHITECTURE="$(dpkg --print-architecture)"
46+
echo "deb [arch=${ARCHITECTURE} signed-by=${SIGNED_BY}] http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_13/ /" | sudo tee /etc/apt/sources.list.d/qownnotes.list > /dev/null
47+
sudo apt update
48+
sudo apt install qownnotes
49+
```
50+
51+
::: tip
52+
This package is built with Qt6.
53+
:::
54+
55+
[Direct Download](https://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_13)
56+
3057
## Debian 12.0
3158

3259
Run the following shell commands to trust the repository.

0 commit comments

Comments
 (0)