Re: Forgive the noob questions :-(
Reply #1 –
I will only write this very brief comment before going to sleep.
Artix is using "pacman" package manager. You can also install some graphical things like Pamac or Octopi.
Artix wiki mostly contains only Artix specific things. You should always be aware and check Archwiki (and filter systemd mentions in your head)
For pacman check: https://wiki.archlinux.org/index.php/Pacman
For AUR: https://wiki.archlinux.org/index.php/Arch_User_Repository
For AUR helpers: https://wiki.archlinux.org/index.php/AUR_helpers
- brave can be installed from AUR (you can do that by hand or with some AUR helper)
- regarding "broken" midori on ISO or after installation? I have no idea what the problem is, you can for start install firefox.
Some basic pacman commands:
# System update
pacman -Syu
# Package Installation
pacman -S <package> # eg: pacman -S firefox
# When you get error "404 cant retrieve file from mirror" (or something similar) run:
pacman -Sy # or $ pacman -Syy # to forcefuly refresh database
# To search for packages in repositories
pacman -Ss something
# to remove package
pacman -R <package> # eg: pacman -R firefox
# to get HELP with some pacman command
pacman -h
pacman -Sh
pacman -Qh
pacman -Rh
#etc..