Skip to main content

open Suse 11.0 beta 1 report

I have downloaded the beta 1 DVD (64bit) of OpenSuse 11.0, it takes 1 week for me (in central India) to download whole DVD. Till then beta 2 is arrived.
Installation on quite fast. I have installed kde3,kde4,lamp server and mono development, it takes 25 minute for package installation and in 30 minute my system is ready to use. Installation is quite fast. My fedora 8 installation (replace kde4 with gnome) takes more than 40 minutes to install. OpenSuse installer looks beautiful. the best thing abt installer that it offer choieces between kde3,kde4 and gnome. I it is good to give choice for kde3 because there are many application that are not ported to kde4 and also in kde4 desktop is changed very much so some people will take time to adjust with it.

Booting also quite fast. I logged in kde4. performance is quite good. kde4 is quite usable. I have used system for some time. I find beta version in good shape.
There are some bug like plasma applets crashes on logout.

It comes with flash and java preinstalled, that is what most of the people want (i'm not able to configure flash with 64 bit firefox in fedora8). It saves alot of time of user to configure newly installed system.although java applets ar not workingm even after installing 23 bit java. I hope this will be fixed in final release. among other things system is quite optimized. It look pretty even with vesa driver (no nvidia driver for 2.6.25 kernel- right now). yast package installer already listed some additional repos including packman.

Last Note: OpenSuse 11.0 seem very close to my dream desktop os.

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