نصب به صورت AppImage
شما می توانید آخرین نسخه AppImage را از صفحه انتشار های QOwnNotes بارگیری کنید. آن باید در صفحه مورد نظر به شکلی نظیر QOwnNotes-x86_64.AppImage نامگذاری شود.
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
سپس می توانید مجوزهای اجرا را در پرونده تغییر دهید:
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.
Afterward you should be able to execute the AppImage to run QOwnNotes.
Warning
در صورت تمایل به استفاده از بروز رسان خودکار، لطفاً مطمئن شوید که AppImage خود را در جایی که حساب کاربری شما به آن دسترسی نوشتاری دارد (مثلاً در دایرکتوری شخصی)، قرار دهید.
Tips
در صورت بروز مشکل در اجرای AppImage، به دلیل بسیار قدیمی بودن نسخه glibc شما، AppImage built on OBS که بایستی با 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.