التثبيت كـ AppImage
يمكنك تنزيل AppImage الأخيرة من صفحة إصدارات QOwnNotes. من المفترض أن يكون اسم ملفها شيئا مثل QOwnNotes-x86_64.AppImage في هذه الصفحة.
Tips
If you have jq installed, you can also download the latest AppImage directly:
<span dir="rtl"># استعلم عن إصدارة لينكس الأخيرة عبر QOwnNotes API، وحلل JSON الناتج للحصول على الرابط، ونزّلها</span>
curl -L https://api.qownnotes.org/latest_releases/linux | jq .url | xargs curl -Lo QOwnNotes-x86_64.AppImage
عندئذٍ يمكنك جعل الملف قابلا للتنفيذ:
chmod a+x QOwnNotes-*.AppImage
Tips
صور AppImage تحتاج مكتبة libfuse2 حتى تعمل! على أوبنتو مثلا، يمكنك تثبيتها بالأمر sudo apt install libfuse2.
بعدئذٍ ستتمكن من تنفيذ الـ AppImage لتشغيل QOwnNotes.
Warning
إذا أردت استخدام التحديث التلقائي فنرجو التأكد من وضع ملف AppImage في مكان مسموح لحسابك بالكتابة فيه، مثل مجلد المنزل.
Tips
إذا واجهتك مشكلة في تشغيل الـ AppImage لأن نسخة مكتبة glibc التي لديك قديمة، يمكنك تجربة الـ AppImage المبنية على 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.