Difference between revisions of "Fedora Trinity Repository Installation Instructions"

From Trinity Desktop Project Wiki
Jump to navigation Jump to search
(Update Fedora 36 and 37 to R14.0.13)
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Fedora Trinity Repository Installation Instructions==
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Installation]]
 
[[Category:Installation]]
   
  +
This page provides instructions on how to '''install''' Trinity Desktop Environment on Fedora systems.
===1. Configure the supplementary 3rdparty repositories===
 
  +
 
= Configure the supplementary 3rdparty repositories=
   
 
Install RPMFUSION repository: [http://rpmfusion.org/Configuration http://rpmfusion.org/Configuration]
 
Install RPMFUSION repository: [http://rpmfusion.org/Configuration http://rpmfusion.org/Configuration]
   
===2. Download the repo configuration file corresponding to your distribution (as root user)===
+
= Download the repo configuration file corresponding to your distribution (as root user) =
   
====For Fedora 32 (R14.0.10)====
+
== For Fedora 34 (R14.0.12) ==
  +
<syntaxhighlight lang="shell-session">
 
# rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f34/trinity-r14/RPMS/noarch/trinity-repo-14.0.12-1.fc34.noarch.rpm
  +
</syntaxhighlight>
   
  +
== For Fedora 35 (R14.0.12) ==
<nowiki>rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f32/trinity-r14/RPMS/noarch/trinity-repo-14.0.10-1.fc32.noarch.rpm</nowiki>
 
  +
<syntaxhighlight lang="shell-session">
 
# rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f35/trinity-r14/RPMS/noarch/trinity-repo-14.0.12-1.fc35.noarch.rpm
  +
</syntaxhighlight>
   
====For Fedora 33 (R14.0.10)====
+
== For Fedora 36 (R14.0.13) ==
  +
<syntaxhighlight lang="shell-session">
  +
# rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f36/trinity-r14/RPMS/noarch/trinity-repo-14.0.13-1.fc36.noarch.rpm
  +
</syntaxhighlight>
   
  +
== For Fedora 37 (R14.0.13) ==
<nowiki>rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f33/trinity-r14/RPMS/noarch/trinity-repo-14.0.10-1.fc33.noarch.rpm</nowiki>
 
  +
<syntaxhighlight lang="shell-session">
  +
# rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f37/trinity-r14/RPMS/noarch/trinity-repo-14.0.13-1.fc37.noarch.rpm
  +
</syntaxhighlight>
   
===3. Install the Trinity desktop environment===
+
= Install the Trinity desktop environment =
   
 
Choose one of the following scenarios.
 
Choose one of the following scenarios.
   
  +
== Minimalistic TDE ==
Install the minimalistic Trinity Desktop Environment:
 
  +
  +
<syntaxhighlight lang="shell-session">
 
# dnf install trinity-tdebase
  +
</syntaxhighlight>
  +
  +
== Entire TDE ==
   
  +
<syntaxhighlight lang="shell-session">
dnf install trinity-tdebase
 
 
# dnf install trinity-desktop
  +
</syntaxhighlight>
   
  +
== Entire TDE + all applications ==
Install the entire Trinity Desktop Environment, without applications:
 
   
  +
<syntaxhighlight lang="shell-session">
dnf install trinity-desktop
 
 
# dnf install trinity-desktop-all
  +
</syntaxhighlight>
   
 
= (Optional) Install your locale translation package =
Install the entire Trinity Desktop Environment, with all applications:
 
   
  +
e.g, for French translation:
dnf install trinity-desktop-all
 
   
  +
== TDE translations ==
===4. (Optional) Install your locale translation package, e.g for French translation===
 
   
  +
<syntaxhighlight lang="shell-session">
dnf install trinity-tde-i18n-French
+
# dnf install trinity-tde-i18n-French
  +
</syntaxhighlight>
   
Koffice translations:
+
== Koffice translations ==
   
  +
<syntaxhighlight lang="shell-session">
dnf install trinity-koffice-i18n-French
+
# dnf install trinity-koffice-i18n-French
  +
</syntaxhighlight>
   
K3B translations:
+
== K3B translations ==
   
  +
<syntaxhighlight lang="shell-session">
dnf install trinity-k3b-i18n-French
+
# dnf install trinity-k3b-i18n-French
  +
</syntaxhighlight>
   
Gwenview translations (all languages):
+
== Gwenview translations (all languages) ==
   
  +
<syntaxhighlight lang="shell-session">
dnf install trinity-gwenview-i18n
+
# dnf install trinity-gwenview-i18n
  +
</syntaxhighlight>
   
 
Note: you can obtain a list of available TDE packages with the following command:
 
Note: you can obtain a list of available TDE packages with the following command:
   
  +
<syntaxhighlight lang="shell-session">
dnf search trinity-
+
# dnf search trinity-
  +
</syntaxhighlight>
   
===5. (Optional) Sets TDM as the default display manager===
+
= (Optional) Set TDM as the default display manager =
   
 
You must disable your current DM (e.g. KDM, GDM, XDM ...) service and then enable the TDM service.
 
You must disable your current DM (e.g. KDM, GDM, XDM ...) service and then enable the TDM service.
   
  +
<syntaxhighlight lang="shell-session">
systemctl disable gdm.service
 
systemctl disable kdm.service
+
# systemctl disable gdm.service
systemctl disable xdm.service
+
# systemctl disable kdm.service
systemctl disable lightdm.service
+
# systemctl disable xdm.service
systemctl disable lxdm.service
+
# systemctl disable lightdm.service
systemctl enable tdm.service
+
# systemctl disable lxdm.service
 
# systemctl enable tdm.service
  +
</syntaxhighlight>
   
 
Then reboot your computer.
 
Then reboot your computer.

Revision as of 03:15, 7 November 2022


This page provides instructions on how to install Trinity Desktop Environment on Fedora systems.

Configure the supplementary 3rdparty repositories

Install RPMFUSION repository: http://rpmfusion.org/Configuration

Download the repo configuration file corresponding to your distribution (as root user)

For Fedora 34 (R14.0.12)

# rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f34/trinity-r14/RPMS/noarch/trinity-repo-14.0.12-1.fc34.noarch.rpm

For Fedora 35 (R14.0.12)

# rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f35/trinity-r14/RPMS/noarch/trinity-repo-14.0.12-1.fc35.noarch.rpm

For Fedora 36 (R14.0.13)

# rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f36/trinity-r14/RPMS/noarch/trinity-repo-14.0.13-1.fc36.noarch.rpm

For Fedora 37 (R14.0.13)

# rpm -Uvh http://mirror.ppa.trinitydesktop.org/trinity/rpm/f37/trinity-r14/RPMS/noarch/trinity-repo-14.0.13-1.fc37.noarch.rpm

Install the Trinity desktop environment

Choose one of the following scenarios.

Minimalistic TDE

# dnf install trinity-tdebase

Entire TDE

# dnf install trinity-desktop

Entire TDE + all applications

# dnf install trinity-desktop-all

(Optional) Install your locale translation package

e.g, for French translation:

TDE translations

# dnf install trinity-tde-i18n-French

Koffice translations

# dnf install trinity-koffice-i18n-French

K3B translations

# dnf install trinity-k3b-i18n-French

Gwenview translations (all languages)

# dnf install trinity-gwenview-i18n

Note: you can obtain a list of available TDE packages with the following command:

# dnf search trinity-

(Optional) Set TDM as the default display manager

You must disable your current DM (e.g. KDM, GDM, XDM ...) service and then enable the TDM service.

# systemctl disable gdm.service
# systemctl disable kdm.service
# systemctl disable xdm.service
# systemctl disable lightdm.service
# systemctl disable lxdm.service
# systemctl enable tdm.service

Then reboot your computer.