Home Blog Page 1125

More Serious Security Flaws Found in Lenovo Computers

The computer maker issued a patch to prevent hackers exploiting an update app.

Read more at ZDNet News

Oculus Rift Consumer Version Coming in Early 2016, Gets Two Images

After a long wait and plenty of speculation, Oculus has just reveled the highly anticipated consumer version of its Rift virtual reality headset, alongside a firm release period of the first quarter of 2016.

Oculus amazed millions of gamers with the first version of its Rift headset, which brought virtual reality in a pretty great package, and quickly racked up millions in terms of crowdfunding via Kickstarter.

After having unleashed not one but two different developer e… (read more)

Read more at Softpedia News

Mark Shuttleworth Asks Devs from Different Desktop Environments to Work Together

Mark Shuttleworth had a very interesting keynote at the opening of the Ubuntu Online Summit for 15.10, and he said the developers from all the desktop environments should work together towards a common goal.

One of the most important aspects that Linux is criticized for is the fact that there are too many desktop environments, and the developers are not working towards a single goal. Each team sits its corner and enjoys doing what they want. Some people feel that this is th… (read more)

Read more at Softpedia News

Samsung is Building a new IoT-based Mobile Cloud Platform Artik

  Samsung Electronics is reportedly working on a new mobile cloud service called Samsung Artik, which is a Internet of Things (IoT) based cloud platform that would connect different devices made by the company. According to a trademark application that was filed with the United States Patent and Trademark Office on April 27, Samsung applied for a cloud service called Samsung Artik (serial no. 86610549). The description for the service was for a “cloud computing system to connect, manage, and operate devices, in addition to M2M communication.â€

An industry source close to the matter remarked, “Currently, Samsung is using at least three data centers of Amazon Web Services in London, Singapore, and Japan.†The source added, “The company apparently intends to enlarge data centers by negotiating with Microsoft and Oracle. Samsung’s move is closely related to its ongoing mobile cloud business.†The service could be used by Samsung to expand it offerings to consumers for an IoT system that would be aimed at smart electronics, cars, and other consumer products to communicate with each other, in addition to mobile devices. The company has already stated that it sees Tizen as an important part of its IoT strategy and new Tizen Smart things devices are in development.  

The post Samsung is Building a new IoT-based Mobile Cloud Platform Artik appeared first on Tizen Experts.

Read more at Tizen Experts

A Look At HBase, the NoSQL Database Built on Hadoop

The world is moving toward a NoSQL one. It’s requiring us to learn new techniques and approaches to working with data. We have to spend more time engineering and designing schemas. Finally, we have to know more about our database’s workings than with relational databases.

That gets us to the first difficulty of NoSQL and HBase — the lack of knowledge. What is HBase? How does it work? Why should I use it?

What is HBase?

Apache HBase is a column-oriented, NoSQL database built on top of Hadoop (HDFS, to be exact). It is an open source implementation of Google’s Bigtable paper. HBase is a top-level Apache project and just released its 1.0 release after many years of development.

 

The post A Look At HBase, the NoSQL Database Built on Hadoop appeared first on The New Stack.

Read more at The New Stack

New Relic Adds Docker Monitoring, Joins CloudFoundry Foundation

The moves give New Relic more horsepower to monitor more of the modern enterprise stack.

Read more at ZDNet News

OpenGL 4.1 Extension Implemented For Intel Mesa Sandy Bridge

In January of 2014 there was ARB_viewport_array added to the Intel Mesa driver, an extension needed for OpenGL 4.1 compliance, but at the time it was only enabled for Ivy Bridge graphics hardware and newer. Intel has now extended that support back to Sandy Bridge…

Read more at Phoronix

Sed Command in Linux – Delete Lines from a File

  1. sed“d” command lets us print specific lines based on the line number or regex provided.
  2. When ^ means beginning of the line and $ denotes end of the line, ^$ makes a “Blank Line”, very useful while removing empty lines from a file.

Read more at YourOwnLinux

Sed Command in Linux – Append and Insert Lines to a File

  1. sed“a” command lets us append lines to a file, based on the line number or regex provided. So, the lines will be added to the file AFTER the line where condition matches.
  2.  sed“i” command lets us insert lines in a file, based on the line number or regex provided. So, the lines will be added to the file AT the location where line number matches or BEFORE the line where pattern matches.
  3. sed with option -i will edit the file in place, i.e. unless you use the option -i, the changes will not be written to the file.

Read more at YourOwnLinux

Sed Command in Linux – Print Lines in a File

Here is the brief introduction of the Super sed:

  • sed stand for Stream EDitor and it being based on the ed editor, it borrows most of the commands from the ed. It was developed by Lee E. McMahon of Bell Labs.
  • sed offers large range of text transformations that include printing lines, deleting lines, editing line in-place, search and replace, appending and inserting lines, etc.
  • sed is useful whenever you need to perform common editing operations on multiple lines without using ‘vi’ editor.
  • Whenever sed is executed on an input file or on the contents from stdin, sed reads the file line-by-line and after removing the trailing newline, places it in the “Pattern space”, where the commands are executed on them after conditions (as in case of regex matching) are verified, and then printed on the stdout.

Printing Lines from a File using sed

Before we start, just remember two points:

  1. sed“p” command lets us print specific lines based on the line number or regex provided.
  2. sed with option -n will suppress automatic printing of pattern buffer/space. So, we would want to use this option. (Explained in later section)

Read more at YourOwnLinux