Results 1 to 5 of 5

Thread: Network Manager not Running at Boot

  1. #1
    Join Date
    Dec 2012
    Beans
    13

    Network Manager not Running at Boot

    Hi,

    Network Manager does not seem to want to start automatically when the system boots up and I have to type in

    Code:
    sudo service network-manager start
    to get any network connectivity. Having a quick search round I see mention of upstart jobs and init.d and rc.local but to be honest as I'm just starting to delve into the world of Linux it's a bit double-dutch to me.

    Any ideas where to go? Simple terms appreciated lol

    Thanks

  2. #2
    Join Date
    Oct 2010
    Beans
    25

    Re: Network Manager not Running at Boot

    1. Open a terminal and type in "sudo su" to switch to root
    2. Type in "nano /etc/rc.local"
    3. In the line between the last comment and the word 'exit', type in "service network-manager start".

    Whenver you want a command to be run at boot, add it to /etc/rc.local, as the contents of this file are executed at boot. By default it does nothing.
    "Adjectives fail me." - Hobbes

  3. #3
    Join Date
    Dec 2012
    Beans
    13

    Re: Network Manager not Running at Boot

    Hi Andy, thanks for that it seems to have done the trick. I notice on the splash screen (and this was happening before) that it says "waiting for network connection/configuration (not sure which)" and then says "waiting up to 60 seconds for network connection". Is this normal until the command kicks in from rc.local? Just seems odd that it delays the boot process.
    Thanks again

  4. #4
    Join Date
    Jun 2007
    Location
    Arizona U.S.A.
    Beans
    5,739

    Re: Network Manager not Running at Boot

    Quote Originally Posted by Gogsyd View Post
    I notice on the splash screen (and this was happening before) that it says "waiting for network connection/configuration (not sure which)" and then says "waiting up to 60 seconds for network connection". Is this normal until the command kicks in from rc.local? Just seems odd that it delays the boot process.
    Thanks again
    Lubuntu 12.10 - same issue: "waiting up to 60 seconds for network connection.." message. This noticed after installing with the alternate installer (but not the regular installer - that may be just a coincidence).

    One or the other of the following fixed that (also a connection that was dropping repeatedly).

    1) look at /etc/network/interfaces. it was misconfigured. It should look like this:

    Code:
    # interfaces(5) file used by ifup(8) and ifdown(8)
    auto lo
    iface lo inet loopback
    If there are more lines, comment them out with a # in front.

    2) Main Menu > Preferences > Network Connections > Select connection >
    Edit

    ipv6 settings: set method to Ignore and "available for all users" checked at the bottom of window.

    After that, no problems. Maybe it will help you.

    Good Luck

  5. #5
    Join Date
    Dec 2012
    Beans
    13

    Re: Network Manager not Running at Boot

    Hi Dennis, That worked a treat thanks. For the record I ended up having to do both but it worked fine.

    Thanks again to you both.

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
  •