Skip to main content

OpenSuse 12.1 - My new primary OS

OpenSuse 12.1 was released just few days back. I was expecting it to be the update of all the components. I downloaded the KDE live CD, burn it to DVD. I normally install linux using live USB drives, created using UnetBootin utility, which method does not work well for OpenSuse. Official method of installing from Live use drive is specified here http://en.opensuse.org/Live_USB_stick. This method has a problem that if format the USB drive in ext3 filesystem, so it cannot be used as regular storage device.

Installation run smoothly, installation from Live version asked lesser questions comparatively lesser then DVD installation, like, software selection etc.. For boot loader configuration it still shows "boot loader 128 GB" error, it is there since 11.3. So decided not to install boot loader at all, I have Kubuntu 11.10 installed on other partition of the HDD, so I used that boot loader. Automatic partition detection was really smart, it properly detected my home partition and mount point was set to /home, my existing OpenSuse partition was detected and set it "format and mount point to /", this is really nice thing. Rest of the installation went smoothly.

Since I have not installed the boot loader from OpenSuse, I have to boot into Kubuntu to update boot loader configuration, I used StartUp Manager. It is a very nice utility, I don't have to do anything except running and closing this application. It automatically detect and update the boot loader configuration. Then rebooted into OpenSuse, it automatically logged into the first user. I did not find any big change in booting time, it takes about a min to get to the my KDE desktop. All my hardware and peripherals were detected properly including WiFi. I tested Audio quality by playing a couple of mp3 files and experience audio quality much better than as with 11.4 but maximum sound volume is much lower than the previous release. After first boot I was greeted by default OpenSuse KDE desktop, Since I'm using existing home partition, I was expecting same old desktop that I have configured in Kubuntu. It looks like OpenSuse is using .kde4 folder for KDE settings instead of .kde as in Kubuntu and other distros. I think because OpenSuse still supports KDE3.

Drivers and apps
The first thing is ATI drivers, I followed this instructions from OpenSuse wiki. It works fine, I was having problem getting fglrx driver working in Kubuntu. In recent few releases fglrx driver have some issues, specially related to Gnome3. I installed 11.11 version of fglrx (or Catalyst Driver Suit), it still have some problems with Gnome3. KDE has BlueDevil app for bluetooth devices, it was not included in Live CD version. BlueDevil did not work well for me, I'm not able to transfer file via bluetooth. Next task is to install multimedia applications. I'm using VLC these days as default video player. Flash player 11.1 64-bit is also available in Non-OSS repo. Other applications that I installed are Opera, Thunderbird, QBittorrent, Skype, Google Chome, Google Earth and Wine.

After using for a week, I'm pretty happy with the performance and stability of OpenSuse. Over all experience is quite smooth, much better than Kubuntu 11.10. OpenSuse KDE still remains the most polished KDE among all other distros. OpenSuse 12.1 is going to be default OS on my laptop, until I find a better OS. I'll give it 4.5 out of 5.

Comments

Popular posts from this blog

opensuse repair is awesome

I installed OpenSuse 11.1 on my machine. I have done kde4/kde3/gnome installation. It takes about 40-45 minutes. After instaltion I installed Nvidia driver, nvidia driver has installed new kernel (containing trace in name). When I changed boot order to make trace default kernel, grub is installed on root partition than MBR, so my system become unbootable. I got only 2 days of holidays. I come to know abt this problem after I returned to my work city (Indore) from Home (Khandwa). So I could not fix the problem. So I have to fix it via phone. My brother booted the system with Opensuse 11.1 dvd. My brother is not very technical person but he is advace-level PC user. We have never used recover/rescue installed system option. We selected automated recovery mode. It first checks all partitions and packages, all of them found is good state, setup found error boot loader configuration, we loaded boot loader configuration from disk and found that grub is installed on root partition instead of M...

Adding additional class to a button in drupal

Recently we were building a multi-domain site, we are using same theme for all sites but we want to have different colors for buttons for each domain. We achieved this using my overriding theme_button in template.php of theme, here is the snippet. /** * Overwrite theme_button() * @file template.php */ function mytheme_button($variables) { $element = $variables['element']; // Add some extra conditions to make sure we're only adding // the classto the right submit button Now add our custom class if (isset($element['#attributes'])) { $element['#attributes']['class'] [] = 'button'; $domain = domain_get_domain(); $element['#attributes']['class'] [] = $domain['machine_name']; } $variables['element'] = $element; return theme_button($variables); }

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...