# Telepítés Fedora Linux rendszerre

Vannak QOwnNotes tárak a Fedora 28 és újabb verziókhoz.

# A config-manager dnf beépülő modullal rendelkező rendszereken

Futtassa a következő shell parancsokat rootként az adattár hozzáadásához.

dnf config-manager --add-repo http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_\$releasever/

dnf makecache
dnf install qownnotes
1
2
3
4

TIP

Előfordulhat, hogy el kell fogadnia a repo kulcsot, mielőtt letölthet róla.

Ha problémái vannak, akkor importálja a kulcsot saját kezüleg:

rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_40/repodata/repomd.xml.key
1

Please note that the portion "Fedora_40" in the above code should reflect the version of Fedora you are using (i.e. "Fedora_39", "Fedora_38" etc.)

# Régi telepítési módszer

Használja ezt a módszert, ha a Fedora verziója nem támogatja a config-manager dnf bővítményt, futtassa ezeket a parancsokat rootként.

Futtassa a következő shell parancsokat rootként, hogy megbízhasson az adattárban.

rpm --import http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_40/repodata/repomd.xml.key
1

Again: note that the portion "Fedora_40" in the above code should reflect the version of Fedora you are using (i.e. "Fedora_39", "Fedora_38" etc.)

Then run the following shell commands as root to add the repository and install QOwnNotes from there.

cat > /etc/yum.repos.d/QOwnNotes.repo << EOL
[qownnotes]
name=OBS repo for QOwnNotes (Fedora \$releasever - \$basearch)
type=rpm-md
baseurl=http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_\$releasever/
gpgcheck=1
gpgkey=http://download.opensuse.org/repositories/home:/pbek:/QOwnNotes/Fedora_\$releasever/repodata/repomd.xml.key
enabled=1
EOL

dnf clean expire-cache
dnf install qownnotes
1
2
3
4
5
6
7
8
9
10
11
12

Direct Download (opens new window) (this example link is for Fedora 40)