Skip to main content

Ubuntu 10.04 හි 3 වන ඇල්ෆා(Lucid) නිකුතුව දැන් ලබාගත හැක.

Ubuntu 10.04 හි 3 අවසාන ඇල්ෆා නිකුතුව දැන් මේ වන විට ලබාගත හැකියි.එහි නවතම
අන්තර්ගතයන් ගැන කතා කලොත්

1.Ubuntu 10.04 සදහා 7Digital සමාගම සමඟ එක්ව Music Store පහසුකම
ලබාදීමට මෙහිදී කටයුතු කර තිබෙනවා.මෙය නැවුම් අත්දැකීමක් වනු නිසැකයි.

2.Nvidia ,Intel හා ATI වලට අවශ්‍ය Drivers මේ සමඟ එවීමට ඔවුන් තීරණය
කොට තිබෙනවා.නමුත් ඒ සදහා ඔවුන් ලබාදෙනු ලබන Nvedia Drivers සමඟ
3D පහසුකම් ලබාගැනීමේ හැකියාවක් නැහැ.ඒ සදහා ඔබ විසින්
official NVidia driver ස්ථාපනය කරගත යුතුයි.

3.හැමදාම වගේ මෙවරත් Boot හා Shut down වීමට ගතවන කාලය අඩු කර
ගැනීමට මොවුන් කටයුතු කර තිබෙනවා.

4.මේ සමගම Software Center එකෙහිද වෙනස්කම් කීපයක් දක්නට
ලැබෙනවා.ඒ සදහා PPA views හා 'Featured' category එක් කර තිබෙනවා.


5.මෙහි ඇති විශේෂ වෙනස් කමක් විදිහට Notification Area එකෙහි සිදුකර
ඇති වෙනස්කම් සැලකීමට පුලුවන්.එහිදී දී ඇති entry box මගින් ඔබගේ
Twitter ගිණුමෙහි ඇති status යාවත්කාලීන කිරීමේ හැකියාව ලබාදී තිබේනවා.

මෙම නිකුතුවත් සමඟම සියලුම latest bug fixes, security updates,
application revisions සහ kernel updates ඇතුලත් කර තිබේ.මෙය
බාගත කර ගැනීම සදහා.http://www.ubuntu.com/testing/lucid/alpha3

Comments

isaman said…
අපු ගමන් දලා බලන්නම් ..

Popular posts from this blog

How to enable proxy service security in ESB 4.9.0?

Security is  one of the major concern when we developing API base integrations or application developments. WSO2 supports WS Security , WS-Policy and WS-Security Policy specifications. These specifications define a behavior model for web services. Proxy service security requirements are different from each others. WSO2 ESB providing pre-define commonly used twenty security scenarios to choose based on the security requirements. This functionality is provided by the security management feature which is bundled by default in service management feature in ESB. This configuration can be done via the web console until ESB 4.8.1 release, but this has been removed from the ESB 4.9.0. Even though this feature isn't provided by the ESB web console itself same functionality can be achieved by the new WSO2 Dev Studio . WSO2 always motivate to use dev studio to prepare required artifacts to the ESB rather than the web console. Better way to explain this scenario is by example. Following...

How to preserving HTTP headers in WSO2 ESB 4.9.0 ?

Preserving HTTP headers are important when executing backend services via applications/middleware. This is because most of the time certain important headers are removed or modified by the applications/middleware which run the communication. The previous version of our WSO2 ESB, version 4.8.1, only supported “ server ” and “ user agent ” header fields to preserve with, but with the new ESB 4.9.0, we’ve introduced a new new property ( http.headers.preserve ) for the passthru ( repository/conf/ passthru-http.properties ) and Nhttp( repository/conf/ nhttp.properties ) transporters to preserve more HTTP headers. Passthru transporter – support header fields               Location Keep-Alive Content-Length Content-Type Date Server User-Agent Host Nhttp transport – support headers Server User-Agent Date You can specify header fields which should be preserved in a comma-separated list, as shown below. http.headers.p...

How to write a Synapse Handler for the WSO2 ESB ?

Synapse handler is new feature which come with the ESB 4.9.0. It provide abstract handler implementation to the users. User can create their own concrete handlers which is executing in the synapse layer. Main intention of this blog post is to explain how to write synapse handler and explain basic theoretical background. 1. What is the handler? Handlers are basically talking with the chain of responsibility pattern. Chain of responsibility allows a number of classes to attempt to handle a request independently of any other object along the chain. Once the request is handled, it completes it's journey through the chain. The Handler defines the interface which required to handle the request and concreteHandlers handle request in a specific manner that they are responsible for. 2. What is Synapse handler? Synapse handler is providing abstract handle implementation which executes in the following four scenarios. 1. Request in flow This is exe...