Home Blog Page 1203

Mozilla Firefox 36 Officially Arrives with Synced Pinned Tabs and HTTP/2 Support

Mozilla has just announced that its latest Firefox browser offering, 36.0, is now out and ready for download in all its glory. It might seem like just another run-off-the-mill version, but there are some features that should raise at least a few eyebrows.

The previous Firefox release was made just a month and a half ago, but that was more than enough time to finish polishing all the cool features that have made their way in. In all fairness, these features were not actually… (read more)

Read more at Softpedia News

Seagate ClusterStor Secure Data Appliance

Secure Data ApplianceThe Seagate ClusterStor Secure Data Appliance (SDA) is the HPC industry’s first scale-out secure storage system officially ICD-503 certified to consolidate multiple previously isolated systems, maintain data security, enforce security access controls, segregate data at different security levels, and provide audit trails, all in a single scale-out file system with proven linear performance and storage scalability.

 
Read more at insideHPC

Nitrux OS Is Linux Distro Running on the NXQ Mini PC, Looks Amazing – Screenshot Tour

Nitrux has presented the Nitrux OS, a Linux distribution based on Ubuntu that will power the NXQ mini ARM PC. It’s using a KDE desktop and it’s not like anything you might have seen before.

When people hear about a distro based on Ubuntu that uses KDE, they immediately think of Kubuntu. As long as there is Kubuntu around, why would there be the need for anything else? That’s not exactly the case, especially since Kubuntu uses a vanilla version of KDE and it’s not really cus… (read more)

Read more at Softpedia News

Steam Reaches 125 Million Active Accounts, 8.9 Million Concurrent Users

Well, it appears that PC gamers are growing exponentially, according to the latest numbers published by Valve.

Valve has announced today that it currently has over 125 active Steam users all across the world and that the Steam client features 4,500 games and around 400 million user-generated content pieces.
Steam considers active accounts those of members who logged in over the course of the last month, which paints an even more impressive picture.

The Steam Community… (read more)

Read more at Softpedia News

OpenDaylight Developer Spotlight: David Jorm

The OpenDaylight community is comprised of leading technologists from around the globe who are working together to transform networking with open source. This blog series highlights the developers, users and researchers collaborating within OpenDaylight to build an open, common platform for SDN and NFV.

David JormAbout David Jorm

David is a product security engineer based in Brisbane, Australia. He currently leads product security efforts for IIX, a software-defined interconnection company. David has been involved in the security industry for the last 15 years. During this time he has found high-impact and novel flaws in dozens of major Java components. He has worked for Red Hat’s security team, led a Chinese startup that failed miserably, and wrote the core aviation meteorology system for the southern hemisphere. In his spare time he tries to stop his two Dachshunds from taking over the house.
                

What projects in OpenDaylight are you working on? Any new developments to share?

I’m currently primarily working on security efforts across all OpenDaylight projects. We’ve now got a strong security response team up and running and the next step is to implement a proactive secure engineering program. This program will aim to reduce the number of security issues in OpenDaylight releases and to aid end users with documentation around security configuration and best practices. If any students are interested in contributing to this effort, I’m proposing an OpenDaylight summer internship project: https://wiki.opendaylight.org/view/InternProjects:Main#Implement_a_secure_engineering_process_for_OpenDaylight.

 

Read more at OpenDaylight Blog

Get Disk Space Email Alerts from your Linux Servers

Headless and unmonitored servers sometimes becomes a pain when your server stops responding and later you figure out it was due to 100% disk usage. This simple php script can periodicly check for disk usage and send you email alert when the disk usage is above 90%.

Step 1) You will need php-cli and come other packages too achive this. In ubuntu or debian you can do this by

apt-get update
apt-get install php-mail php-net-smtp php-net-socket php-pear php5-cli

Step 2) Create /usr/local/bin/diskspacecheck.php with the following content using your favourite editor, mine is nano 🙂

#!/usr/bin/php
<?php

require_once “Mail.php”;

/*
* FUNCTION TO SEND MAIL
*/
function SendMail($msg){
$date = date(‘r’);
$bodymsg = $msg;
$hostname = gethostname();
$hostname = preg_replace(“/[^a-zA-Z0-9_ -]/s”,”_”,$hostname);
$from = ”
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
“;
$to = ”
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
“;
$subject = “$bodymsg”;
$body = “This is an automatic alert. Please do not reply.nn$bodymsg – $date”;
$port = “465”;
$host = “ssl://smtp.gmail.com”;
$username = ”
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
“;
$password = “MyPassword”;
/*
* REPLACE
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
ANS MyPassword WITH AN ACTIVE GMAIL ACCOUNT.
*/
$headers = array (‘From’ => $from,
‘To’ => $to,
‘Subject’ => $subject);
$smtp = Mail::factory(‘smtp’,
array (‘host’ => $host,
‘port’ => $port,
‘auth’ => true,
‘username’ => $username,
‘password’ => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
echo(“<p>” . $mail->getMessage() . “</p>”);
} else {
echo(“<p>Message successfully sent!</p>”);
}
}

/*
* FUNCTION TO DISPLAY SIZE IN HUMAN READABLE FORMAT
*/

function formatSize( $bytes )
{
$types = array( ‘B’, ‘KB’, ‘MB’, ‘GB’, ‘TB’ );
for( $i = 0; $bytes >= 1024 && $i < ( count( $types ) -1 ); $bytes /= 1024, $i++ );
return( round( $bytes, 2 ) . ” ” . $types[$i] );
}

/*
* CHECK DISKSPACE FOR / PARTITION
*/

$dt = disk_total_space(“/”);
$df = disk_free_space(“/”);
$du = $dt – $df;
$dp = sprintf(‘%.2f’,($du / $dt) * 100);

$df = formatSize($df);
$du = formatSize($du);
$dt = formatSize($dt);

if ($dp > 90){
SendMail(“disk usage of / is $dp%nFree Space – $dfnDisk Usage – $dun”);
}

/*
* CHECK DISKSPACE FOR /home PARTITION
*/

$dt = disk_total_space(“/home”);
$df = disk_free_space(“/home”);
$du = $dt – $df;
$dp = sprintf(‘%.2f’,($du / $dt) * 100);

$df = formatSize($df);
$du = formatSize($du);
$dt = formatSize($dt);

/*
* THIS WILL SEND AN EMAIL ALERT WHEN DISKUSAGE IS ABOVE 90%, YOU CAN CHANGE THIS VALUE THAT SUITES YOUR REQUIREMENT
*/

if ($dp > 90){
SendMail(“disk usage of /home is $dp%nFree Space – $dfnDisk Usage – $dun”);
}

?>

Step 3) Create a cron job which will run this script daily and alert when the disk space goes low

nano /etc/cron.d/diskspacecheck30 10 * * * root /usr/bin/php -f /usr/local/bin/diskspacecheck.php

This cronjob will run this php script every day 10:30am. Change it to suit your need.

 

Swapnil Jain |
This e-mail address is being protected from spambots. You need JavaScript enabled to view it

 

 

 

How the NSA’s Firmware Hacking Works and Why It’s So Unsettling

One of the most shocking parts of the recently discovered spying network Equation Group is its mysterious module designed to reprogram or reflash a computer hard drive’s firmware with malicious code. The Kaspersky researchers who uncovered this said its ability to subvert hard drive firmware—the guts of any computer—“surpasses anything else†they had ever seen.

The hacking tool, believed to be a product of the NSA, is significant because subverting the firmware gives the attackers God-like control of the system in a way that is stealthy and persistent even through software updates. The module, named “nls_933w.dllâ€, is the first of its kind found in the wild and is used with both the EquationDrug and GrayFish spy platforms Kaspersky uncovered.

Read more at Wired.

Manjaro Gets the Latest NVIDIA Drivers with New Update

Manjaro Linux has received a new update pack and the devs have pushed a large number of important enhancements for the system. This is the second one in just a few days and it looks like the makers of Manjaro mean business.

Manjaro is based on Arch Linux, but the developers don’t use the same kind of philosophy. This means that it’s not exactly a rolling release model, but it’s not as strict as a regular release schedule either. Each update pack can bring in multiple new features and lots of … (read more)

Read more at Softpedia News

KDBUS & Other Features You Won’t Find In The Linux 4.0 Kernel

While Linux 4.0 is the next major kernel release and it does present a new lot of new functionality, there’s still a number of high profile features not mainlined…

Read more at Phoronix

Developer Gets Android Wear to Work With the iPhone

An Android developer has come up with a way to get Android Wear smartwatches to work with an iPhone – with no jailbreaking required.

Read more at ZDNet News