Posts

Showing posts from January, 2009

rt73usb problem with Ubuntu Intrepid

Recently, my wireless connection seems unreliable. It keeps dropping from time to time unpredictably. I cannot just reconnect it with network-manager. I had to unplug my Linksys WUSB54GC usb stick and plug it again to work. After getting frustrated with this, I finally did a quick google search and found out that this is somewhat a know issue with as describe in https://bugs.launchpad.net/ubuntu/+bug/283759 The suggested solution is to install linux-backports-modules-generic package. I am trying it out now and I'll update this later if it works out well. UPDATE: Nope, not working for my current intrepid kernel: $ uname -rv 2.6.27-9-generic #1 SMP Thu Nov 20 22:15:32 UTC 2008 The kernel module won't even load due to some "unknown symbols" error in the syslog Next, I have also tried compiling the compat-wireless from http://linuxwireless.org/en/users/Download but also could not work. This time, the kernel modules could load, but could not connect at all due due to time...

Native 64-bit Adobe Flash Player 10 for Linux x86_64

Recently I have upgrade my machine to a Phenom 9650 with 4GB RAM. So I decided to use install Kubuntu 64-bit. However, I had to install the 32-bit libraries and nspluginwrapper for Adobe Flash Player to work as it previously only 32-bit binaries was release. Now, Adobe has released an Alpha "refresh" version of native 64-bit Flash Player to enable pure 64-bit web surfing experience! To install, first uninstall currently installed flashplayer with the following commands: sudo apt-get purge flashplayer-nonfree nswrapperplugin Then download Flash Player 10 for Linux 64-bit from here . and extract libflashplayer.so to the following directories: ~/.mozilla/plugins/ /usr/lib/firefox/plugins/ /usr/lib/mozilla/plugins/ Restart firefox and go to your favourite flash site. For me, youtube.com and various flash site works well! The only problem is that konqueror doesn't seems to like it and does not display properly and it has been reported as bug 169626 .

VirtualBox Hardware Virtualization and Nested Paging

Recently discovered that I could enable nested paging for Virtualbox 2.1. Nested paging is a new hardware virtualization extension on AMD K10 Barcelona/Phenom and Intel Core i7 Nehalem processors that allows processor to offload memory paging required by the guest OS that is traditionally done by the VM with shadow paging. Since it is a new feature, it is not available in the configuration UI yet. First, you will have to enable hardware virtualization (VT-x/AMD-V) in Settings -> Advanced. Then, nested paging can be enabled as described in the VirtualBox User Manual with the following command: VBoxManage modifyvm -nestedpaging on The performance boost is quite noticeable. The boot up time for my virtual Windows XP has drop from about 25 seconds to 18 seconds. Super PI Mod has dropped from 39.159s to 36.016s Various benchmarks on the net show performance boost up to 30%. I'll run more benchmarks next time.