Pages

Saturday, March 8, 2014

News: A major security problem with the Linux operating system.

If you read this article will see this can be one big issue.
I try to find the bug under Bugzilla. I think is already here and will solve it. Also under lib/x509/verify.c in GnuTLS before 3.1.22 and 3.2.x before 3.2.12 does not properly handle unspecified errors when verifying X.509 certificates from SSL servers, which allows man-in-the-middle attackers to spoof servers via a crafted certificate.

The GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them:
It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures. It is aimed to be portable and efficient with focus on security and interoperability.
Updated gnutls packages that fix one security issue read more about this here.

Tuesday, February 11, 2014

Simple HTML5 script and google map.

Today I found one old html script ( few ages ago ). In the past I worked with html5 and this is simple example I make it.
The 'simple script and can be use with any features of google API.
About Google API you can learn more from developers google maps.
Let's see this script :
<html>
<head>

<style type="text/css">
  html { height: 100% }
  body { height: 100%; margin: 10px; padding: 10px }
  #map_canvas { height: 50% }
</style>
<script src="//maps.google.com/maps/api/js?sensor=true" type="text/javascript">
</script>
<script type="text/javascript">
  function initialize() {
    var latlng = new google.maps.LatLng(33, 16);
    var myOptions = {
      zoom: 2,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.TERRAIN 
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"),
        myOptions);
  }

</script>
</head>
<body onload="initialize()">
  <div id="map_canvas" style="height: 50%; width: 100%;">
</div>
</body>
</html>

Fedora style - airport security OS .

... the airport computer has a new operating system ... Fedora .


Wednesday, January 15, 2014

Linux - NVIDIA has released R331.38 drivers

NVIDIA has released a new set of graphics drivers for Linux, Solaris and FreeBSD.
R331.38 comes with bugfixes and OpenGL improvements.
Also R331.38 is an OpenGL 4.4 and exposes 291 GL extensions + 28 GLX extensions. Read more about this here.

Wednesday, December 25, 2013

Moving a city to Linux would save it over €11 million.

"The Munich city authority migrated around 14,800 of the 15,000 or so PCs on its network to LiMux, its own Linux distribution based on Ubuntu, exceeding its initial goal of migrating 12,000 desktops."
... and this would save it over €11 million. You can read more about this here.

Saturday, December 21, 2013

News about google : Google Compute Engine is now Generally Available

The last newsletter from Google comes with ...

Google Compute Engine is now Generally Available with a 99.95% monthly SLA and 24x7 support. We've eliminated maintenance windows with live migration, cut prices by 10%, added support for Red Hat, SUSE, FreeBSD, or any Linux variant you want, and introduced new 16-core instances.

Google Compute Engine is Generally Available (GA), offering virtual machines that are performant, scalable, reliable, and offer industry-leading security features like encryption of data at rest.
Also, the Compute Engine supported two of the most popular Linux distributions, Debian and Centos and support for SUSE and Red Hat Enterprise Linux (in Limited Preview) and FreeBSD.



Sunday, December 1, 2013

Using SOHO LASCO C3 instrument from helioviewer website I saw the comet C/2012 S1 ISON.
I make one python script to take this image using sunpy ... (see here)