Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.7 KB

README.md

File metadata and controls

51 lines (33 loc) · 1.7 KB

~/.*

VirtualBox_Arch Linux_19_03_2022_18_18_29

Overview

This guide walks you through all the environment you need to implement these dotfiles on your Archlinux system. There's also a tutorial that shows how to install Archlinux of an easy way, you can read it here. I'll just show you the steps you have to follow and don't panic, there's not too much complex abbreviations or concepts, I'll write as simple as I can do. So don't be shy, don't panic, and enjoy 😊

Before git clone

Obviously before clonning this repository you have to install git first, but in addition, there are additional packages to get. Keep in mind that in this section you have to execute each command as root user

  1. Install sudo, git and openssh
pacman -S sudo git openssh
  1. Edit the /etc/sudoers file
vim /etc/sudoers
  1. Find the User privilege specification section and below root add a privilege to your user e.g. my user is wilmer

VirtualBox_Arch Linux 2_20_03_2022_22_09_03

  1. Once you do this, return to your personal user and go to ~/ directory
cd ~/
  1. Remove all the files of your home directory and clone this repository
rm -rfv {*,.*}
git clone https://github.com/quispewilmer/dotfiles.git
  1. Install all the packages in .pkgs file
pacman -S --needed - < .pkgs
  1. Install yay AUR
git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si