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
  •  


Cisco SG110 24 Port Gigabit Ethernet Switch w/ 2 x SFP SG110-24 picture

Cisco SG110 24 Port Gigabit Ethernet Switch w/ 2 x SFP SG110-24

$117.00



GENUINE CISCO DS-SFP-FC32G-SW SFP NEW SEALED SEE PHOTOS SHIPS FREE picture

GENUINE CISCO DS-SFP-FC32G-SW SFP NEW SEALED SEE PHOTOS SHIPS FREE

$74.99



Sonicwall 02-SSC-1874 Compatible 10GBASE-T Copper SFP+ RJ-45 30M Transceiver-876 picture

Sonicwall 02-SSC-1874 Compatible 10GBASE-T Copper SFP+ RJ-45 30M Transceiver-876

$189.05



GENUINE CISCO 25G Base Active Optical SFP cable 3M SFP-25G-AOC3M NEW SHIPS FREE picture

GENUINE CISCO 25G Base Active Optical SFP cable 3M SFP-25G-AOC3M NEW SHIPS FREE

$65.99



NEW Sealed Cisco SFP-10G-SR-S 10G SR SFP+ Module 850nmMM *US Shipping* picture

NEW Sealed Cisco SFP-10G-SR-S 10G SR SFP+ Module 850nmMM *US Shipping*

$15.00



Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module 10-2415-03  picture

Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module 10-2415-03

$8.00



GENUINE Cisco SFP-GE-T EXT 30-1421-01 USA 1000BASE-T RJ45 SFP Transceiver picture

GENUINE Cisco SFP-GE-T EXT 30-1421-01 USA 1000BASE-T RJ45 SFP Transceiver

$9.99



For Cisco SFP-10G-T, Ubiquiti UF-RJ45-10G Module 10G SFP+ to RJ45 10GBase-T picture

For Cisco SFP-10G-T, Ubiquiti UF-RJ45-10G Module 10G SFP+ to RJ45 10GBase-T

$48.59



Lot (10) Dell 0N8TDR 850nm SFP-10G-SR-85C 10Gbs sfp+ FTLX8574D3BNL-FC N8TDR NEW picture

Lot (10) Dell 0N8TDR 850nm SFP-10G-SR-85C 10Gbs sfp+ FTLX8574D3BNL-FC N8TDR NEW

$68.00



10 PCS Cisco GLC-LH-SMD 10-2625-01 1310nm SFP Transceiver Module picture

10 PCS Cisco GLC-LH-SMD 10-2625-01 1310nm SFP Transceiver Module

$85.00