After unlocking the bootloader of my Motorola Atrix 4G, things went down the drain a little as things didn’t go smooth anymore. So peeking at the memory management for looking for ressource hogs, I noticed that only half of the device memory was detected. The problem is already (well) known as it is just a missing parameter at […]
Category: IT Related stuff
That’s where logic ends
The SSD for daily use
My last post was about some technical facts regarding the Crest 6 Master by Angelbird where I promised to publish some results of my daily-use test with using my Lenovo W500. First of all, keep in mind that the disk isn’t running full speed as my controller only offers 223.24 MB/sec, which is about half of the disks […]
The Need for Speed
Now it’s official – I got myself a brand new SSD disk to get a little bit more speed out of my laptop. For comparing things I did a short hdparm test with my older Seagate Momentus XT as I am too lazy to look up some kind of datasheet. Keep in mind, that disk is a hybrid […]
Two years at the W500 – and now?
My W500 isn’t really an old PC, but I have to admit that I do hit some performance limits by now. So what now? A new notebook? Geez… Looking back at the upgrades already done: The internal Harddisk drive was already exchanged: A Samsung Momentus XT, which is one of those Hybrid disks (classical disk with a SSD […]
IceCreamSandwich vs Motorola Atrix
My Motorola Atrix is running on Gingerbread which is a little outdated by now. The only way to get it updated at the current state of writing is an unofficial update to ICS/JB which is tempting because of the new functionality which I really miss here. Motorola promises an update, but so far, the discussion is pretty hot […]
MSSQL Emergency Mode
There are a few undocumented things about the MSSQL Server 2000 missing in the knowledgebase of Microsoft. That’s a way to get a database marked as suspect into emergency mode: use[master] go execute sp_configure ‘allow updates’,1 reconfigure with override go update sysdatabases set status =32768 where name =” go