You are not logged in.
gksu is depreciated in Daedalus. So while I was searching for an alternative, someone mentioned that I can still use it as .deb package.
https://itsfoss.com/gksu-replacement-ubuntu/ <---look at the comment section.
LeDechaine
1 year agoYou do NOT need to replace it. You just need to download it again. Debian: http://ftp.us.debian.org/debian/pool/ma … _amd64.deb http://ftp.us.debian.org/debian/pool/ma … _amd64.deb http://ftp.us.debian.org/debian/pool/ma … _amd64.deb If it ain't broke, don't fix it. pkexec is a piece of trash that did not work half the time and did not do what I wanted it to do the other half of the time. Just download this and get back gksu. And watch closely apt or "apt hold" gksu to be sure to not lose it (it's what we should have been warned to do before this change happened, actually).
What would be the Devuan equivalent of http://ftp.us.debian.org/debian/pool/ma … _amd64.deb ? Where can I find it?
I haven't found satisfactory alternative yet. I would like to use it in scripts and not think about them.
Any help and suggestions would be appreciated.
Last edited by VH (2024-08-20 23:42:37)
Offline
Offline
I would like to use it in scripts and not think about them.
Using unmaintained binaries from removed packages in scripts is the antithesis of "just forget about them". Sooner or later gksu will break (especially being GUI bloat linked against GTK), if you want reliable scripts use a supported method like pkexec.
If you must use gksu, at least port it properly (i.e. rebuild it against current libraries) rather than pulling in binary packages from an old release.
Last edited by steve_v (2024-08-21 07:03:21)
Once is happenstance. Twice is coincidence. Three times is enemy action. Four times is Official GNOME Policy.
Offline
there are 2 alternatives that ARE in debian and devuan without messing with outdated packages.
one is to use an askpass frontend for sudo, sudo with the -A flag will launch a helper program to get the user password, i've seen even rofi used for that purpose (mind you the author recomends to NOT use rofi for sudo askpass) but a good package for that is ssh-askpass-gnome (gtk frontend), then simply put this line on your .profile export SUDO_ASKPASS="/usr/bin/ssh-askpass"
two is to use pkexec with some polkit authentication agent, most desktop environments have their own polkit agent autostarted but if your's doesn't or you use a window manager then the package policykit-1-gnome provides a gtk polkit auth agent, the autostart desktop file specifies it as gnome only iirc, but you can add your own autostart entry in ~/.config/autostart or simply run /usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 somewhere in your .xsession.
Offline