Arch Packages You Might Want to Install
schoenitzer.de
Arch Packages You Might Want to Install
1–10 of 25 posts
Re: Arch Packages You Might Want to Install
#2the command below appears to list packages installed by the user:
comm -23
source: https://unix.stackexchange.com/questions/409895/pacman-get-l...Re: Arch Packages You Might Want to Install
#3I would also add:
- htop
- mc
- fish (or zsh)
- yay (from aur)Re: Arch Packages You Might Want to Install
#4With how cheap disk space is now, I wonder how infeasible this would actually be. How much disk and bandwidth would this take for, say, Ubuntu, or Arch, or Arch plus the AUR?
Once everything is installed, the package manager could handle incremental updates rather painlessly if you ran them often enough. Conflicting packages might pose a bit of an issue. But we could just exclude any package with conflicts outside of the base install, leaving it to the user to resolve.
Re: Arch Packages You Might Want to Install
#5pulseaudio should be replace pipewire and sudo by doas I would also add: - htop - mc - fish (or zsh) - yay (from aur)
Re: Arch Packages You Might Want to Install
#6pulseaudio should be replace pipewire and sudo by doas I would also add: - htop - mc - fish (or zsh) - yay (from aur)
For my curiosity, why doas over sudo?
Re: Arch Packages You Might Want to Install
#7pulseaudio should be replace pipewire and sudo by doas I would also add: - htop - mc - fish (or zsh) - yay (from aur)
For my curiosity, why doas over sudo?
Re: Arch Packages You Might Want to Install
#8Installing packages precisely when I need them helps me keep my system minimal.
Re: Arch Packages You Might Want to Install
#9youtube-dl should probably be replaced with yt-dlp.. but I like Firefox, Thunderbird, vlc, git, keepassxc... I don't think that I ever needed to install sudo though... you are missing a lot of gems, like Blender, GIMP, Inkscape, nmap, mutt, irssi, gparted, jedit, go, unrar, wireguard-tools, syncthing, obs-studio, audacity... the command below appears to list packages installed by the user: comm -23 source: https://un…
BTW you can replace
sort | uniq
by sort -uRe: Arch Packages You Might Want to Install
#10youtube-dl should probably be replaced with yt-dlp.. but I like Firefox, Thunderbird, vlc, git, keepassxc... I don't think that I ever needed to install sudo though... you are missing a lot of gems, like Blender, GIMP, Inkscape, nmap, mutt, irssi, gparted, jedit, go, unrar, wireguard-tools, syncthing, obs-studio, audacity... the command below appears to list packages installed by the user: comm -23 source: https://un…
TIL that you can redirect 2 stdout to comm. I use to pipe one of the thing I wanted to compare into a file and redirect the other one. BTW you can replace sort | uniq by sort -u