summaryrefslogtreecommitdiff
path: root/docs/es/arch-linux.md
diff options
context:
space:
mode:
authorJulio A. Leyva Osorio <tony931023@gmail.com>2021-07-05 05:02:07 -0400
committerGitHub <noreply@github.com>2021-07-05 11:02:07 +0200
commite996716ad4b66b4d40e44123711a738789b9a2b8 (patch)
tree9b6022eff479574900f2a54c6dd41bec873e135b /docs/es/arch-linux.md
parent6117caaaff06d1ec34696cdb66529eb0f2ec825a (diff)
downloadwiki-e996716ad4b66b4d40e44123711a738789b9a2b8.tar.gz
wiki-e996716ad4b66b4d40e44123711a738789b9a2b8.tar.bz2
wiki-e996716ad4b66b4d40e44123711a738789b9a2b8.zip
Chore: Updates and creation of wiki files in Spanish (#572)
* Spanish Update account.md * Creation of the home.md document in spanish * Creation of the arch-linux.md document in spanish * Creation of the aws-tutorial.md document in spanish * Creation of the bash_system.md document in spanish * Creation of the best-practices.md document in spanish * Creation of the file-headers.md document in spanish * Creation of the core-installation.md document in spanish * Creation of the bountysource.md document in spanish * Creation of the contribute.md document in spanish * Creation of the bit-and-bytes-tutorial.md document in spanish * Creation of the faq.md document in spanish * Creation of the how-to-debug.md document in spanish * Creation of the upgrade-from-pre-2.0.0-to-latest-master.md document in spanish * Creation of the upgrade-from-pre-3.0.0-to-latest-master.md document in spanish * Creation of the trinitycore-to-azerothcore-characters-migration.md document in spanish * Creation of the keeping-the-server-up-to-date.md document in spanish * Creation of the wiki-standards.md document in spanish * Creation of the importing-spell-dbc.md document in spanish
Diffstat (limited to 'docs/es/arch-linux.md')
-rw-r--r--docs/es/arch-linux.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/es/arch-linux.md b/docs/es/arch-linux.md
new file mode 100644
index 0000000..c239658
--- /dev/null
+++ b/docs/es/arch-linux.md
@@ -0,0 +1,27 @@
+# Instalación de Arch Linux
+Si es un usuario de Arch Linux, puede instalarlo desde AUR ([Arch User Repository](https://wiki.archlinux.org/index.php/Arch_User_Repository))
+
+## Instalar dependencias
+
+### Instalar *base-devel*
+Todo lo que necesita para instalar los paquetes AUR es [*base-devel*](https://www.archlinux.org/groups/x86_64/base-devel/) and [*git*](https://www.archlinux.org/packages/?name=git), puede instalarlos con *pacman*:
+```
+$ sudo pacman -S base-devel git
+```
+
+### Instalar *ACE*
+Debe instalar el paquete [*ACE*](https://aur.archlinux.org/packages/ace/) de AUR:
+```
+git clone https://aur.archlinux.org/ace.git
+cd ace
+makepkg -si
+```
+## Instalar *AzerothCore*
+Después de eso, puedes instalar el paquete [azerothcore](https://aur.archlinux.org/packages/azerothcore/) :
+
+```
+git clone https://aur.archlinux.org/azerothcore.git
+cd azerothcore
+makepkg -si
+```
+Además, si lo desea, puede usar [*yay*](https://github.com/Jguer/yay) como administrador de paquetes AUR para instalar paquetes AUR.