Skip to main content

Lenovo Yoga 900-ISK2: shame on you, Lenovo, never again

I have posted a review of Lenovo Yoga 900-ISK awhile back in which I concluded that it's probably the ultimate choice if you need a high-end machine for running Linux. Now that it got renewed to 900-ISK2 it's no longer the case and probably nobody should buy Lenovo products if running Linux is your intention.

900-ISK2 looks really sweet on the hardware side, even faster SSD, and slightly better CPU with IRIS video card (which is probably just enough for decoding 4k HEVC video) while everything else is the same old good. Yet, a slight change in its firmware hiding the AHCI option makes it virtually unusable, locked out without possibility to change the preinstalled OS.

A thread on Lenovo forums (19 pages at the time of this writing) included both a Lenovo person promising to escalate this issue with the developers and quote from some other unknown person telling that it's been done this way per agreement with Microsoft. Someone also mentioned that it's possible to modify the bios with a programmer with only moderate soldering. After that moderators started to moderate the thread and it's now unclear whether anything will be done in any reasonable amount of time. So far the only constructive thing said was that usually bios updates in the past required from several weeks to several months.

I suppose I could wait a couple months living out of an external HDD (with usb 3.0 it's not even that slow) if I knew that it's only temporary but I'd rather try to get a refund while it's still possible.

I hope firmware will be fixed. I also hope my wife will be able to return the device for refund tomorrow. But now it's absolutely unclear what should people use instead. New zenbook with power button instead of delete? XPS with its web camera looking up your nose (besides not having enough RAM)? Noisy and overheating spectre? Overpriced and outdated macbook? Everything would be so much simpler if Lenovo just fixed this thing and not locked users out in future.

Update (Sep. 22, 2016): We managed to return the device for full refund, guys at the store didn't even give us any hard time though it required two visits to get it done. Dell XPS 13 is a likely candidate for the next purchase, it has very similar hardware specs, although the RAM thingy (8 GIB is good but not quite enough) is a possible deal breaker there.

Update (Sep. 22, 2016): Additionally, Lenovo issued a press release yesterday, stating, in effect (after you cut through the PR bullshit), that it all was intentional and they won't fix it. They are going full superfish on their customers, it seems. And the forums thread just reached 24 pages.

Update (Sep. 26, 2016): Someone started a petition to demand the update from lenovo, forums admin started deleting every post linking to it. Thread reached 30 pages.

Popular posts from this blog

「この番組は、ご覧のスポンサーの提供でお送りします」Inference Labs

It's official, I have corporate sponsors now (which will hopefully be closer to strategic partnership soon, at least I'd like that). Thanks for the steaks and wine and equipment and all other resources for my distributed hacker team (I'm hoping for a cool demo for ETHOnline hackathon), and local Web3 meatup group I facilitate in Tbilisi (steaks and gas money for everyone participating in the ecosystem), and my Web3 community support army in training. A large bag of kudos for our general sponsor: Inference Labs! If anybody needs help onboarding into the decentralised world, reach me privately and we'll help you navigating the options, we have the expenses covered and good people for this (better points of contact are being established, things are being worked on, stay tuned). I should probably tell a few words about what we actually do at Inference Labs but things change so often I hope we're still bringing decentralized AI to the Web3 world when you read this (maybe...

New horizons

I originally started this blog with ideas of reviewing devices and services and hoping that eventually if it gets popular enough somebody starts sending me stuff to review. A lot has changed since, I stopped obsessing that much about new gadgets and got into vintage electronics, many of things that were new and interesting a few years ago are a commodity now. I thought about reviewing the phone I finally got to refreshing last year (S23 Ultra is ok upgrade for Note 8, I'm glad that new ultras will finally have flat screen again, I might upgrade next year or so just for that) but I don't really feel like it or think it would mean much for the readers. Most of my vintage electronics is at home where I haven't been for a couple years and it's not something I can currently do something about, I touched a soldering iron like once or twice this year. I might post something work-related once I get the hang of what I'm actually doing there and have some rough ideas wen dece...

Using virtualenv for more than Python projects

Sorry, it's not a complete instruction, just a thought. It occurred to me (some time ago) that Python's virtualenv is, essentially, a simplified version of system "prefix", it has bin, lib, include, and can have more stuff when needed. If you're willing to experiment (you'll probably have to set a few additional environment variables and/or build flags but that's no big deal), you can install various other tools there up until you have a complete system with its own compiler and complete set of libraries although it's much simpler to keep using system compiler and libraries only complimenting them when needed. Granted, prefixes are nothing new, people were using /opt (and their home directory) this way since the beginning of time. But with little help of virtualenv-wrapper or pyenv you can easily switch between them and isolate environments better. Binaries and stuff installed in virtualenv would override system defaults but only when venv is activat...