-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstallation.orig
1292 lines (1182 loc) · 80.7 KB
/
installation.orig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>QOwnNotes installation</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="format-detection" content="telephone=no"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="author" content="Patrizio Bekerle"/>
<meta name="description" content="QOwnNotes is the cross-platform open source plain-text file notepad with markdown support, that works together with the notes application of ownCloud."/>
<meta name="keywords" content="QOwnNotes, plain-text, markdown, ownCloud, notepad, cross-platform, open source, Patrizio Bekerle, Linux, Windows, macOS"/>
<meta name="generator" content="eZ Publish"/>
<meta name="geo.region" content="AT" />
<meta name="geo.placename" content="Graz" />
<meta name="geo.position" content="47.070714;15.439504" />
<meta name="ICBM" content="47.070714, 15.439504" />
<meta name="Content-language" content="en-GB" />
<link rel="image_src" href="https://raw.githubusercontent.com/pbek/QOwnNotes/develop/screenshots/screenshot.png" />
<meta property="og:image" content="https://raw.githubusercontent.com/pbek/QOwnNotes/develop/screenshots/screenshot.png" />
<meta property="og:url" content="https://www.qownnotes.org/installation" />
<meta property="og:title" content="QOwnNotes installation" />
<meta property="og:description" content="QOwnNotes is the cross-platform open source plain-text file notepad with markdown support, that works together with the notes application of ownCloud." />
<meta property="og:type" content="website" />
<link rel="Home" href="/" title="front page"/>
<link rel="Index" href="/"/>
<link rel="Shortcut icon" href="/bundles/pbeprojectwebpage/images/favicon.png" type="image/png"/>
<link rel="Alternate" type="application/rss+xml" title="Blog RSS" href="/rss/feed/qownnotes-blog"/>
<link href='//fonts.googleapis.com/css?family=Patua+One%7CMontserrat%7COpen+Sans:400,700,600' rel='stylesheet' type='text/css'/>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/264d2a5.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="/css/7216f40.css"/>
<link rel="stylesheet" type="text/css" href="/css/f4d1e2a.css" media="print"/>
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/tooltipster/3.3.0/css/tooltipster.css"/>
<link rel="stylesheet" type="text/css" href="/css/5b245dd.css"/>
<style type="text/css">
@import url("/extension/ezwt/design/standard/stylesheets/websitetoolbar.css");
</style>
<script type="text/javascript" src="/js/9839dfc.js"></script>
<!--[if lt IE 9]>
<script type="text/javascript" src="/js/73b1985.js"></script>
<script>
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
</script>
<![endif]-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tooltipster/3.3.0/js/jquery.tooltipster.min.js"></script>
<script type="text/javascript" src="/js/d3cc23d.js"></script>
<!-- Begin Cookie Consent plugin by Silktide - http://silktide.com/cookieconsent -->
<script type="text/javascript">
window.cookieconsent_options = {"message":"This website uses cookies to ensure you get the best experience on our website","dismiss":"Got it!","learnMore":"More info","link":null,"theme":"light-top"};
</script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/1.0.9/cookieconsent.min.js"></script>
<!-- End Cookie Consent plugin -->
<script type="text/javascript">
if (location.protocol != 'https:') {
}
</script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/redmond/jquery-ui.css">
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="Alternate" type="application/rss+xml" title="QOwnNotes release version RSS" href="/rss/project_version/qownnotes.rss"/>
</head>
<body class="bg_f0f2f2 color_53b7f9 light_skin">
<script type="text/javascript">
var gaProperty = 'UA-52660882-2';
var disableStr = 'ga-disable-' + gaProperty;
if (document.cookie.indexOf(disableStr + '=true') > -1) {
window[disableStr] = true;
}
function gaOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
alert('Tracking by Google Analytics was disabled for this webpage by your browser.');
}
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-52660882-2', 'auto');
ga('send', 'pageview');
</script>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//p.bekerle.com/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 1]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//p.bekerle.com/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
<div class="row-wrap wrapper light_skin">
<div class="row-space">
<header id="header" class="row noprint">
<div id="top-menu">
<div class="top-menu">
<ul>
<li class=" ">
<a href="/">Home</a>
</li>
<li class="active ">
<a href="/installation">Installation</a>
</li>
<li class=" ">
<a href="/Blog">Blog</a>
<ul>
<li
>
<a href="/Blog/Time-Flies-Podcast-episode-with-interview-about-QOwnNotes">Time Flies Podcast episode with interview about QOwnNotes</a>
</li>
<li
>
<a href="/Blog/Bookmark-management-with-QOwnNotes-and-Web-Companion-browser-extension">Bookmark management with QOwnNotes and Web Companion browser extension</a>
</li>
<li
>
<a href="/Blog/Firefox-extension-on-Firefox-Add-ons-page">Firefox extension on Firefox Add-ons page</a>
</li>
<li
>
<a href="/Blog/Chrome-extension-in-Chrome-Web-Store">Chrome extension in Chrome Web Store</a>
</li>
<li
>
<a href="/Blog/QOwnNotes-Web-Companion-Chrome-extension">QOwnNotes Web Companion Chrome extension</a>
</li>
<li
>
<a href="/Blog/500th-release-of-QOwnNotes">500th release of QOwnNotes</a>
</li>
</ul>
</li>
<li class=" ">
<a href="/changelog/QOwnNotes">Changelog</a>
</li>
<li class=" no-link">
Docs
<ul>
<li
>
<a target="_blank" href="http://docs.qownnotes.org">Documentation</a>
</li>
<li
>
<a href="/Knowledge-base">Knowledge base</a>
</li>
<li
>
<a href="/shortcuts/QOwnNotes">Shortcuts</a>
</li>
</ul>
</li>
<li class=" ">
<a href="https://github.com/pbek/QOwnNotes/issues">Issues</a>
</li>
<li class=" ">
<a href="/Knowledge-base/How-can-I-get-involved-with-QOwnNotes">Get involved</a>
</li>
<li class=" no-link">
Contact
<ul>
<li
>
<a target="_blank" href="https://t.me/QOwnNotes">Telegram</a>
</li>
<li
>
<a target="_blank" href="https://riot.im/app/#/room/!rUzrRvrnrOsLasDdbp:matrix.org?via=matrix.org">Matrix/Riot.im</a>
</li>
<li
>
<a target="_blank" href="https://gitter.im/qownnotes/qownnotes">Gitter IM (Chat)</a>
</li>
<li
>
<a target="_blank" href="https://kiwiirc.com/client/irc.freenode.net/#qownnotes">IRC (Chat)</a>
</li>
<li
>
<a target="_blank" href="https://quodlibet.duckdns.org/irc/qownnotes/latest.log.html">IRC Log</a>
</li>
<li
>
<a href="/Contact">Contact form</a>
</li>
</ul>
</li>
<li class=" ">
<a href="/donate">Donate</a>
</li>
</ul>
</div>
</div>
<div class="break"></div>
<div class="head-logo">
<a href="/"><img src="/bundles/pbeprojectwebpage/images/header-icon.png" alt="QOwnNotes - plain-text file markdown note taking with Nextcloud/ownCloud integration" /></a>
<h1 class="head-name"><a href="/">QOwnNotes</a></h1>
<h2 class="head-subname">Plain-text file markdown note taking with Nextcloud integration</h2>
</div>
<div class="head-social">
<ul>
<li class="github">
<a class="github-button" href="https://github.com/pbek/QOwnNotes" data-icon="octicon-star" data-count-href="/pbek/QOwnNotes/stargazers" data-count-api="/repos/pbek/QOwnNotes#stargazers_count" data-count-aria-label="# stargazers on GitHub" aria-label="Star pbek/QOwnNotes on GitHub">Star</a>
</li>
<li class="github">
<a class="github-button" href="https://github.com/pbek/QOwnNotes/issues" data-icon="octicon-issue-opened" data-count-api="/repos/pbek/QOwnNotes#open_issues_count" data-count-aria-label="# issues on GitHub" aria-label="Issue pbek/QOwnNotes on GitHub">Issue</a>
</li>
<li class="fb"><a href="https://www.facebook.com/QOwnNotes" target="_blank">Facebook</a></li>
<li class="tw"><a href="https://twitter.com/QOwnNotes" target="_blank">Twitter</a></li>
<li class="gplus"><a href="https://plus.google.com/b/102968066306102706816/102968066306102706816" target="_blank">Google+</a></li>
</ul>
</div>
</header>
<div id="pagelayout-breadcrumb">
</div>
<div id="pagelayout-content">
<section id="post" class="item project installation" xmlns="http://www.w3.org/1999/html">
<h2 class="item-title"><a href="#"><span class="title">Installation</span> <span class="icon-project"><i class="fa fa-cubes fa-2x"></i></span></a></h2>
<div class="item-cont clearfix">
<div class="">
<div class="post-cont wp-cont">
<p>
You can install <strong>QOwnNotes</strong> on the following operating systems or build it yourself.
If not stated otherwise you can run QOwnNotes afterwards by executing <code class="inline">QOwnNotes</code>.
</p>
<div id="accordion-installation">
<div id="accordion-installation-linux" class="installation-accordion">
<h1 id="accordion-Linux">Install on Ubuntu Linux, elementary OS and Linux Mint</h1>
<div>
<h2>Ubuntu Linux 15.04 or newer, elementary OS, Linux Mint 18 or newer</h2>
<p>
Install <strong>QOwnNotes</strong> on <strong>Ubuntu Linux</strong>
(minimum 15.04) using the PPA repository. Note that there are also packages for ARM in
the repository, in case you want to use QOwnNotes on a <strong>Raspberry Pi</strong>.
</p>
<p>
Open a terminal and enter the following lines to add the repository and install QOwnNotes.
</p>
<code>
sudo add-apt-repository ppa:pbek/qownnotes<br />
sudo apt-get update<br />
sudo apt-get install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://launchpad.net/~pbek/+archive/ubuntu/qownnotes/+packages">Direct Download</a>
</p>
<h2>Older Ubuntu Linux distributions and derivatives</h2>
<p>
Best try to use the AppImage.
</p>
<ul>
<li class="file-tooltip" title="AppImage for Linux built with GitHub Actions<br /><br /><strong>version 20.10.2</strong><br />- the url of the update service was changed to make it possible to detach the<br />
api from the webpage in the future">
<h3>QOwnNotes Ubuntu Linux 64bit</h3>
<span class="build-number">version 20.10.2 - build v20.10.2</span>
<div class="file">
<a rel="nofollow" href="https://github.com/pbek/QOwnNotes/releases/download/v20.10.2/QOwnNotes-x86_64.AppImage" class="ezbinaryfile-field">QOwnNotes-x86_64.AppImage</a> (39.4 MB)
</div>
<div class="downloads">
October 4, 2020 09:17 </div>
</li>
</ul>
<p>
Then you can change the execute-permissions on the file:
</p>
<code>
chmod a+x QOwnNotes-*.AppImage
</code>
<p>
Afterwards you should be able to execute the AppImage to run QOwnNotes.
</p>
<h3>OBS Repository</h3>
<p>
You may also be able to use the Ubuntu repositories from the Open Build Service
if you have installed Qt 5.6 yourself.<br />
Below are example calls for the xUbuntu 15.10 repository.
There are also repositories for 15.04 and 16.04.
</p>
<p>
Run the following shell command to trust the repository.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/xUbuntu_15.10/Release.key -O - | sudo apt-key add -
</code>
<p>
Run the following shell commands to add the repository and install QOwnNotes from there.
</p>
<code>
sudo su -<br />
sh -c "echo 'deb http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/xUbuntu_15.10/ /' >> /etc/apt/sources.list.d/qownnotes.list"<br />
apt-get update<br />
apt-get install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/xUbuntu_15.10">Direct Download</a>
</p>
</div>
<h1 id="accordion-openSUSE">Install on openSUSE Linux</h1>
<div>
<h2>openSUSE 13.2</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_13.2/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_13.2/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/openSUSE_13.2">Direct Download</a>
</p>
<h2>openSUSE Leap 15.2</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_15.2/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_15.2/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/openSUSE_Leap_15.2">Direct Download</a>
</p>
<h2>openSUSE Leap 15.1</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_15.1/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_15.1/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/openSUSE_Leap_15.1">Direct Download</a>
</p>
<h2>openSUSE Leap 15.0</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_15.0/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_15.0/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/openSUSE_Leap_15.0">Direct Download</a>
</p>
<h2>openSUSE Leap 42.3</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_42.3/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_42.3/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/openSUSE_Leap_42.3">Direct Download</a>
</p>
<h2>openSUSE Leap 42.2</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_42.2/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_42.2/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/openSUSE_Leap_42.2">Direct Download</a>
</p>
<h2>openSUSE Leap 42.1</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_42.1/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Leap_42.1/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/openSUSE_Leap_42.1">Direct Download</a>
</p>
<h2>openSUSE Tumbleweed</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Tumbleweed/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/openSUSE_Tumbleweed/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/openSUSE_Tumbleweed">Direct Download</a>
</p>
<h2>SLE 12 SP3 Backports</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/SLE_12_SP3_Backports/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/SLE_12_SP3_Backports/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/SLE_12_SP3_Backports">Direct Download</a>
</p>
<h2>SLE 15</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/SLE_15/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
zypper addrepo -f http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/SLE_15/home:pbek:QOwnNotes.repo<br />
zypper refresh<br />
zypper install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/SLE_15">Direct Download</a>
</p>
</div>
<h1 id="accordion-Fedora">Install on Fedora Linux</h1>
<div>
<h2>Fedora 32</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_32/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_32/home:pbek:QOwnNotes.repo -O /etc/yum.repos.d/QOwnNotes.repo<br />
dnf clean expire-cache<br />
dnf install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Fedora_32">Direct Download</a>
</p>
<h2>Fedora 31</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_31/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_31/home:pbek:QOwnNotes.repo -O /etc/yum.repos.d/QOwnNotes.repo<br />
dnf clean expire-cache<br />
dnf install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Fedora_31">Direct Download</a>
</p>
<h2>Fedora 30</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_30/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_30/home:pbek:QOwnNotes.repo -O /etc/yum.repos.d/QOwnNotes.repo<br />
dnf clean expire-cache<br />
dnf install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Fedora_30">Direct Download</a>
</p>
<h2>Fedora 29</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_29/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_29/home:pbek:QOwnNotes.repo -O /etc/yum.repos.d/QOwnNotes.repo<br />
dnf clean expire-cache<br />
dnf install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Fedora_29">Direct Download</a>
</p>
<h2>Fedora 28</h2>
<p>
Run the following shell commands as root to trust the repository.
</p>
<code>
su -<br />
rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_28/repodata/repomd.xml.key
</code>
<p>
Run the following shell commands as root to add the repository and install QOwnNotes from there.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_28/home:pbek:QOwnNotes.repo -O /etc/yum.repos.d/QOwnNotes.repo<br />
dnf clean expire-cache<br />
dnf install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Fedora_28">Direct Download</a>
</p>
</div>
<h1 id="accordion-Arch">Install on Arch Linux</h1>
<div>
<h2>pacman</h2>
<p>
Add the following lines to your <code class="inline">/etc/pacman.conf</code> with <code class="inline">sudo nano /etc/pacman.conf</code>:
</p>
<code>
[home_pbek_QOwnNotes_Arch_Extra]<br />
SigLevel = Optional TrustAll<br />
Server = http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Arch_Extra/$arch
</code>
<p>
Run the following shell commands to trust the repository:
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Arch_Extra/x86_64/home_pbek_QOwnNotes_Arch_Extra.key -O - | sudo pacman-key --add -<br />
sudo pacman-key --lsign-key FFC43FC94539B8B0
</code>
<p>
Synchronize your package database and install the package with <code class="inline">pacman</code>:
</p>
<code>
sudo pacman -Syy qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Arch_Extra">Direct Download</a>
</p>
<p>
Of course you can also use this repository with other Arch Linux based distributions, like Manjaro.
</p>
<h2>Arch User Repository (AUR)</h2>
<p>
Alternatively there also is an official package for QOwnNotes on AUR, it is called <code class="inline">qownnotes</code>.
</p>
<p>
You will find it here: <a target="_blank" rel="nofollow" href="https://aur.archlinux.org/packages/qownnotes">QOwnNotes on AUR</a>
</p>
<p>
Synchronize your package database and install the package with <code class="inline">yay</code>:
</p>
<code>
yay -S qownnotes
</code>
<p>
If you want to speed up build time you may want to read
<a href="https://www.reddit.com/r/archlinux/comments/6vez44/a_small_tip_if_you_compile_from_aur/" target="_blank">CCACHE and AUR</a>.
</p>
</div>
<h1 id="accordion-snap">Install as snap</h1>
<div>
<p>
There is a snap <code class="inline">qownnotes</code> in the
<a rel="nofollow" target="_blank" href="https://snapcraft.io/qownnotes">Snap store</a>.
</p>
<p>
You can install it by typing:
</p>
<code>
snap install qownnotes
</code>
<p>
Afterwards you should be able to run QOwnNotes with the command <code class="inline">qownnotes</code>.
</p>
<p>
<a rel="nofollow" target="_blank" href="http://snapcraft.io">Snaps</a> are working on many Linux distributions like
Ubuntu, Arch Linux, Debian, Fedora, openSUSE, Gentoo Linux, OpenWRT, open embedded and yocto project.
</p>
</div>
<h1 id="accordion-flatpak">Install as Flatpak</h1>
<div>
<p>
There is a 3rd party Flatpak <code class="inline">org.qownnotes.QOwnNotes</code> on
<a rel="nofollow" target="_blank" href="https://flathub.org/apps/details/org.qownnotes.QOwnNotes">Flathub</a>.
</p>
<p>
You can install it by typing:
</p>
<code>
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo<br />
flatpak install flathub org.qownnotes.QOwnNotes
</code>
<p>
Afterwards you should be able to run QOwnNotes with the command <code class="inline">flatpak run org.qownnotes.QOwnNotes</code>.
</p>
</div>
<h1 id="accordion-AppImage">Install as AppImage</h1>
<div>
<p>
You can download the latest AppImage from the
<a rel="nofollow" target="_blank" href="https://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/AppImage">QOwnNotes AppImage repository</a>.
</p>
<p>
<a rel="nofollow" target="_blank" href="https://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/AppImage/QOwnNotes-latest-x86_64.AppImage">Latest QOwnNotes x86_64 AppImage</a>
</p>
<p>
Then you can change the execute-permissions on the file:
</p>
<code>
chmod a+x QOwnNotes-*.AppImage
</code>
<p>
Afterwards you should be able to execute the AppImage to run QOwnNotes.
</p>
</div>
<h1 id="accordion-Solus">Install on Solus</h1>
<div>
<p>
There is a <code class="inline">qownnotes</code> package that is maintained by the <a rel="nofollow" target="_blank" href="https://getsol.us/">Solus Project</a>.
</p>
<p>
You can install it by typing:
</p>
<code>
sudo eopkg install qownnotes
</code>
</div>
<h1 id="accordion-KaOS">Install on KaOS Linux</h1>
<div>
<p>
There is a community maintained package <code class="inline">qownnotes</code> at the
<a rel="nofollow" target="_blank" href="https://github.com/KaOS-Community-Packages/qownnotes">KaOS Community Packages</a>
repository.
</p>
<p>
You can install it by typing:
</p>
<code>
kcp -i qownnotes
</code>
</div>
<h1 id="accordion-Debian">Install on Debian Linux</h1>
<div>
<h2>Debian 10.0</h2>
<p>
Run the following shell commands trust the repository.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_10/Release.key -O - | sudo apt-key add -
</code>
<p>
Run the following shell commands to add the repository and install QOwnNotes from there.
</p>
<code>
sudo bash -c "echo 'deb http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_10/ /' >> /etc/apt/sources.list.d/qownnotes.list"<br />
sudo apt-get update<br />
sudo apt-get install qownnotes
</code>
<p>
If you use this repository for other Debian Linux versions please make sure that you have <strong>Qt</strong> installed at least at <strong>version 5.3</strong>.
</p>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Debian_10">Direct Download</a>
</p>
<h2>Debian 9.0</h2>
<p>
Run the following shell commands trust the repository.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_9.0/Release.key -O - | sudo apt-key add -
</code>
<p>
Run the following shell commands to add the repository and install QOwnNotes from there.
</p>
<code>
sudo bash -c "echo 'deb http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_9.0/ /' >> /etc/apt/sources.list.d/qownnotes.list"<br />
sudo apt-get update<br />
sudo apt-get install qownnotes
</code>
<p>
If you use this repository for other Debian Linux versions please make sure that you have <strong>Qt</strong> installed at least at <strong>version 5.3</strong>.
</p>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Debian_9.0">Direct Download</a>
</p>
<h2>Debian 8.0</h2>
<p>
Run the following shell commands trust the repository.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_8.0/Release.key -O - | sudo apt-key add -
</code>
<p>
Run the following shell commands to add the repository and install QOwnNotes from there.
</p>
<code>
sudo bash -c "echo 'deb http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Debian_8.0/ /' >> /etc/apt/sources.list.d/qownnotes.list"<br />
sudo apt-get update<br />
sudo apt-get install qownnotes
</code>
<p>
If you use this repository for other Debian Linux versions please make sure that you have <strong>Qt</strong> installed at least at <strong>version 5.3</strong>.
</p>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Debian_8.0">Direct Download</a>
</p>
</div>
<h1 id="accordion-Raspbian">Install on Raspbian</h1>
<div>
<h2>Raspbian 10.0</h2>
<p>
Run the following shell commands trust the repository.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Raspbian_10/Release.key -O - | sudo apt-key add -
</code>
<p>
Run the following shell commands to add the repository and install QOwnNotes from there.
</p>
<code>
sudo bash -c "echo 'deb http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Raspbian_10/ /' >> /etc/apt/sources.list.d/qownnotes.list"<br />
sudo apt-get update<br />
sudo apt-get install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Raspbian_10">Direct Download</a>
</p>
<h2>Raspbian 9.0</h2>
<p>
Run the following shell commands trust the repository.
</p>
<code>
wget http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Raspbian_9.0/Release.key -O - | sudo apt-key add -
</code>
<p>
Run the following shell commands to add the repository and install QOwnNotes from there.
</p>
<code>
sudo bash -c "echo 'deb http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Raspbian_9.0/ /' >> /etc/apt/sources.list.d/qownnotes.list"<br />
sudo apt-get update<br />
sudo apt-get install qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://build.opensuse.org/package/binaries/home:pbek:QOwnNotes/desktop/Raspbian_9.0">Direct Download</a>
</p>
</div>
<h1 id="accordion-Gentoo">Install on Gentoo Linux</h1>
<div>
<p>
Add the QOwnNotes repository with the following command
(see <a rel="nofollow" target="_blank" href="https://wiki.gentoo.org/wiki/Eselect/Repository">eselect-repository</a>).
</p>
<code>
sudo eselect repository enable qownnotes-overlay
</code>
<p>
Then you can install QOwnNotes the usual way.
</p>
<code>
sudo emerge --sync qownnotes-overlay && sudo emerge -av qownnotes
</code>
<p>
<a rel="nofollow" target="_blank" href="https://github.com/qownnotes/gentoo-overlay/">QOwnNotes overlay on GitHub</a>
</p>
</div>
<h1 id="accordion-Slackware">Install on Slackware Linux</h1>
<div>
<h2>Slackware 14.1</h2>
<p>
First you need to install Qt 5.
</p>
<code>
cd /tmp<br />
wget "http://bear.alienbase.nl/mirrors/people/alien/sbrepos/14.1/x86_64/qt5/qt5-5.5.1-x86_64-4alien.txz"<br />
sudo installpkg qt5-5.5.1-x86_64-4alien.txz
</code>
<p>
Then you can checkout the QOwnNotes slackbuilds repository and build the application.
</p>
<code>
cd /tmp<br />
git clone https://github.com/pbek/qownnotes-slackbuilds.git<br />
cd qownnotes-slackbuilds/14.1/qownnotes<br />
./dobuild.sh
</code>
<p>
After that you can install the generated package with <code class="inline">installpkg</code>.
</p>
<h2>Slackware 14.2</h2>
<p>
First you need to install Qt 5, libxkbcommon, libproxy and js185.
</p>
<code>
cd /tmp<br />
wget "http://bear.alienbase.nl/mirrors/people/alien/sbrepos/current/x86_64/qt5/qt5-5.6.1_1-x86_64-1alien.txz"<br />
wget http://bear.alienbase.nl/mirrors/people/alien/sbrepos/current/x86_64/libxkbcommon/libxkbcommon-0.5.0-x86_64-1alien.txz<br />
sudo installpkg libxkbcommon-0.5.0-x86_64-1alien.txz qt5-5.6.1_1-x86_64-1alien.txz<br />
slackpkg update<br />
slackpkg install libproxy js185-1.0.0-x86_64-1
</code>
<p>
Then you can checkout the QOwnNotes slackbuilds repository and build the application.
</p>
<code>
cd /tmp<br />
git clone https://github.com/pbek/qownnotes-slackbuilds.git<br />
cd qownnotes-slackbuilds/14.2/qownnotes<br />
./dobuild.sh
</code>
<p>
After that you can install the generated package with <code class="inline">installpkg</code>.
</p>
<!--
<p>
Disclaimer: I still get errors when building for Slackware 14.2, maybe this will work when Slackware 14.2 is released.
</p>
-->
<p>
<a rel="nofollow" target="_blank" href="https://github.com/pbek/qownnotes-slackbuilds/">QOwnNotes Slackbuild on GitHub</a>
</p>
</div>