Over the previous years, I had to install Manjaro a couple of times and to ease the process for the next time, I began to document more and more the command I typed. You will find below the procedure that I will try to follow the next time I want to install this distribution. 🤓
Warning : this procedure may be incomplete or may be not working on your setup. Follow it cautiously. 🚸
Create a bootable USB
- Download the distribution on the official website, such as the XFCE edition
- Insert a USB key into your computer
- Open a terminal
- Make yourself a superuser with
sudo su
- Take note of the path of the inserted USB key with
fdisk -l
- Burn the ISO on the USB key with
dd bs=4M if=/home/ranb2002/Downloads/manjaro-xfce-21.1.6-minimal-211017-linux513.iso of=/dev/sda status=progress
- Remove the USB key
BIOS configuration
Depending on your computer, you may need to activate the UEFI mode to be able to boot from your USB key:
- Insert your USB key and restart the computer
- Repeatedly press on
ESC
on your keyboard to enter the BIOS when your computer is booting - Activate the UEFI
- Boot from the USB key
Installation
Just follow the instructions on your screen! 😉
Install applications
Some applications may exist only on the AUR repository. If it is not already activated, you can look at this tutorial to activate it with Package Manager.
#######################################
# (su) Multiple applications from AUR #
#######################################
# Switch to the super user
sudo su
# Make sure all installed applications are up to date
pacman -Syyu
# Install applications with pacman
pacman -S \
noto-fonts-emoji \
dnsutils \
dockbarx \
docker \
firefox-beta-bin \
firefox-nightly \
google-chrome \
google-chrome-beta \
google-chrome-dev \
gradle \
gradle-doc \
jdk11-openjdk \
jetbrains-toolbox \
nvm \
sshfs \
system-config-printer \
teams \
vim \
vmware-horizon-client \
vmware-keymaps \
xfce4-dockbarx-plugin
exit
#######################################
# Node.js #
#######################################
# Finish the setup of NVM
echo 'source /usr/share/nvm/init-nvm.sh' >> ~/.bashrc
exec $SHELL
# Install the latest version of NVM
nvm install 16.13.0 && nvm use 16.13.0 && nvm alias default 16.13.0 && node --version
#######################################
# (su) Misc #
#######################################
# Switch to the super user
sudo su
# Disable Linux PC speaker beep permanently
echo "blacklist pcspkr" | tee /etc/modprobe.d/nobeep.conf
# Set ntp so that the clock is set to the correct time
timedatectl set-ntp true
#######################################
# (su) Docker #
#######################################
# Start Docker now
systemctl start docker
# Start Docker when starting the computer
systemctl enable docker
# Show the version of Docker (ex. Docker version 20.10.9, build c2ea9bc90b)
docker --version
# Add your user ID to the docker group to be able to manage it as non-root
usermod -a -G docker ranb2002
#######################################
# (su) Restart #
#######################################
# Restart the computer
shutdown --reboot
Generate SSH keys
# Generate SSH keys with ssh-keygen
ssh-keygen -t ed25519 -C "ranb2002-laptop"
ssh-keygen -t rsa -b 4096 -C "ranb2002-laptop"
# See the generated keys
cat ~/.ssh/id_ed25519.pub
cat ~/.ssh/id_rsa.pub
Git
# Check your settings
git config --list
# Set your identity
git config --global user.name "Benjamin Rancourt"
git config --global user.email benjamin.rancourt@email.com
# Set Vim as default editor for Git
git config --global core.editor vim
# Set some useful aliases (https://git-scm.com/book/tr/v2/Git-Basics-Git-Aliases)
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
# https://www.stefanjudis.com/snippets/a-git-alias-to-show-a-detailed-git-branch-overview/
git config --global alias.zup "for-each-ref --sort='authordate:iso8601' --format='%(color:green)%(authordate:relative)%09%(color:white)%(refname:short) / %(contents:subject)' refs/heads"
## Unstage a file (git unstage fileA)
git config --global alias.unstage 'reset HEAD --'
## See the last commit easily (git last)
git config --global alias.last 'log -1 HEAD'
## Set the push default config to simple
git config --global push.default simple
## Add Git completion
cd ~ && wget https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash
echo "source ~/git-completion.bash" >> ~/.bashrc
## Add Git branch name to bash prompt
# Follow instructions on https://coderwall.com/p/fasnya/add-git-branch-name-to-bash-prompt
# TODO To document correctly
git config --global commit.gpgsign true
Upgrade
If you want to update applications and dependencies on your computer:
# Via pacman
# Switch to the super user
sudo su
pacman -Syu
pacman --sync --refresh --sysupgrade
# Or, via pamac
pamac update
Hopes it could also help you if you want this distribution! 😇
Top comments (0)