practice quiz Flashcards
1
Q
Where is the user config file for neovim stored?
A
~/.config/nvim/init.lua
2
Q
How do you install the latest version of a package on arch?
A
sudo pacman -S package-name
3
Q
how to make a folder and a subfolder inside?
A
mkdir -p dir1/dir2
4
Q
How to add a user to a group?
A
sudo usermod -aG groupname username
5
Q
What does /etc/passwd contain?
A
user password info including hashes
6
Q
where is “mkdir” contained?
A
/usr/bin/mkdir
7
Q
What is the command for checking the status of a service?
A
systemctl status <service></service>
8
Q
Do service files need to be executable?
A
no