filmov
tv
What to do AFTER you've installed ARCH LINUX - beginner friendly post-install guide
Показать описание
A new-user friendly guide of basic steps to configure your minimal Arch Linux installation, from installing packages and upgrading your system to installing a desktop environment or window manager!
NOTE: #!/bin/sh will be necessary to run shell commands from your xprofile. You can add this in as the top line, it is called a "shebang" and it is used to instruct how the file should be parsed, directing to the default shell on your system.
Please bare with me as I get used to recording! If I do forget something while recording I will always make note in the description.
This video covers:
0:00 Overview
1:45 Allowing your new user account to sudo (run root commands)
4:18 Installing, removing, querying, and updating with Pacman
9:34 Installing an AUR helper tool with makepkg
11:22 Managing systemd processes with systemctl and htop
14:38 Discussing graphical environments - display managers, desktop environments, and window managers
18:59 Installing KDE and configuring a new ~/.xinitrc file for startx
23:14 How to set up an ~/.xprofile to automatically launch programs, and configuring monitors with xrandr
Add the following lines to your ~/.xinitrc file for a KDE Plasma installation allowing for use of ~/.xprofile:
#!/bin/sh
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
export DESKTOP_SESSION=plasma
exec startplasma-x11
NOTE: #!/bin/sh will be necessary to run shell commands from your xprofile. You can add this in as the top line, it is called a "shebang" and it is used to instruct how the file should be parsed, directing to the default shell on your system.
Please bare with me as I get used to recording! If I do forget something while recording I will always make note in the description.
This video covers:
0:00 Overview
1:45 Allowing your new user account to sudo (run root commands)
4:18 Installing, removing, querying, and updating with Pacman
9:34 Installing an AUR helper tool with makepkg
11:22 Managing systemd processes with systemctl and htop
14:38 Discussing graphical environments - display managers, desktop environments, and window managers
18:59 Installing KDE and configuring a new ~/.xinitrc file for startx
23:14 How to set up an ~/.xprofile to automatically launch programs, and configuring monitors with xrandr
Add the following lines to your ~/.xinitrc file for a KDE Plasma installation allowing for use of ~/.xprofile:
#!/bin/sh
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
export DESKTOP_SESSION=plasma
exec startplasma-x11
Комментарии