lets asa as tool to get keys and mirrors in
This commit is contained in:
parent
cad99046c9
commit
b5e408a8f6
3 changed files with 27 additions and 6 deletions
|
@ -34,15 +34,13 @@ It will not be used to build the iso.
|
|||
## ArcoLinux keys and mirror
|
||||
|
||||
Add the ArcoLinux keys and Arcolinux mirrors to the packages.x86_64.
|
||||
Add the ArcoLinux line in
|
||||
`/archiso/airootfs/etc/systemd/system/pacman-init.service`
|
||||
The pacman-init service at etc/systemd/system/pacman-init.service will add any keys present.
|
||||
|
||||
|
||||
## Chaotic keys and mirror
|
||||
|
||||
Add the Chaotic keys and Chaotic mirrors to the packages.x86_64.
|
||||
Add the Chaotic line in
|
||||
`/archiso/airootfs/etc/systemd/system/pacman-init.service`
|
||||
The pacman-init service at etc/systemd/system/pacman-init.service will add any keys present.
|
||||
|
||||
|
||||
# Archiso/packages.x86_64
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
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.
|
||||
|
||||
|
@ -16,4 +16,4 @@ 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.
|
||||
Then you can add ArcoLinux and Chaotic packages to your packages list.
|
23
keys-and-mirrors/2-build-and-install-yay.sh
Executable file
23
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…
Reference in a new issue