Skip to main content

OpenSuse 12.2 : Faster, better

After about 2 months delay from initial schedule, OpenSuse 12.2 finally arrived. During recent time, contribution to OpenSuse has increase a lot, so it is taking time review and accept/reject those changes, this is main cause of delay. OpenSuse is working on a mechanism to handle increased traffic. From the release announcement The latest release of the world’s most powerful and flexible Linux Distribution brings you speed-ups across the board with a faster storage layer in Linux 3.4 and accelerated functions in glibc and Qt, giving a more fluid and responsive desktop. The infrastructure below openSUSE has evolved, bringing in mature new technologies like GRUB2 and Plymouth and the first steps in the direction of a revised and simplified UNIX file system hierarchy. Users will also notice the added polish to existing features bringing an improved user experience all over. The novel Btrfs file system comes with improved error handling and recovery tools, GNOME 3.4, developing rapidly, brings smooth scrolling to all applications and features a reworked System Settings and Contacts manager while XFCE has an enhanced application finder.” I downloaded KDE live image, now start testing.

Installation

Installation went smooth without any issue all hardware detected on my Compaq CQ-62 laptop. This time I did not any warning for bootloader installation, previously I got ‘root partition is above 128GB’ for bootloader, because of that issue I did not install bootloader from OpenSuse. Thanks to Grub2 this warning no longer appears, so I went ahead and installed it and system booted properly and Linux mint from other partition is also added to the list. The installer interface is same as last version.

First Impression & Booting

It boots really faster, less than half time as compared to 12.1. OpenSuse 12.1 takes about 72 secs and 12.2 takes 30 sec. I disabled few services and it goes down to 26 secs. After installing vmware and virtualbox it went up to 40 secs, which is still better than 12.1’s 72 secs. I need to find out the way to delay loading for vmware and virualbox modules loading. Anyway, I’m sure that people can reduce boot time to 12.2 in 20 sec for normal desktop. OpenSuse 12.2 uses SystemD is default boot/init system, which is much better. All major distros are switching to SystemD, except Ubuntu, which uses an inhouse alternate Upstart.

Overall system performance is very good. I use KDE desktop, it is very responsive. OpenSuse team has worked hard to optimise KDE. The latest version of KDE at the time of release is 4.9, but included version is 4.8.4. KDE 4.9 is available in OBS repo, the reason for not including is that 4.9 is release time is too close to feature freeze date. I did not updated KDE for the time being. I’m using Kubuntu on my office laptop, but the KDE of Kubuntu is not as fast as OpenSuse.


Conclusion

Overall I’m pretty happy with the improvements and performance of 12.2. It is must faster than 12.1 and also faster than Ubutnu 12.04. Majority of performance improvement comes from improvements in kernel and some base libraries.

I’ve been using it since couple of weeks, I faced only one issue which is related AMD/ATI proprietary drivers. Recently AMD is splitted it catalyst driver, better knows as fglrx, into 2 versions, first is legacy version for Radeon HD 4xxx series and older gpu and another is for 5xxx series and higher graphics cards. Unfortunately I’ve both the cards on my laptop, the IGP of my laptop is 4250 and discrete graphics card is 5400 series card. I tried installing both version of driver but none of them worked for me. Let me know in comments if you find a way to make it work.

Comments

Popular posts from this blog

Installing Ralink 3090 wifi driver

I installed Kubuntu 10.10 on my new laptop, my laptop is Compaq CQ62- 308AX. It has Ralink 3090 wifi, which is not automatically detected by Kubuntu. Even restricted driver manager does not show any option for this device. So I downloaded the driver from Ralink site (http://www.ralinktech.com/support.php?s=2).  It is in the source format. I thought I might have to patch the kernel source. I went through the readme file and I found that I don’t have to compile kernel ( yippee an hr saved). Only device driver source is needed to be compile. These days things are much more simple. So I compiled the driver by running command “make” and installed it by “make install”.  It has compiled other ralink wifi modules along with 3090 module. After installation (using ‘make install’)  reboot the machine, reboot is not necessary in Linux after installing driver.  After reboot it loaded incorrect  rt2086 module. So I tried manually unloading and loading module using insmode...

Ideas - Better interface for yast services module

Here I'm posting an Idea to improve the interface to services module of Yast. Yast is the control panel like application in OpenSuse Linux. Yast is superb piece of software, I would say it is one of the best control panel among all OS available. The current services configuration module is not very user friendly, even simple mode is very confusion for the first time users. Other distributions have much better interface. We can borrow few things from other distros. Ubuntu services manager (USM) - The interface is too simple, does not show service running status. System-config-service (SCS) - The interface is user friendly, separate tabs for background services and on demand service, large area for description and status. Windows - Shows service status in list, option for delay start of services. I think we take few things each of theme. We can use USM interface for simple mode and SCS for advanced mode. Yast is a superb control panel application but not cool, now we should mak...

html encode/decode in drupal

Like all major CMS drupal stores text fields in encoded html format, to prevent cross site scripting attacks. Some times drupal does not process custom fields and encoded text is displayed as it is. I come across similar issue in my current project. I also post question on StackOverflow. While search for solution I come to know about decode_entities function. decode_entities converts html encoded text to more friendly text. Similary to encode special charters in text you can use check_plain. decode_entities function http://api.drupal.org/api/drupal/includes!unicode.inc/function/decode_entities/7 check_plain function http://api.drupal.org/api/drupal/includes!bootstrap.inc/function/check_plain/7 My question on StackOverflow http://stackoverflow.com/questions/14229641/rss-feeds-view-showing-encoded-special-character-in-title