Banish a popup error message

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
10
down vote

favorite
7












I am connected through VNC to a CentOS 6.4 machine at my workplace. Every five minutes a box pops up that says:




Authentication is required to set the network proxy used for downloading packages



An application is attempting to perform an action that requires privleges. Authentication as the super user is required to perform this action



Password for root:



Details



Role unknown



Action: org.freedesktop.packagekit.system-network-proxy-configure



Vendor: The PackageKit Project



[Cancel] [Authenticate]




I don't have the root password, so usually I just click it an make it go away but it tends to come back a few minutes later. My local sysadmin has tried to deal with the problem a few times and given up and told me just to keep closing the popup box. That said, its driving me nuts. Is there some way I can make it so I don't have to see the popup, even if the problem isn't itself fixed? Less preferably, is there some very easy thing I can tell the sysadmin to do to actually fix the problem?










share|improve this question



























    up vote
    10
    down vote

    favorite
    7












    I am connected through VNC to a CentOS 6.4 machine at my workplace. Every five minutes a box pops up that says:




    Authentication is required to set the network proxy used for downloading packages



    An application is attempting to perform an action that requires privleges. Authentication as the super user is required to perform this action



    Password for root:



    Details



    Role unknown



    Action: org.freedesktop.packagekit.system-network-proxy-configure



    Vendor: The PackageKit Project



    [Cancel] [Authenticate]




    I don't have the root password, so usually I just click it an make it go away but it tends to come back a few minutes later. My local sysadmin has tried to deal with the problem a few times and given up and told me just to keep closing the popup box. That said, its driving me nuts. Is there some way I can make it so I don't have to see the popup, even if the problem isn't itself fixed? Less preferably, is there some very easy thing I can tell the sysadmin to do to actually fix the problem?










    share|improve this question

























      up vote
      10
      down vote

      favorite
      7









      up vote
      10
      down vote

      favorite
      7






      7





      I am connected through VNC to a CentOS 6.4 machine at my workplace. Every five minutes a box pops up that says:




      Authentication is required to set the network proxy used for downloading packages



      An application is attempting to perform an action that requires privleges. Authentication as the super user is required to perform this action



      Password for root:



      Details



      Role unknown



      Action: org.freedesktop.packagekit.system-network-proxy-configure



      Vendor: The PackageKit Project



      [Cancel] [Authenticate]




      I don't have the root password, so usually I just click it an make it go away but it tends to come back a few minutes later. My local sysadmin has tried to deal with the problem a few times and given up and told me just to keep closing the popup box. That said, its driving me nuts. Is there some way I can make it so I don't have to see the popup, even if the problem isn't itself fixed? Less preferably, is there some very easy thing I can tell the sysadmin to do to actually fix the problem?










      share|improve this question















      I am connected through VNC to a CentOS 6.4 machine at my workplace. Every five minutes a box pops up that says:




      Authentication is required to set the network proxy used for downloading packages



      An application is attempting to perform an action that requires privleges. Authentication as the super user is required to perform this action



      Password for root:



      Details



      Role unknown



      Action: org.freedesktop.packagekit.system-network-proxy-configure



      Vendor: The PackageKit Project



      [Cancel] [Authenticate]




      I don't have the root password, so usually I just click it an make it go away but it tends to come back a few minutes later. My local sysadmin has tried to deal with the problem a few times and given up and told me just to keep closing the popup box. That said, its driving me nuts. Is there some way I can make it so I don't have to see the popup, even if the problem isn't itself fixed? Less preferably, is there some very easy thing I can tell the sysadmin to do to actually fix the problem?







      centos notifications






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 6 mins ago









      don_crissti

      48.4k15129158




      48.4k15129158










      asked Nov 11 '15 at 20:20









      ohnoplus

      2031412




      2031412




















          5 Answers
          5






          active

          oldest

          votes

















          up vote
          13
          down vote













          I hope you're not one of my users haha! I manage a cluster and this particular warning has been bugging me for a while. I've been trying to figure out a way to fix this programatically on the command line with little success. This error comes from something bundled in gnome-packagekit.



          I have come across three solutions to this problem



          1. disable /yum/pluginconf.d

            [main]
            enabled=0

            This has not worked for me.


          2. Today I found a different answer on the redhat solutions page and I believe that this one works! just add X-GNOME-Autostart-enabled=false to the end of the /etc/xdg/autostart/gpk-update-icon.desktop file. I restarted vnc after this and have the popup has not returned.


          Unfortunately both solutions so far have required root on the box. I do not believe that the following procedure requires root. But I never tried it since it's done via the GUI:



          1. Launch a Terminal Console and type gnome-session-properties and then uncheck the PackageKit Update Applet.

          gnome something screenshot



          sources :



          • http://linuxtoolkit.blogspot.com/2013/11/fixing-authentication-is-requried-to.html

          • https://access.redhat.com/solutions/195833





          share|improve this answer
















          • 1




            Using gnome-session-properties didn't require me to enter a password. So the GUI option #3 worked for me, a lowly, non-admin type!
            – Gillfish
            Aug 10 '16 at 22:04






          • 2




            /etc/xdg/autostart/gpk-update-icon.desktop does not exist - in Centos 7 and rhel 7, the file is /etc/xdg/autostart/gnome-software-service.desktop but I also get a color managed device auth pop up... :/
            – Ray Foss
            Sep 27 '16 at 17:57







          • 1




            bugzilla.redhat.com/show_bug.cgi?id=1149893#c13 fixeds the color managed subsequent pop up on rhel 7 for me.
            – Ray Foss
            Sep 27 '16 at 18:03










          • I love you echdee.
            – John Red
            Feb 24 '17 at 7:09










          • I think the disable should be /etc/yum/pluginconf.d/refresh-packagekit.conf but I'm still testing that.
            – kkron
            Oct 20 '17 at 17:40


















          up vote
          5
          down vote













          In Centos 7, to remove "Authentication is required to set the network proxy used for downloading packages" dialog when you log in - you have to disable autostart of gnome-software-service



          sed -e '$aX-GNOME-Autostart-enabled=false' -e '/X-GNOME-Autostart-enabled/d' -i.bak /etc/xdg/autostart/gnome-software-service.desktop





          share|improve this answer
















          • 2




            Or for those of us who want to edit the file manually simply add X-GNOME-Autostart-enabled=false to the end of /etc/xdg/autostart/gnome-software-service.desktop and restart vncserver
            – isapir
            Oct 23 '16 at 6:54

















          up vote
          1
          down vote













          For RHEL6/OEL6 - VNC environments which launch Gnome and see this message ...



          Invoking the gnome-session-properties app to disable the packagekit update panel results in the modification of the file:



          ~/.config/autostart/gpk-update-icon.desktop


          aka:



          $HOME/.config/autostart/gps-update-icon.desktop


          As mentioned in earlier posts, it sets:



          X-GNOME-Autostart-enabled=false



          This file is apparently UTF-8 Unicode text






          share|improve this answer





























            up vote
            0
            down vote













            For RHEL7/OEL7 when you login through and see this message: "Authentication is required to set the network proxy used for downloading software" and stuck in this password input and cannot login.



            To resolve this issue:
            Open file /etc/xdg/autostart/abrt-applet.desktop



            then
            Find line : X-GNOME-Autostart-enabled=true and change to : X-GNOME-Autostart-enabled=false



            Restart vnc service and relogin.






            share|improve this answer



























              up vote
              0
              down vote













              For those travelling here for an answer that don't use remote desktoping, I thought I would share my solution.



              Purging xRDP solved my issue on ubuntu. I was seeing this popup all the time. This was an easy solution for me as remote desktoping isn't a feature I need or use. Also, if I do need it down the road I figure I can get something else.



              Code Remove (but leave config files):



              sudo apt-get remove xrdp


              Code to 100% remove:



              sudo apt-get purge xrdp





              share|improve this answer




















                Your Answer








                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "106"
                ;
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function()
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled)
                StackExchange.using("snippets", function()
                createEditor();
                );

                else
                createEditor();

                );

                function createEditor()
                StackExchange.prepareEditor(
                heartbeatType: 'answer',
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                imageUploader:
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                ,
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                );



                );













                 

                draft saved


                draft discarded


















                StackExchange.ready(
                function ()
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f242423%2fbanish-a-popup-error-message%23new-answer', 'question_page');

                );

                Post as a guest






























                5 Answers
                5






                active

                oldest

                votes








                5 Answers
                5






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes








                up vote
                13
                down vote













                I hope you're not one of my users haha! I manage a cluster and this particular warning has been bugging me for a while. I've been trying to figure out a way to fix this programatically on the command line with little success. This error comes from something bundled in gnome-packagekit.



                I have come across three solutions to this problem



                1. disable /yum/pluginconf.d

                  [main]
                  enabled=0

                  This has not worked for me.


                2. Today I found a different answer on the redhat solutions page and I believe that this one works! just add X-GNOME-Autostart-enabled=false to the end of the /etc/xdg/autostart/gpk-update-icon.desktop file. I restarted vnc after this and have the popup has not returned.


                Unfortunately both solutions so far have required root on the box. I do not believe that the following procedure requires root. But I never tried it since it's done via the GUI:



                1. Launch a Terminal Console and type gnome-session-properties and then uncheck the PackageKit Update Applet.

                gnome something screenshot



                sources :



                • http://linuxtoolkit.blogspot.com/2013/11/fixing-authentication-is-requried-to.html

                • https://access.redhat.com/solutions/195833





                share|improve this answer
















                • 1




                  Using gnome-session-properties didn't require me to enter a password. So the GUI option #3 worked for me, a lowly, non-admin type!
                  – Gillfish
                  Aug 10 '16 at 22:04






                • 2




                  /etc/xdg/autostart/gpk-update-icon.desktop does not exist - in Centos 7 and rhel 7, the file is /etc/xdg/autostart/gnome-software-service.desktop but I also get a color managed device auth pop up... :/
                  – Ray Foss
                  Sep 27 '16 at 17:57







                • 1




                  bugzilla.redhat.com/show_bug.cgi?id=1149893#c13 fixeds the color managed subsequent pop up on rhel 7 for me.
                  – Ray Foss
                  Sep 27 '16 at 18:03










                • I love you echdee.
                  – John Red
                  Feb 24 '17 at 7:09










                • I think the disable should be /etc/yum/pluginconf.d/refresh-packagekit.conf but I'm still testing that.
                  – kkron
                  Oct 20 '17 at 17:40















                up vote
                13
                down vote













                I hope you're not one of my users haha! I manage a cluster and this particular warning has been bugging me for a while. I've been trying to figure out a way to fix this programatically on the command line with little success. This error comes from something bundled in gnome-packagekit.



                I have come across three solutions to this problem



                1. disable /yum/pluginconf.d

                  [main]
                  enabled=0

                  This has not worked for me.


                2. Today I found a different answer on the redhat solutions page and I believe that this one works! just add X-GNOME-Autostart-enabled=false to the end of the /etc/xdg/autostart/gpk-update-icon.desktop file. I restarted vnc after this and have the popup has not returned.


                Unfortunately both solutions so far have required root on the box. I do not believe that the following procedure requires root. But I never tried it since it's done via the GUI:



                1. Launch a Terminal Console and type gnome-session-properties and then uncheck the PackageKit Update Applet.

                gnome something screenshot



                sources :



                • http://linuxtoolkit.blogspot.com/2013/11/fixing-authentication-is-requried-to.html

                • https://access.redhat.com/solutions/195833





                share|improve this answer
















                • 1




                  Using gnome-session-properties didn't require me to enter a password. So the GUI option #3 worked for me, a lowly, non-admin type!
                  – Gillfish
                  Aug 10 '16 at 22:04






                • 2




                  /etc/xdg/autostart/gpk-update-icon.desktop does not exist - in Centos 7 and rhel 7, the file is /etc/xdg/autostart/gnome-software-service.desktop but I also get a color managed device auth pop up... :/
                  – Ray Foss
                  Sep 27 '16 at 17:57







                • 1




                  bugzilla.redhat.com/show_bug.cgi?id=1149893#c13 fixeds the color managed subsequent pop up on rhel 7 for me.
                  – Ray Foss
                  Sep 27 '16 at 18:03










                • I love you echdee.
                  – John Red
                  Feb 24 '17 at 7:09










                • I think the disable should be /etc/yum/pluginconf.d/refresh-packagekit.conf but I'm still testing that.
                  – kkron
                  Oct 20 '17 at 17:40













                up vote
                13
                down vote










                up vote
                13
                down vote









                I hope you're not one of my users haha! I manage a cluster and this particular warning has been bugging me for a while. I've been trying to figure out a way to fix this programatically on the command line with little success. This error comes from something bundled in gnome-packagekit.



                I have come across three solutions to this problem



                1. disable /yum/pluginconf.d

                  [main]
                  enabled=0

                  This has not worked for me.


                2. Today I found a different answer on the redhat solutions page and I believe that this one works! just add X-GNOME-Autostart-enabled=false to the end of the /etc/xdg/autostart/gpk-update-icon.desktop file. I restarted vnc after this and have the popup has not returned.


                Unfortunately both solutions so far have required root on the box. I do not believe that the following procedure requires root. But I never tried it since it's done via the GUI:



                1. Launch a Terminal Console and type gnome-session-properties and then uncheck the PackageKit Update Applet.

                gnome something screenshot



                sources :



                • http://linuxtoolkit.blogspot.com/2013/11/fixing-authentication-is-requried-to.html

                • https://access.redhat.com/solutions/195833





                share|improve this answer












                I hope you're not one of my users haha! I manage a cluster and this particular warning has been bugging me for a while. I've been trying to figure out a way to fix this programatically on the command line with little success. This error comes from something bundled in gnome-packagekit.



                I have come across three solutions to this problem



                1. disable /yum/pluginconf.d

                  [main]
                  enabled=0

                  This has not worked for me.


                2. Today I found a different answer on the redhat solutions page and I believe that this one works! just add X-GNOME-Autostart-enabled=false to the end of the /etc/xdg/autostart/gpk-update-icon.desktop file. I restarted vnc after this and have the popup has not returned.


                Unfortunately both solutions so far have required root on the box. I do not believe that the following procedure requires root. But I never tried it since it's done via the GUI:



                1. Launch a Terminal Console and type gnome-session-properties and then uncheck the PackageKit Update Applet.

                gnome something screenshot



                sources :



                • http://linuxtoolkit.blogspot.com/2013/11/fixing-authentication-is-requried-to.html

                • https://access.redhat.com/solutions/195833






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 3 '15 at 22:01









                echdee

                36127




                36127







                • 1




                  Using gnome-session-properties didn't require me to enter a password. So the GUI option #3 worked for me, a lowly, non-admin type!
                  – Gillfish
                  Aug 10 '16 at 22:04






                • 2




                  /etc/xdg/autostart/gpk-update-icon.desktop does not exist - in Centos 7 and rhel 7, the file is /etc/xdg/autostart/gnome-software-service.desktop but I also get a color managed device auth pop up... :/
                  – Ray Foss
                  Sep 27 '16 at 17:57







                • 1




                  bugzilla.redhat.com/show_bug.cgi?id=1149893#c13 fixeds the color managed subsequent pop up on rhel 7 for me.
                  – Ray Foss
                  Sep 27 '16 at 18:03










                • I love you echdee.
                  – John Red
                  Feb 24 '17 at 7:09










                • I think the disable should be /etc/yum/pluginconf.d/refresh-packagekit.conf but I'm still testing that.
                  – kkron
                  Oct 20 '17 at 17:40













                • 1




                  Using gnome-session-properties didn't require me to enter a password. So the GUI option #3 worked for me, a lowly, non-admin type!
                  – Gillfish
                  Aug 10 '16 at 22:04






                • 2




                  /etc/xdg/autostart/gpk-update-icon.desktop does not exist - in Centos 7 and rhel 7, the file is /etc/xdg/autostart/gnome-software-service.desktop but I also get a color managed device auth pop up... :/
                  – Ray Foss
                  Sep 27 '16 at 17:57







                • 1




                  bugzilla.redhat.com/show_bug.cgi?id=1149893#c13 fixeds the color managed subsequent pop up on rhel 7 for me.
                  – Ray Foss
                  Sep 27 '16 at 18:03










                • I love you echdee.
                  – John Red
                  Feb 24 '17 at 7:09










                • I think the disable should be /etc/yum/pluginconf.d/refresh-packagekit.conf but I'm still testing that.
                  – kkron
                  Oct 20 '17 at 17:40








                1




                1




                Using gnome-session-properties didn't require me to enter a password. So the GUI option #3 worked for me, a lowly, non-admin type!
                – Gillfish
                Aug 10 '16 at 22:04




                Using gnome-session-properties didn't require me to enter a password. So the GUI option #3 worked for me, a lowly, non-admin type!
                – Gillfish
                Aug 10 '16 at 22:04




                2




                2




                /etc/xdg/autostart/gpk-update-icon.desktop does not exist - in Centos 7 and rhel 7, the file is /etc/xdg/autostart/gnome-software-service.desktop but I also get a color managed device auth pop up... :/
                – Ray Foss
                Sep 27 '16 at 17:57





                /etc/xdg/autostart/gpk-update-icon.desktop does not exist - in Centos 7 and rhel 7, the file is /etc/xdg/autostart/gnome-software-service.desktop but I also get a color managed device auth pop up... :/
                – Ray Foss
                Sep 27 '16 at 17:57





                1




                1




                bugzilla.redhat.com/show_bug.cgi?id=1149893#c13 fixeds the color managed subsequent pop up on rhel 7 for me.
                – Ray Foss
                Sep 27 '16 at 18:03




                bugzilla.redhat.com/show_bug.cgi?id=1149893#c13 fixeds the color managed subsequent pop up on rhel 7 for me.
                – Ray Foss
                Sep 27 '16 at 18:03












                I love you echdee.
                – John Red
                Feb 24 '17 at 7:09




                I love you echdee.
                – John Red
                Feb 24 '17 at 7:09












                I think the disable should be /etc/yum/pluginconf.d/refresh-packagekit.conf but I'm still testing that.
                – kkron
                Oct 20 '17 at 17:40





                I think the disable should be /etc/yum/pluginconf.d/refresh-packagekit.conf but I'm still testing that.
                – kkron
                Oct 20 '17 at 17:40













                up vote
                5
                down vote













                In Centos 7, to remove "Authentication is required to set the network proxy used for downloading packages" dialog when you log in - you have to disable autostart of gnome-software-service



                sed -e '$aX-GNOME-Autostart-enabled=false' -e '/X-GNOME-Autostart-enabled/d' -i.bak /etc/xdg/autostart/gnome-software-service.desktop





                share|improve this answer
















                • 2




                  Or for those of us who want to edit the file manually simply add X-GNOME-Autostart-enabled=false to the end of /etc/xdg/autostart/gnome-software-service.desktop and restart vncserver
                  – isapir
                  Oct 23 '16 at 6:54














                up vote
                5
                down vote













                In Centos 7, to remove "Authentication is required to set the network proxy used for downloading packages" dialog when you log in - you have to disable autostart of gnome-software-service



                sed -e '$aX-GNOME-Autostart-enabled=false' -e '/X-GNOME-Autostart-enabled/d' -i.bak /etc/xdg/autostart/gnome-software-service.desktop





                share|improve this answer
















                • 2




                  Or for those of us who want to edit the file manually simply add X-GNOME-Autostart-enabled=false to the end of /etc/xdg/autostart/gnome-software-service.desktop and restart vncserver
                  – isapir
                  Oct 23 '16 at 6:54












                up vote
                5
                down vote










                up vote
                5
                down vote









                In Centos 7, to remove "Authentication is required to set the network proxy used for downloading packages" dialog when you log in - you have to disable autostart of gnome-software-service



                sed -e '$aX-GNOME-Autostart-enabled=false' -e '/X-GNOME-Autostart-enabled/d' -i.bak /etc/xdg/autostart/gnome-software-service.desktop





                share|improve this answer












                In Centos 7, to remove "Authentication is required to set the network proxy used for downloading packages" dialog when you log in - you have to disable autostart of gnome-software-service



                sed -e '$aX-GNOME-Autostart-enabled=false' -e '/X-GNOME-Autostart-enabled/d' -i.bak /etc/xdg/autostart/gnome-software-service.desktop






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 24 '16 at 16:26









                pikmaster

                5112




                5112







                • 2




                  Or for those of us who want to edit the file manually simply add X-GNOME-Autostart-enabled=false to the end of /etc/xdg/autostart/gnome-software-service.desktop and restart vncserver
                  – isapir
                  Oct 23 '16 at 6:54












                • 2




                  Or for those of us who want to edit the file manually simply add X-GNOME-Autostart-enabled=false to the end of /etc/xdg/autostart/gnome-software-service.desktop and restart vncserver
                  – isapir
                  Oct 23 '16 at 6:54







                2




                2




                Or for those of us who want to edit the file manually simply add X-GNOME-Autostart-enabled=false to the end of /etc/xdg/autostart/gnome-software-service.desktop and restart vncserver
                – isapir
                Oct 23 '16 at 6:54




                Or for those of us who want to edit the file manually simply add X-GNOME-Autostart-enabled=false to the end of /etc/xdg/autostart/gnome-software-service.desktop and restart vncserver
                – isapir
                Oct 23 '16 at 6:54










                up vote
                1
                down vote













                For RHEL6/OEL6 - VNC environments which launch Gnome and see this message ...



                Invoking the gnome-session-properties app to disable the packagekit update panel results in the modification of the file:



                ~/.config/autostart/gpk-update-icon.desktop


                aka:



                $HOME/.config/autostart/gps-update-icon.desktop


                As mentioned in earlier posts, it sets:



                X-GNOME-Autostart-enabled=false



                This file is apparently UTF-8 Unicode text






                share|improve this answer


























                  up vote
                  1
                  down vote













                  For RHEL6/OEL6 - VNC environments which launch Gnome and see this message ...



                  Invoking the gnome-session-properties app to disable the packagekit update panel results in the modification of the file:



                  ~/.config/autostart/gpk-update-icon.desktop


                  aka:



                  $HOME/.config/autostart/gps-update-icon.desktop


                  As mentioned in earlier posts, it sets:



                  X-GNOME-Autostart-enabled=false



                  This file is apparently UTF-8 Unicode text






                  share|improve this answer
























                    up vote
                    1
                    down vote










                    up vote
                    1
                    down vote









                    For RHEL6/OEL6 - VNC environments which launch Gnome and see this message ...



                    Invoking the gnome-session-properties app to disable the packagekit update panel results in the modification of the file:



                    ~/.config/autostart/gpk-update-icon.desktop


                    aka:



                    $HOME/.config/autostart/gps-update-icon.desktop


                    As mentioned in earlier posts, it sets:



                    X-GNOME-Autostart-enabled=false



                    This file is apparently UTF-8 Unicode text






                    share|improve this answer














                    For RHEL6/OEL6 - VNC environments which launch Gnome and see this message ...



                    Invoking the gnome-session-properties app to disable the packagekit update panel results in the modification of the file:



                    ~/.config/autostart/gpk-update-icon.desktop


                    aka:



                    $HOME/.config/autostart/gps-update-icon.desktop


                    As mentioned in earlier posts, it sets:



                    X-GNOME-Autostart-enabled=false



                    This file is apparently UTF-8 Unicode text







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Jan 30 '17 at 0:45









                    Stephen Rauch

                    3,278101328




                    3,278101328










                    answered Jan 30 '17 at 0:18









                    TodayGuessWhat

                    111




                    111




















                        up vote
                        0
                        down vote













                        For RHEL7/OEL7 when you login through and see this message: "Authentication is required to set the network proxy used for downloading software" and stuck in this password input and cannot login.



                        To resolve this issue:
                        Open file /etc/xdg/autostart/abrt-applet.desktop



                        then
                        Find line : X-GNOME-Autostart-enabled=true and change to : X-GNOME-Autostart-enabled=false



                        Restart vnc service and relogin.






                        share|improve this answer
























                          up vote
                          0
                          down vote













                          For RHEL7/OEL7 when you login through and see this message: "Authentication is required to set the network proxy used for downloading software" and stuck in this password input and cannot login.



                          To resolve this issue:
                          Open file /etc/xdg/autostart/abrt-applet.desktop



                          then
                          Find line : X-GNOME-Autostart-enabled=true and change to : X-GNOME-Autostart-enabled=false



                          Restart vnc service and relogin.






                          share|improve this answer






















                            up vote
                            0
                            down vote










                            up vote
                            0
                            down vote









                            For RHEL7/OEL7 when you login through and see this message: "Authentication is required to set the network proxy used for downloading software" and stuck in this password input and cannot login.



                            To resolve this issue:
                            Open file /etc/xdg/autostart/abrt-applet.desktop



                            then
                            Find line : X-GNOME-Autostart-enabled=true and change to : X-GNOME-Autostart-enabled=false



                            Restart vnc service and relogin.






                            share|improve this answer












                            For RHEL7/OEL7 when you login through and see this message: "Authentication is required to set the network proxy used for downloading software" and stuck in this password input and cannot login.



                            To resolve this issue:
                            Open file /etc/xdg/autostart/abrt-applet.desktop



                            then
                            Find line : X-GNOME-Autostart-enabled=true and change to : X-GNOME-Autostart-enabled=false



                            Restart vnc service and relogin.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jul 6 '17 at 10:46









                            user3440732

                            1




                            1




















                                up vote
                                0
                                down vote













                                For those travelling here for an answer that don't use remote desktoping, I thought I would share my solution.



                                Purging xRDP solved my issue on ubuntu. I was seeing this popup all the time. This was an easy solution for me as remote desktoping isn't a feature I need or use. Also, if I do need it down the road I figure I can get something else.



                                Code Remove (but leave config files):



                                sudo apt-get remove xrdp


                                Code to 100% remove:



                                sudo apt-get purge xrdp





                                share|improve this answer
























                                  up vote
                                  0
                                  down vote













                                  For those travelling here for an answer that don't use remote desktoping, I thought I would share my solution.



                                  Purging xRDP solved my issue on ubuntu. I was seeing this popup all the time. This was an easy solution for me as remote desktoping isn't a feature I need or use. Also, if I do need it down the road I figure I can get something else.



                                  Code Remove (but leave config files):



                                  sudo apt-get remove xrdp


                                  Code to 100% remove:



                                  sudo apt-get purge xrdp





                                  share|improve this answer






















                                    up vote
                                    0
                                    down vote










                                    up vote
                                    0
                                    down vote









                                    For those travelling here for an answer that don't use remote desktoping, I thought I would share my solution.



                                    Purging xRDP solved my issue on ubuntu. I was seeing this popup all the time. This was an easy solution for me as remote desktoping isn't a feature I need or use. Also, if I do need it down the road I figure I can get something else.



                                    Code Remove (but leave config files):



                                    sudo apt-get remove xrdp


                                    Code to 100% remove:



                                    sudo apt-get purge xrdp





                                    share|improve this answer












                                    For those travelling here for an answer that don't use remote desktoping, I thought I would share my solution.



                                    Purging xRDP solved my issue on ubuntu. I was seeing this popup all the time. This was an easy solution for me as remote desktoping isn't a feature I need or use. Also, if I do need it down the road I figure I can get something else.



                                    Code Remove (but leave config files):



                                    sudo apt-get remove xrdp


                                    Code to 100% remove:



                                    sudo apt-get purge xrdp






                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered May 7 at 13:44









                                    Alice

                                    1




                                    1



























                                         

                                        draft saved


                                        draft discarded















































                                         


                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f242423%2fbanish-a-popup-error-message%23new-answer', 'question_page');

                                        );

                                        Post as a guest













































































                                        Popular posts from this blog

                                        How to check contact read email or not when send email to Individual?

                                        Bahrain

                                        Postfix configuration issue with fips on centos 7; mailgun relay