Results 1 to 3 of 3

Thread: "More Networks" and "VPN Connections" stop working over time.

Hybrid View

  1. #1
    Join Date
    Mar 2012
    Beans
    1

    "More Networks" and "VPN Connections" stop working over time.

    Hey all, sorry for the large pic heavy post. Also I'm not sure if this is the correct forum as it's more a UI issue than a networking issue though it is directly networking related.

    I've been having some difficulty with the ubuntu network utility. After a while, it seems no not be able to load the list of more networks or vpn connections. Logging in and out fixes it some times, restarting always fixes it, but other than that I can't get it to work again. This seems to happen every time ubuntu is on for over a day or so, weather it's on continuously or with me putting it to sleep intermittently. Below are some screen shots illustrating this. I am running an up to date(as of this post) ubuntu 12.04.

    My normal list of "More Networks":



    My normal list of "VPN Connections":


    Broken list of "More Networks":


    Broken list of "VPN Connections":


    Any thoughts?
    Last edited by greggreg; April 30th, 2012 at 07:16 PM.

  2. #2
    Join Date
    Mar 2011
    Beans
    1

    Re: "More Networks" and "VPN Connections" stop working over time.

    I have had this problem for a long time... I wrote a script to rectify it when it happens... this restarts the applet, which means this has no impact on your actual networking...

    #!/bin/bash

    KEY="nm-applet"
    PID=`ps ax | grep "${KEY}" | grep -v grep | awk '{ print $1 }'`

    kill -9 $PID

    sleep 1

    nohup sh -c "exec $KEY 2>&1" >/dev/null &

    sleep 2

  3. #3
    Join Date
    Sep 2010
    Beans
    1

    Re: "More Networks" and "VPN Connections" stop working over time.

    Are there any plans to fix this issue?

    It does not only affect the wireless menu but all Ubuntu apps that use sub-menus.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •