mirror of
https://github.com/janishutz/arch-dev-vm.git
synced 2025-11-25 05:44:23 +00:00
some more updates
This commit is contained in:
14
README.md
14
README.md
@@ -3,7 +3,6 @@
|
|||||||
This repo contains scripts to install a full Archlinux System with Xfce complete with the following additional packages:
|
This repo contains scripts to install a full Archlinux System with Xfce complete with the following additional packages:
|
||||||
- VSCodium (with custom settings)
|
- VSCodium (with custom settings)
|
||||||
- GDM (Gnome Display Manager)
|
- GDM (Gnome Display Manager)
|
||||||
- AUR helper YAY
|
|
||||||
- pip (optional)
|
- pip (optional)
|
||||||
- node & npm (optional)
|
- node & npm (optional)
|
||||||
- rustup (optional)
|
- rustup (optional)
|
||||||
@@ -40,4 +39,15 @@ In the sudoers file, you need to uncomment the 15th line from the botton, just b
|
|||||||
"## Uncomment to allow members of group wheel to execute any command"
|
"## Uncomment to allow members of group wheel to execute any command"
|
||||||
|
|
||||||
Remove the # in the subsequent line and hit Ctrl + S, then Ctrl + X. This will allow all members
|
Remove the # in the subsequent line and hit Ctrl + S, then Ctrl + X. This will allow all members
|
||||||
of the user group "wheel" to execute any command.
|
of the user group "wheel" to execute any command.
|
||||||
|
|
||||||
|
|
||||||
|
## Post install
|
||||||
|
After install, you might want to install an AUR-Helper, like yay (yet another yogurt). Run the following commands after rebooting your system.
|
||||||
|
|
||||||
|
```
|
||||||
|
cd /tmp
|
||||||
|
git clone https://aur.archlinux.org/yay.git
|
||||||
|
cd yay
|
||||||
|
makepkg -si
|
||||||
|
```
|
||||||
@@ -105,6 +105,8 @@ sleep 2
|
|||||||
|
|
||||||
genfstab -U /mnt >> /mnt/etc/fstab
|
genfstab -U /mnt >> /mnt/etc/fstab
|
||||||
|
|
||||||
|
cp ~/arch-dev-vm/pacman.conf /mnt/etc/pacman.conf
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
|
|
||||||
==> Entering chroot
|
==> Entering chroot
|
||||||
@@ -141,6 +143,9 @@ echo "
|
|||||||
DONE!
|
DONE!
|
||||||
Congratulations, you now have a fully set up ArchLinux VM.
|
Congratulations, you now have a fully set up ArchLinux VM.
|
||||||
|
|
||||||
|
If you want to have a AUR helper, please read on in the readme file or
|
||||||
|
in my blog post
|
||||||
|
|
||||||
"
|
"
|
||||||
|
|
||||||
sleep 2
|
sleep 2
|
||||||
@@ -6,10 +6,7 @@ echo "
|
|||||||
|
|
||||||
"
|
"
|
||||||
|
|
||||||
cd /tmp
|
read -p "Please enter your password again: " pwd
|
||||||
git clone https://aur.archlinux.org/yay.git
|
|
||||||
cd yay
|
|
||||||
makepkg -si
|
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
|
|
||||||
@@ -20,10 +17,10 @@ echo "
|
|||||||
read -p "Do you want to have a barebone (b) or complete (c) install? " installType
|
read -p "Do you want to have a barebone (b) or complete (c) install? " installType
|
||||||
|
|
||||||
if [[ "$installType" != "c" ]]; then
|
if [[ "$installType" != "c" ]]; then
|
||||||
yay -Syu --noconfirm nodejs npm rustup kate python-pip gcc
|
pacman -Syu --noconfirm nodejs npm rustup kate python-pip gcc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
yay -Syu --noconfirm vscodium
|
pacman -Syu --noconfirm vscodium
|
||||||
|
|
||||||
|
|
||||||
mkdir /home/arch-is-best/.config
|
mkdir /home/arch-is-best/.config
|
||||||
|
|||||||
Reference in New Issue
Block a user