Page 1 of 2 12 LastLast
Results 1 to 10 of 18

Thread: Can we speed up Network Manager?

  1. #1
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631

    Can we speed up Network Manager?

    My Windows 7 boots to wi-fi on-line in ~60 seconds.
    My Knoppix 6.4.4 LiveUSB does so in 1m46s.
    Looking at syslog, it appears that the last 48 seconds
    of any boot-up are spent doing Network Manager negotiations.

    NM is doing its job here, but doesn't seem as clever as
    Win7 in getting its job done; certainly not as fast.
    In my case, wi-fi means a Dell internal Broadcom wireless
    with a (non-free) wl driver, a DHCP router connected
    to the internet via Verizon FiOS at 15 Mb/s. Simple
    WEP security. Applet says NM is version 0.8.1.

    I have an external wireless adapter that doesn't use a
    non-free driver, and get the same results.

    Are there some tweaks that would speed up NM?

  2. #2
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631
    Well, thank you all for your suggestions.
    Here's how far I've got, and I'm open for further enhancements.

    1...I found this nice Ubuntu How-To which helps a lot:
    http://ubuntuforums.org/showthread.php?t=684495

    2...I did what it says, and put, as root, this in my /etc/rc.local:
    sudo dhclient -r eth1
    sudo ifconfig eth1 up
    sudo iwconfig eth1 essid "alpha=num essid"
    sudo iwconfig eth1 key "10 char hex key"
    #sudo iwconfig eth1 key open # didn't need this apparently
    sudo iwconfig eth1 mode Managed
    sudo dhclient eth1

    3...I revised my LiveUSB DEFAULT, as root, to read:
    DEFAULT knoppix nonetworkmanager edd=off fromhd=/dev/sdb1
    That's the 1st line in /Desktop/KNOPPIX/boot/syslinux/syslinux.cfg

    4...Rebooted.‎

    5...Did less /var/log/syslog.
    Found that start-of-boot to wi-fi on-line now takes 58 seconds.

    Beat that.

  3. #3
    Senior Member
    Join Date
    Jan 2011
    Posts
    242
    Quote Originally Posted by utu View Post
    Well, thank you all for your suggestions.
    What ? Deprive you of your learning opportunity ? In my book that's a cardinal sin.

    Besides, if I suggested that the best way of speeding up the Network Manager was to not run the Network Manager I'd have had klaus2008 down on my tail (http://www.knoppix.net/forum/threads...ot-in-Adrianne).

    Quote Originally Posted by utu View Post
    I found this nice Ubuntu How-To which helps a lot:
    http://ubuntuforums.org/showthread.php?t=684495
    Beat that.
    http://wiki.debian.org/WiFi
    http://wiki.debian.org/WiFi/HowToUse

    You managed to find a real hacker's hacker - he didn't mention /etc/networks/interfaces once ! You then come up with a solution that names your wireless interface eth1 instead of the usual wlan0. Extra marks.

    Here's what the Debian installer put in my /etc/networks/interfaces to bring up my wifi with WEP:

    Code:
    # The primary network interface
    allow-hotplug wlan0
    iface wlan0 inet dhcp
            # wireless-* options are implemented by the wireless-tools package
            wireless-mode managed
            wireless-essid MyEssid
            wireless-key1 **********
    It is my understanding that with this the most you would need in /etc/rc.local is:

    Code:
    ifup wlan0
    and you might not even need that.

    Ever since I first met the wonderful Network Manager, I've had a manual way of getting my wireless going just in case. I normally use WPA PSK2. If my WPA PSK2 configuration is hidden away in:

    Code:
    /etc/wpa_supplicant.conf
    Then I can start my wireless by hand with:

    Code:
    sudo wpa_supplicant -B -c/etc/wpa_supplicant.conf -iwlan0
    sudo dhclient
    How many sudos did you use ? BTW I don't think you need sudo in /etc/.rc.local.

    I found recently that I can combine the two approaches with:

    Code:
    # The primary network interface
    allow-hotplug wlan0
    iface wlan0 inet dhcp
        wpa-conf /etc/wpa_supplicant.conf
    The problem with the Network Manager is not just that it is started when your PC / LT is busy starting everything else, it's not just that the Network Manager is a big desktop app, it's not just that the LXNetMan is still 'in development'. It's that the Network Manager does not try to connect until you login in. This is not obvious with Knoppix but if you try it on a real desktop installation you'll see what I mean. Thus the Network Manager starts connecting very late in the startup sequence so it appears slower that Windoze.

    By connecting without the Network Manager, you starting connecting much earlier in the startup sequence. The cost is that you must already know which network you want to connect to. This may not be a concern to you but for those that carry their laptop round like security blankets and use them everywhere like they were mobiles (or handys or cells), this could be a real drawback.

    Enter wicd. This is a new, ligthweight, alternative to the Network Manager. It is not as flash as the Network Manager but I understand it will connect in both GUI and console modes. This leads me to believe it must be possible to start it much earlier in the start up sequence.

    I have it running on one Debian laptop but I don't have the time to experiment with it any further. You might like to. If your name is dinoesep, back up your knoppix-data.img first 'cos I think you'll need to uninstall Network Manager in order to install wicd. Obviously, start your network first !

    Cheers
    Last edited by Forester; 03-05-2011 at 01:45 PM.

  4. #4
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631
    Faint praise accepted.
    I never uninstalled NM, just added nonetworkmanager cheatcode to my DEFAULT;
    see step 3.
    Also, my /etc/rc.local belongs to root.

  5. #5
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631
    Heres' my latest. On-line now in 50 seconds.

    #!/bin/bash

    # /etc/rc.local (mine is root:root and executable)

    # other stuff(1)

    setwifi () { # see http://ubuntuforums.org/showthread.php?t=684495
    WIFI="eth1"; dhclient -r $WIFI; ifconfig $WIFI up
    iwconfig $WIFI essid "(alphanumeric ssid)" key "(hexadecimal wep)" mode "Managed"
    nohup dhclient $WIFI; wait >/dev/null 2>&1
    aplay -vv /usr/lib/libreoffice/basis3.3/share/gallery/sounds/ok.wav
    }

    # other stuff

    setwifi(2)

    # other stuff(2)

    exit 0

  6. #6
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631
    FYI, Here's how I've been timing these results.

    I've added these to my .bashrc:

    alias wl.go='less /var/log/syslog|grep restart|cut -c11-16'
    alias wl.up='less /var/log/syslog|grep renewal|cut -c11-16'

    So right after booting up, I can time the event this way:

    knoppix@Microknoppix:~$ wl.up; wl.go
    57:17
    56:27

    I do the subtraction myself, of course.
    Glad to have an expert show me how to program that detail

  7. #7
    Senior Member registered user
    Join Date
    May 2006
    Location
    Columbia, Maryland USA
    Posts
    1,631
    Heres' my latest. On-line now in 50 seconds.

    #!/bin/bash

    # /etc/rc.local (mine is root:root and executable)

    # other stuff(1)

    setwifi () { # see http://ubuntuforums.org/showthread.php?t=684495
    WIFI="eth1"; dhclient -r $WIFI; ifconfig $WIFI up
    iwconfig $WIFI essid "(alphanumeric ssid)" key "(hexadecimal wep)" mode "Managed"
    nohup dhclient $WIFI; wait >/dev/null 2>&1
    aplay -vv /usr/lib/libreoffice/basis3.3/share/gallery/sounds/ok.wav
    }

    # other stuff(2)

    setwifi

    # other stuff(3)

    exit 0
    Last edited by utu; 06-13-2011 at 12:39 AM. Reason: correct typos in post #5

  8. #8
    Senior Member registered user
    Join Date
    Dec 2009
    Posts
    423
    If you are concerned about security, NEVER NEVER NEVER used wep.
    WEP can be cracked in about 5-30 minutes, does not matter how long your password/passhrase.

  9. #9
    Senior Member
    Join Date
    Jan 2011
    Posts
    123
    You should fiddle around in knoppix-autoconfigure to replace the original network manager with wicd like I did, it's described somewhere in a post.
    I have the feeling its under 60 seconds but maybe thats just me.

  10. #10
    Senior Member
    Join Date
    Feb 2012
    Posts
    146
    Quote Originally Posted by utu View Post
    Heres' my latest. On-line now in 50 seconds.

    #!/bin/bash

    # /etc/rc.local (mine is root:root and executable)

    # other stuff(1)

    setwifi () { # see http://ubuntuforums.org/showthread.php?t=684495
    WIFI="eth1"; dhclient -r $WIFI; ifconfig $WIFI up
    iwconfig $WIFI essid "(alphanumeric ssid)" key "(hexadecimal wep)" mode "Managed"
    nohup dhclient $WIFI; wait >/dev/null 2>&1
    aplay -vv /usr/lib/libreoffice/basis3.3/share/gallery/sounds/ok.wav
    }

    # other stuff(2)

    setwifi

    # other stuff(3)

    exit 0
    Dear utu:

    Q: Which version's of knoppix is this script compatible?

    I'm interested using WLAN CLI alternatives to the bloated network-manager GUI w/7.0.3!

    Regards,
    luther

Page 1 of 2 12 LastLast

Posting Permissions

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


IBM Power8 S822L Storage Server 8247-22L - With Ram, Some Cards, No HDD's picture

IBM Power8 S822L Storage Server 8247-22L - With Ram, Some Cards, No HDD's

$399.95



IBM SYSTEM X3500 M3 SERVER 7380AC1 2*XEON E5620 2.4GHz 8GB SEE NOTES picture

IBM SYSTEM X3500 M3 SERVER 7380AC1 2*XEON E5620 2.4GHz 8GB SEE NOTES

$33.21



IBM 8284-22A S822 Dual Power8 Cpu 512Gb (16x 32Gb) RAM  picture

IBM 8284-22A S822 Dual Power8 Cpu 512Gb (16x 32Gb) RAM

$795.00



IBM Lenovo X3650 M5 2U 8x 2.5” CTO Rack Server – 2x HS, 2x 750W picture

IBM Lenovo X3650 M5 2U 8x 2.5” CTO Rack Server – 2x HS, 2x 750W

$199.00



IBM CS821 20-Core 2.827GHz 128Gb 1.92Tb SSD 1U Linux Server - 8005-12N Power 8 picture

IBM CS821 20-Core 2.827GHz 128Gb 1.92Tb SSD 1U Linux Server - 8005-12N Power 8

$479.96



IBM X3650 M5 5462-AC1,2 X E5-2640V3 2.6GHZ 8C, 16 GB, DUAL 750W, 2 X 1TB SERVER picture

IBM X3650 M5 5462-AC1,2 X E5-2640V3 2.6GHZ 8C, 16 GB, DUAL 750W, 2 X 1TB SERVER

$249.99



IBM Power S822 8284-22A 12SFF Power8 3.89GHz 6-Core 64GB RAM No Bezel/HDD Server picture

IBM Power S822 8284-22A 12SFF Power8 3.89GHz 6-Core 64GB RAM No Bezel/HDD Server

$359.99



ibm server z series picture

ibm server z series

$16000.00



IBM x3650 M4 2x Xeon E5-2670 2.6ghz 16-Core / 64GB / M5110e / 2x PSU picture

IBM x3650 M4 2x Xeon E5-2670 2.6ghz 16-Core / 64GB / M5110e / 2x PSU

$129.99



IBM Power S822 12-Bay Server System Power8 Core 3.42Ghz DVD-Rom Drive 64GB No HD picture

IBM Power S822 12-Bay Server System Power8 Core 3.42Ghz DVD-Rom Drive 64GB No HD

$399.99