Als AppImage installieren
Sie können das neueste AppImage von der Seite QOwnNotes-Versionen herunterladen. Es sollte auf dieser Seite in etwa QOwnNotes-x86_64.AppImage heißen.
Tips
If you have jq installed, you can also download the latest AppImage directly:
# fragen Sie die neueste Linux-Version von der QOwnNotes-API ab, parsen Sie die JSON nach der URL und laden Sie sie runter
curl -L https://api.qownnotes.org/latest_releases/linux | jq .url | xargs curl -Lo QOwnNotes-x86_64.AppImage
Danach können Sie die Ausführungsberechtigungen für die Datei ändern:
chmod a+x QOwnNotes-*.AppImage
Tips
AppImages need libfuse2 to run! For example under Ubuntu you can install the library with sudo apt install libfuse2.
Nachher sollten Sie das AppImage ausführen können, um QOwnNotes zu starten.
Warnung
Wenn Sie den automatischen Updater verwenden möchten, stellen Sie bitte sicher, dass Sie Ihr AppImage an einem Ort ablegen, auf den Ihr Benutzerkonto Schreibzugriff hat, z.B. irgendwo in Ihrem Home-Verzeichnis.
Tips
Falls Sie Problem beim Starten des AppImages haben, weil Ihre glibc-Version zu alt ist, können Sie das AppImage basierend auf OBS ausprobieren, das mit glibc 2.16 erstellt worden sein müsste.
Portable mode
You can run the AppImage in portable mode by passing the --portable argument:
./QOwnNotes-x86_64.AppImage --portable
In portable mode all application data is stored in a Data folder next to the AppImage file instead of in your home directory. This includes:
- Settings (
Data/QOwnNotes.ini) - The notes database (
Data/QOwnNotes.sqlite) - Your notes (
Data/Notes/) - Scripts, spell-check dictionaries, and other application data
This makes it easy to carry QOwnNotes together with all your notes on a USB drive or any other portable storage device.
Tips
Make sure the directory containing the AppImage file is writable, so that the Data folder can be created next to it.