How to keep ndiswrapper configuration after reboot?

6,556

Solution 1

As heartsmagic says, the solution was to add ndiswrapper in a new line of the file /etc/module:

gksu gedit /etc/modules

Save, close the file and reboot.

After reboot, check that the module was loaded with:

lsmod | grep ndiswrapper

(this was my own question but I lost that unregistered account).

Solution 2

The open source driver for my Atheros AR5005G (ath5k module) doesn't work for me. What I did was blacklist the open source driver and the install ndiswrapper. There is a nice graphical interface called "Windows Wireless Drivers", to be found in the repositories. Works all fine, but of course when you reboot it's gone.

The solution was found in the excellent documentation. You want section 3.7. On my laptop it works perfectly. (Fujitsu Siemens Amilo Pa 1510)

Share:
6,556

Related videos on Youtube

ravikumar karunanithi
Author by

ravikumar karunanithi

Updated on September 18, 2022

Comments

  • ravikumar karunanithi
    ravikumar karunanithi over 1 year

    I'm developing a small application. I need to create three buttons in a subclass. One button is add, another one is search and the last one is back. I also create left and right buttons. But I can't create search button in the center of the navigation bar. How can I create it? My code is:

    - (void)viewDidLoad 
    {
    [super viewDidLoad];
    UIBarButtonItem *flipButton = [[UIBarButtonItem alloc] initWithTitle:@"Flip"                                            
                                       style:UIBarButtonItemStyleBordered 
                                   target:self 
                                   action:@selector(flipView)];
    self.navigationItem.rightBarButtonItem = flipButton;
    [flipButton release];
    
    UIBarButtonItem *flipButtons = [[UIBarButtonItem alloc] 
                                   initWithTitle:@"Add"                 
                                   style:UIBarButtonItemStyleBordered 
                                   target:self 
                                   action:@selector(addbuttonview)];
    self.navigationItem.leftBarButtonItem = flipButtons;
    [flipButtons release];
    
    }
    

    How to create a middle button in the navigation bar? Please help me.

    • Nekto
      Nekto over 12 years
      I suggest you to use UISegmentedControl
    • ravikumar karunanithi
      ravikumar karunanithi over 12 years
      ok use this. but how to use in navigation bar
    • heartsmagic
      heartsmagic over 12 years
      Is ndiswrapper module being loaded when system boots? You can see it via: lsmod | grep ndiswrapper If not, just add it to /etc/modules
  • ravikumar karunanithi
    ravikumar karunanithi over 12 years
    Error contain this line "BUTTON_BACK_TAG" is undeclared. How to solve this.
  • Srinivas
    Srinivas over 12 years
    Those Are Prag marks. so here we have 2 solutions 1)giveing different tags for same selector 2) writing different selectors