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

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