Installeer als AppImage
U kunt de nieuwste AppImage downloaden van de QOwnNotes-releasepagina. Het zou op die pagina de naam QOwnNotes-x86_64.AppImage moeten hebben.
Tips
If you have jq installed, you can also download the latest AppImage directly:
# query the latest Linux release from the QOwnNotes API, parse the JSON for the URL and download it
curl -L https://api.qownnotes.org/latest_releases/linux | jq .url | xargs curl -Lo QOwnNotes-x86_64.AppImage
Vervolgens kunt u de uitvoeringsrechten voor het bestand wijzigen:
chmod a+x QOwnNotes-*.AppImage
Tips
AppImages hebben libfuse2 nodig! Onder Ubuntu kun je bijvoorbeeld de bibliotheek installeren met sudo apt install libfuse2.
Daarna zou u de AppImage moeten kunnen uitvoeren om QOwnNotes uit te voeren.
Notitie
Als u de automatische updater wilt gebruiken, zorg er dan voor dat u uw AppImage op een plaats plaatst waar uw gebruikersaccount schrijftoegang heeft, bijvoorbeeld ergens in uw homedirectory.
Tips
Als u problemen heeft met het uitvoeren van de AppImage, omdat uw glibc-versie te oud is, kunt u de AppImage gebouwd op OBS proberen, deze moet worden gebouwd met glibc 2.16.
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.