My Ubuntu 18.04 opens the modal dialog
Authentication Required
with the text "Authentication is needed to run '/bin/sh' as super user
This happens just after booting - for no reason know to me!
My Ubuntu 18.04 opens the modal dialog
Authentication Required
with the text "Authentication is needed to run '/bin/sh' as super user
This happens just after booting - for no reason know to me!
Do you have Dropbox installed?
If Dropbox finds files in its folder that aren't owned by your user, it will try to run a script with super user privileges to change the ownership of those files to your user.
If you click Cancel, Dropbox won't run the script but you'll continue to get the popup because it will continue to detect the problem.
If you're able to confirm it is Dropbox causing the popup, then the solution is to enter your credentials and let it run the script.
More details here.
I myself ran into this problem, but since I run Xfce the dialog has an expandable Details option that allowed me to figure out the source of the popup:
I also have the same issue
Since I did not want to just allow it - since I don't know what it is - I did this:
Check for programs that are starting after boot by opening "Startup Applications"
And verify that only desired applications do start.
If you have Dropbox (like pointet out by bmaupin) then search for files which you are not the owner of
ls -Rl Dropbox/ |grep -vP 'YourUserName|total|Dropbox.*:|^$'
this Searches for all files where the user is not YourUserName, omits Parent Directories of files and also omits empty lines
Change the ownership of files to your user ($USER
) and group
sudo chown YourUserName:YourGroupName /path/do/file
I would look there first.
– Carlos Dagorret Oct 18 '19 at 18:37