Browse Source

lets asa as tool to get keys and mirrors in

master
Erik Dubois 3 years ago
parent
commit
b5e408a8f6
  1. 6
      README.md
  2. 2
      keys-and-mirrors/1-get-the-keys-and-mirrors.md
  3. 23
      keys-and-mirrors/2-build-and-install-yay.sh

6
README.md

@ -34,15 +34,13 @@ It will not be used to build the iso.
## ArcoLinux keys and mirror ## ArcoLinux keys and mirror
Add the ArcoLinux keys and Arcolinux mirrors to the packages.x86_64. Add the ArcoLinux keys and Arcolinux mirrors to the packages.x86_64.
Add the ArcoLinux line in The pacman-init service at etc/systemd/system/pacman-init.service will add any keys present.
`/archiso/airootfs/etc/systemd/system/pacman-init.service`
## Chaotic keys and mirror ## Chaotic keys and mirror
Add the Chaotic keys and Chaotic mirrors to the packages.x86_64. Add the Chaotic keys and Chaotic mirrors to the packages.x86_64.
Add the Chaotic line in The pacman-init service at etc/systemd/system/pacman-init.service will add any keys present.
`/archiso/airootfs/etc/systemd/system/pacman-init.service`
# Archiso/packages.x86_64 # Archiso/packages.x86_64

2
keys-and-mirrors/get-the-keys-and-mirrors.md → keys-and-mirrors/1-get-the-keys-and-mirrors.md

@ -1,6 +1,6 @@
We recommend you get the ASA or ArcoLinux Spices Application. We recommend you get the ASA or ArcoLinux Spices Application.
We are sure that is always working and maintained. 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. We use the tool to turn any Arch Linux system into an ArcoLinux system.

23
keys-and-mirrors/2-build-and-install-yay.sh

@ -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…
Cancel
Save