Friday, July 8, 2011

ndiswrapper module not found: solved

When I logged into my Linux distribution almost after several months, I just hit this error while connecting to wifi. I still dunno what exactly went wrong. But one clean install of ndiswrapper got me into working happily!
Go to ndiswrapper directory(where ndiswrapper was unzipped), make clean, make, make install, when you modprobe ndiswrapper now, no error but get connected:)
       This is probably 'coz kernel is unaware of ndiswrapper module (somehow ndiswrapper module object file got deleted) , and to make use of that, should be added into kernel and then load it.

Teach Yourself Programming in Ten Years!

I came across this interesting article today. Teach yourself Programming in Ten Years by Peter Norvig (One of the top hackers from Google)

Monday, February 21, 2011

Android SDK tools update failure: solved

While updating through Eclipse, if you get error:
Installing Android SDK Platform-tools, revision 9
Failed to rename directory
and warning:
-= warning! =- A folder failed to be renamed or moved. On Windows this typically means that a program Is using that Folder (for example Windows Explorer or your anti-virus software.) Please momentarily deactivate your anti-virus software. Please also close any running programs that may be accessing the android-installation-path/tools directory, 


follow these steps:
  • Close Eclipse and close all instances of windows explorer in which the\android-sdk-windows\tools folder was opened.
  • Copy tools directory to some other tools_copy directory.
  • Run android.bat from there.
  • After update is over delete temp_tools directory (kill adb.exe if not able to delete the folder)
you can also try these (didn't work for me:()
  • Close Eclipse and close all instances of windows explorer in which the\android-sdk-windows\tools folder was opened 
  • Now run the AVD Manager independently as follows: 
  • Open a command prompt 
  • Go to the directory where android SDK is installed at, and then its tools subdirectory 
  • Run android.bat 
  • At this point, update just as you would if you were running the AVD Manager from within Eclipse (make sure the proxy settings are mentioned if you are behind the proxy). 


            Tuesday, December 7, 2010

            VLC player on Fedora: solved

            While installing VLC player on Fedora 10 I ran into following error:
            rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
            Retrieving http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
            warning: /var/tmp/rpm-tmp.mBuC1o: Header V3 RSA/SHA256 signature: NOKEY, key ID 16ca1a56
            error: Failed dependencies:
                system-release >= 12 is needed by rpmfusion-free-release-12-3.noarch

            I got over it by changing into this:
            rpm -ivh http://download1.rpmfusion.org/free/fedora/releases/10/Everything/x86_64/os/rpmfusion-free-release-10-1.noarch.rpm

            if it is other than x86_64, replace it with either of i386, ppc or ppc64 depending on your system architecture.To check your system architecture, run this:
            #arch

            The problem here was probably 'coz latest release of rpmfusion does not support pre versions of Fedora 12.

            Saturday, October 2, 2010

            wifi on linux : solved


            Finally got wifi up on linux.. Have been trying from 2 days reading tutorials and downloading drivers.. All you guys trying the same on FC distributions(I'm using FC10), on Dell(dual  boot),
            follow these steps[...]
            Errors welcome:)