From cad99046c9464bfc0946d9d9cf16055347a8f46b Mon Sep 17 00:00:00 2001 From: Erik Dubois Date: Mon, 20 Dec 2021 18:31:03 +0100 Subject: [PATCH] removing nr 99 --- 99-get-all-alci-gits-at-once.sh | 48 ------------------- .../1-get-arcolinux-keys-and-mirrors.sh | 38 --------------- .../2-get-chaotic-keys-and-mirrors.sh | 45 ----------------- .../3-build-and-install-yay-bin.sh | 23 --------- keys-and-mirrors/get-the-keys-and-mirrors.md | 19 ++++++++ 5 files changed, 19 insertions(+), 154 deletions(-) delete mode 100755 99-get-all-alci-gits-at-once.sh delete mode 100755 keys-and-mirrors/1-get-arcolinux-keys-and-mirrors.sh delete mode 100755 keys-and-mirrors/2-get-chaotic-keys-and-mirrors.sh delete mode 100755 keys-and-mirrors/3-build-and-install-yay-bin.sh create mode 100644 keys-and-mirrors/get-the-keys-and-mirrors.md diff --git a/99-get-all-alci-gits-at-once.sh b/99-get-all-alci-gits-at-once.sh deleted file mode 100755 index fe0008f..0000000 --- a/99-get-all-alci-gits-at-once.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/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. -# -################################################################################################################## - -echo "This gets all the existing githubs at once" -echo "Fill the array with the original folders first" - -# use ls -d */ > list to get the list of the created githubs and copy/paste in - -directories=( -alci-calamares-config/ -alci-calamares-config-btrfs/ -alci-calamares-config-dev/ -alci-calamares-config-lts/ -alci-calamares-config-pure/ -alci-calamares-config-zen/ -alci-dwm/ -alci-dwm-nemesis/ -alci-iso/ -alci-iso-dev/ -alci-iso-lts/ -alci-iso-pure/ -alci-iso-zen/ -alci-pkgbuild/ -alci_repo/ -nemesis-wallpapers/ -) - -count=0 - -for name in "${directories[@]}"; do - count=$[count+1] - tput setaf 1;echo "Github "$count;tput sgr0; - # if there is no folder then make one - git clone https://github.com/arch-linux-calamares-installer/$name - echo "#################################################" - echo "################ "$(basename `pwd`)" done" - echo "#################################################" -done diff --git a/keys-and-mirrors/1-get-arcolinux-keys-and-mirrors.sh b/keys-and-mirrors/1-get-arcolinux-keys-and-mirrors.sh deleted file mode 100755 index 0c03ca8..0000000 --- a/keys-and-mirrors/1-get-arcolinux-keys-and-mirrors.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/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. -# -################################################################################################################## - -#!/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. -# -################################################################################################################## - -source="https://github.com/arch-linux-calamares-installer/alci_repo/raw/master/x86_64/arcolinux-keyring-20230919-6-any.pkg.tar.zst" -name="arcolinux-keyring-20230919-6-any.pkg.tar.zst" - -wget $source -O /tmp/$name -sudo pacman -U /tmp/$name --noconfirm --needed - - -source="https://github.com/arch-linux-calamares-installer/alci_repo/raw/master/x86_64/arcolinux-mirrorlist-git-21.01-1-any.pkg.tar.zst" -name="arcolinux-mirrorlist-git-21.01-1-any.pkg.tar.zst" - -wget $source -O /tmp/$name -sudo pacman -U /tmp/$name --noconfirm --needed diff --git a/keys-and-mirrors/2-get-chaotic-keys-and-mirrors.sh b/keys-and-mirrors/2-get-chaotic-keys-and-mirrors.sh deleted file mode 100755 index 79a3e99..0000000 --- a/keys-and-mirrors/2-get-chaotic-keys-and-mirrors.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/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. -# -################################################################################################################## - -package="yay" - -#---------------------------------------------------------------------------------- - -if pacman -Qi $package &> /dev/null; then - - echo "Installing with yay" - yay -S chaotic-keyring --noconfirm --needed - yay -S chaotic-mirrorlist --noconfirm --needed - -else - - if pacman -Qi trizen &> /dev/null; then - - echo "Installing with trizen" - trizen -S chaotic-keyring --noconfirm --needed - trizen -S chaotic-mirrorlist --noconfirm --needed - - elif pacman -Qi paru &> /dev/null; then - - echo "Installing with paru" - paru -S chaotic-keyring --noconfirm --needed - paru -S chaotic-mirrorlist --noconfirm --needed - - else - - echo "Install an AUR helper" - echo "You can use our script" - - fi - -fi diff --git a/keys-and-mirrors/3-build-and-install-yay-bin.sh b/keys-and-mirrors/3-build-and-install-yay-bin.sh deleted file mode 100755 index 8d3757c..0000000 --- a/keys-and-mirrors/3-build-and-install-yay-bin.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/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 diff --git a/keys-and-mirrors/get-the-keys-and-mirrors.md b/keys-and-mirrors/get-the-keys-and-mirrors.md new file mode 100644 index 0000000..a5c2089 --- /dev/null +++ b/keys-and-mirrors/get-the-keys-and-mirrors.md @@ -0,0 +1,19 @@ +We recommend you get the ASA or ArcoLinux Spices Application. + +We are sure that is always working and maintained. + +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. \ No newline at end of file