Skip to content
Apr 13 14

How to get a romless MXM card to work without BIOS support in Ubuntu using Nouveau

by peterdk

I had bought a romless Geforce 9600M GT 1GB MXM II card by accident, and really wanted to see if I could get it to work on my Acer Aspire 7720G laptop.

In the past I have tried many times to integrate the vbios into the Acer bios of my laptop. Unfortunately, even though I am very sure I have used the correct vbios and also inserted it in a correct way, the laptop still wouldn’t boot with visual output.

Recently I retried this process, and it still didn’t succeed. Luckily I came across a bug report that showed that with Nouveau (the Linux Open Source Nvidia driver) it’s possible to specifiy the vbios that Nouveau loads. So basically you can start the videocard with any bios you supply from disk. This gave hope to be able to at least test the videocard before selling it to someone else who had a proper supported laptop.

Basically what I did was prepare a external harddrive with a ubuntu installation that had SSH enabled, so I could login to the laptop after it was booted (we have no graphics, so we can’t see anything otherwise). After booting up I copied the proper vbios file using WinSCP and then copied that file to /lib/firmware. Then I removed the nouveau module and reinserted it into the kernel with the vbios file as argument.

sudo rmmod nouveau
sudo modprobe nouveau config=NvBios=vbios.rom

It did load! We still had no visual output, but dmesg | grep nouveau did show that the card was detected, and everything was ok. The only thing left to do was to restart X11, which you can do by restarting lightdm on Ubuntu. sudo /etc/init.d/lightdm restart. And wow, it just worked! Suddenly the mouse pointer came up and the ubuntu desktop loaded. Everything worked without problems, also lmsensors did display the temperature of the card etc. Really really great!

Still, you have no output in the bios/the boot process etc. But this way you can definitely test if a romless card works or is faulty.

Note that this ‘trick’ only works for Nvidia cards, since Nouveau is the open source driver for Nvidia cards. It might be that the open source AMD drivers have a similar option.

Jan 18 14

Geekbench on 64 bit Ubuntu 13.10

by peterdk

Geekbench (32 bit, try-out mode) won’t run out of the box on ubuntu 13.10 64 bit (or maybe also earlier versions). This is due to the removal of ia32-libs and switching to multiarch. Fortunately it’s easy to fix:

sudo apt-get install libc6:i386 libstdc++6:i386

This will install the required 32 bit libraries you’ll need to run geekbench in 32 bit mode.

Happy benchmarking!

Sep 29 13

Asus DSX on Ubuntu 13.04 Server

by peterdk

I have a DSX card in my server that worked ok on Windows, however I have now switched to Ubuntu.

Although the ALSA page states that the DSX card has no driver yet, it turns out this is not the case. Ubuntu 13.04 has it in it’s kernel, so you only have to install alsa to get going.

For ALSA install instructions on the server: see this weblog
Only the 4 first steps are needed.

Main issue I had was that although

aplay -l

did show the Asus card as card 0, it did not produce any sound. I used

alsamixer

to set all the volumes to 90, but still nothing was heard. It turned out although you can move the sliders it still is “MM” (muted). Press

M

on the front channel and now it should produce sounds!

Aug 21 13

Addons Detector 3.8 released

by peterdk

We just released Addons Detector 3.8. Main improvement is a Spanish translation kindly contributed by one of our Spanish users.

Currently Addons Detector has 220.000 active users and is downloaded more than 500.000 times. We really enjoy working on it, and hope to stay on top as the best way to detect nasty advertising spam and other less intrusive SDK’s!

 

May 30 13

Timer tasks as memoryleak cause in Android

by peterdk

I was struggling today with a memoryleak in a application I am building for a client. The app is very heavy on memory, because it uses a lot of images.

It took me more than a hour to find the cause of it. It turns out that I didn’t cancel my Timer.scheduleAtFixedRate() TimerTask that updated a dynamic part of my UI.

If you are struggling with memoryleaks as well, make sure you install the eclipse addon : “Memory Analyzer”. If you have that one installed, you can use DDMS in Eclipse to dump a hprof file, which automatically get’s opened and you can then get lots of usefull info on your leaks. Use the “dominator tree” to show the largest items in memory, and right click on them and select “Path to GC roots => With all references” This shows what’s keeping them in memory.

I couldn’t find my leaks at first, because the Path to GC roots, didn’t include any obvious Context leaks or so (the normal stuff that causes memory leaks: static Context/Activity values).  However, after an hour I realized that the “TimerTask” I first dismissed as some Android internal stuff, actually was the cause of my issues.

I then made sure to “cancel()” my timertask in my activity’s “onDestroy()” method, and things turned to normal!

Mar 14 13

Install Xonar DSX on Windows 2012 Server

by peterdk

I have a little home server running in my livingroom, and I recently installed Windows 2012 Server on it. Because it’s always on I figured I could use it as a Airtunes receiver too. I installed shairport4w as a service and now it runs great!

However, I wanted to try a better soundcard for it, so the audio quality would be even better. Therefor I bought a Xonar DSX.

Unfortunately this soundcard wouldn’t install when I ran the windows 8 drivers. It gives a message that the OS is not supported. Strange, since it’s the same as Windows 8. Probably a case of a little too strict checking.

Anyway, solution to install Xonar windows 8 drivers on windows 2012:

  1. Download Windows 8 driver for your Xonar card.
  2. Extract the zip file.
  3. Open the win8 dir (do not run setup in the dir above it)
  4. Edit the file CmSetx.dll with notepad. (it’s not a binary file, just a txt file)
  5. Change the line with  SupportOS to “SupportOS=donotcare”
  6. Save and run the setup in the same folder.
  7. It will now install and work ok!

This will probably also work with DGX, DG, DS, and other Asus Xonar cards.

Dec 19 12

Amazon App Store linking to all your apps stopped working…

by peterdk

According to the docs about Amazon’s Appstore, linking to your app is quite easy. An example for a link to a package is:

Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(“http://www.amazon.com/gp/mas/dl/android?p=” + packageName));

However, the docs also state that you can link to all your apps by adding a parameter to the url.

i.setData(Uri.parse(“http://www.amazon.com/gp/mas/dl/android?p=” + packageName+”&showAll=1“));

This used to work, and I used it to link my Amazon users to all my apps.

However, I was debugging my app and today I suddenly found that this all apps linking doesn’t work anymore on my Kindle Fire. I also downloaded the latest amazon appstore to my emulator, and it also didn’t work there. So, somehow a update of the store app apparently has a regression in it. I doubt it’s intentional.

Nov 6 12

Fretter 1.4 for iOS brings new reverse finder!

by peterdk

The update for Fretter to make it more like it’s brothers on Android and Windows Phone is almost done.

Fretter 1.4 for iOS features a new reverse finder where you can select the notes on a fretboard, instead of using a pickerview.

 

Oct 31 12

Fretter Reverse Finder update for Windows Phone 7 is coming

by peterdk

WP7 users can rejoice, reverse chordfinding with Fretter is going to be just as easy as on the Android version!

Will be released in a few weeks.

update

The 1.9 version with this new reverse finder is live!

Oct 30 12

Fretter for iOS 1.3.3 submitted for review

by peterdk

Fretter for iOS 1.3.3 has been submitted to Apple for review.

It fixes a crash in the instrument selection view related to custom tunings.

Update

Fretter 1.3.3 has been approved and is available now.