www-content/pages/distros/archlinux-start.txt

85 lines
2.0 KiB
Plaintext

~~Title: Arch Linux~~
==== Arch ====
The way to install Enlightenment on Arch Linux is quite easy, use the official repo:
<code bash>
pacman -S enlightenment
pacman -S terminology # optional terminal
</code>
Install and enable offical Enlightenment login manager - Entrance
<code bash>
yaourt entrance-git
systemctl enable entrance.service
</code>
Many apps or efl tools are available in AUR packages, for example with [[https://wiki.archlinux.org/index.php/Yaourt|Yaourt]]:
<code bash>
yaourt -S clouseau-git
</code>
If you only want Elementary with EFL:
<code bash>
pacman -S elementary
</code>
If you want to install Enlightenment and/or EFL from source, the easiest way is to first install the arch packages to have them pull in dependencies, then remove them:
<code bash>
pacman -S elementary
pacman -R efl
</code>
Then go to [[/docs-efl-start]] tutorial, to install Enlightenment and/or EFL from source.
==== Programs ====
If you want to install Enlightenment base programs:
<code bash>
pacman -S rage #Video Player
yaourt ecrire-git #Text Editor
yaourt enjoy-git #Music Player
yaourt ephoto-git #Photo Viewer
#Games
yaourt efbb-git #Escape from Booty Bay (like Angry Birds)
yaourt elemines-git #Elemines minesweeper style game
</code>
To install all without games:
<code bash>
pacman -S rage && yaourt ecrire-git && yaourt enjoy-git && yaourt ephoto-git
</code>
To install all with games:
<code bash>
pacman -S rage && yaourt ecrire-git && yaourt enjoy-git && yaourt ephoto-git && yaourt efbb && yaourt elemines-git
</code>
==== Enlightenment with Wayland ====
<note important>Note: Highly Experimental !</note>
Install Wayland and Enlightenment with Wayland support
<code bash>
pacman -S wayland
yaourt enlightenment-wayland-git
</code>
After install that package, reboot system.
Login to a TTY and type
<code bash>
enlightenment_start_wayland
</code>
(The best run without a graphical login manager.)
Full documentation community Archlinux available at [[https://wiki.archlinux.org/index.php/Enlightenment]]