removing nr 99
This commit is contained in:
parent
ae224c9019
commit
cad99046c9
5 changed files with 19 additions and 154 deletions
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
|
@ -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
|
|
19
keys-and-mirrors/get-the-keys-and-mirrors.md
Normal file
19
keys-and-mirrors/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 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.
|
Loading…
Reference in a new issue