System settings started as a normal user, it only prompt for passwd when sudo is required.
When I examine what I need to do with apt, it is the following:
apt-cache search
apt-cache show
apt-get source
apt-get -b source
sudo apt-get build-dep
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install
You see, half of the commands need sudo, and half of them do not. If we simply want to browse the repository we don't need root privilege at all. and if we want to install or upgrade, it can prompt for passwd.
Is that possible with adept?
Comment