Manjaro: first steps

Marco Belo
1 min readOct 6, 2019

--

Every time I install a new manjaro I have to remember to install everything in this list, so I decide to create this post to guide me and make it fast to start a new manjaro.

Install base-devel:

sudo pacman -S base-devel
*(install all packages)

Install yay:

sudo pacman -S git gogit clone https://aur.archlinux.org/yay.gitcd yay && makepkg -sicd .. && rm -rf yay/

Install terminator:

yay -S terminator

*(from here to bottom use only the terminator)

Install code:

yay -S visual-studio-code-bin

Install chrome:

yay -S google-chrome

Install docker:

yay -S dockersudo systemctl start docker.servicesudo systemctl enable docker.servicesudo usermod -aG docker ${USER}su - ${USER}

Install docker-compose:

yay -S docker-compose

Config github-ssh:

ssh-keygen -t rsa -b 4096 -C "<your_email>"eval "$(ssh-agent -s)"ssh-add ~/.ssh/id_rsayay -S xclipxclip -sel clip < ~/.ssh/id_rsa.pub
*(maybe you will need to restart terminal for this command)
Paste the copied pub-ssh to your github account# Add github-cli:
yay -S github-cli

Install nvm:

yay -S nvmecho 'source /usr/share/nvm/init-nvm.sh' >> ~/.zshrcexec $SHELL

Install java:

yay -S jdk
yay -S eclipse

Install Steam:

yay -S steam-native steam-manjaro

Contact me: linkedin.com/in/marco-belo/

--

--