template
This commit is contained in:
parent
42651f694d
commit
65dffd58cc
501 changed files with 12163 additions and 0 deletions
19
elda/keys-and-mirrors/1-get-the-keys-and-mirrors.md
Normal file
19
elda/keys-and-mirrors/1-get-the-keys-and-mirrors.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
We recommend you get the ASA or ArcoLinux Spices Application.
|
||||
|
||||
We are sure that it will always work in the future.
|
||||
|
||||
We use the tool to turn any Arch Linux system into an ArcoLinux system.
|
||||
|
||||
https://www.arcolinux.info/arcolinux-spices-application/
|
||||
|
||||
You can install it in a desktop environment or in TTY.
|
||||
|
||||
Type "sudo pacman -Syyu" in a terminal to see that our repos are in the list.
|
||||
|
||||
Afterwards pacman will recognize the ArcoLinux keys and the ArcoLinux mirrors.
|
||||
|
||||
If that is the case you can install the Chaotic keyring and Chaotic mirrorlist.
|
||||
|
||||
sudo pacman -S chaotic-keyring chaotic-mirrorlist
|
||||
|
||||
Then you can add ArcoLinux and Chaotic packages to your packages list.
|
23
elda/keys-and-mirrors/2-build-and-install-yay.sh
Executable file
23
elda/keys-and-mirrors/2-build-and-install-yay.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
##################################################################################################################
|
||||
# Written to be used on 64 bits computers
|
||||
# Author : Erik Dubois
|
||||
# Website : http://www.erikdubois.be
|
||||
##################################################################################################################
|
||||
##################################################################################################################
|
||||
#
|
||||
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
|
||||
#
|
||||
##################################################################################################################
|
||||
|
||||
sudo pacman -S base-devel --noconfirm --needed
|
||||
|
||||
source="https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=yay-bin"
|
||||
folder="alci-yay-bin"
|
||||
name="PKGBUILD"
|
||||
|
||||
mkdir /tmp/$folder
|
||||
wget $source -O /tmp/$folder/$name
|
||||
cd /tmp/$folder
|
||||
makepkg -i
|
Loading…
Add table
Add a link
Reference in a new issue