Getting a blank App Center in CCSv6 on linux?
The problem is that CCS depends on the old libudev.so.0 which has been removed in e.g. recent debian and ubuntu versions. (You probably got a warning about this during install but, like me, ignored it). CCS (and afaik other applications which exhibit a similar problem) will however work just fine with libudev.so.1 so you can fix this easily:
~$ locate '*/libudev.so.1'
/lib/i386-linux-gnu/libudev.so.1
/lib/x86_64-linux-gnu/libudev.so.1
~$ sudo ln -s libudev.so.1 /lib/i386-linux-gnu/libudev.so.0
Problem solved.