Martin Maurer has announced the release of Proxmox 3.0 “Virtual Environment” edition, a Debian-based distribution offering a complete server virtualisation management solution based on KVM and containers: “We just released Proxmox VE 3.0. Its based on the great Debian 7.0 release and introduces a great new feature set….
New Long Term Stable Initiative (LTSI) Linux Kernel Released
LTSI Kernel Maintainer Greg Kroah-Hartman has released the latest version of LTSI Kernel (3.0.79-LTSI and 3.4.46-LTSI) on May 21.
The followings are the changes that have been merged for each release.
3.0.79-LTSI
• Update to 3.0.79 kernel release
• New kzm9g board-specific patches
• Updated documentation
3.4.46-LTSI
• Update to 3.4.46
• Updated documentation
• af_bus Kconfig dependancy fixed
• armadillo800 patches added
• Clock bugfix
• USB gadget fixes
• lttng bugfixes
• shmobile fixes
• marzen i2c and sata support added
• arm smp updates
• irqchip patches added
With these releases, a large amount of upstream bug/security fixes have been applied (1,368 with 3.0,79-LTSI; 944 with 3.4.46-LTSI). This should result in a dramatic reduction of in-house maintenance costs for the companies who use LTSI Kernel.
In addition to the back port of bug/security fixes, LTSI has many patch collections now that are not merged and can be very useful and easy to apply to products.
A couple resources that can be helpful when applying these patches to your products:
How to adopt LTSI Kernel to your products: https://events.linuxfoundation.org/images/stories/slides/elc2013_munakata.pdf
The new version of LTS (hence LTSI) kernel version is expected to be selected within a few months, followed shortly after by the the opening of the merge window of the new LTSI Kernel.
If any of your organizations would like your patches to be merged into the latest LTS (and LTSI) Kernel, please look for the new announcement in a few months or so.
Also, the 3.4 series will be maintained for another year. If you wish to merge your patches to 3.4, we always welcome you codes.
If there is anything we can help you, please contact us!
Tizen with GNOME 3 Shell Shown by Intel
The Tizen Developers Conference saw a glimpse of a desktop/laptop version of Tizen from Intel, the latest update to Tizen’s SDK, and an application competition launched.
Sorry, But Bringing Back the Start Menu Won’t Help Windows 8
There are plenty of legitimate concerns about the Windows 8 interface. But if you think the removal of the Start menu is the root cause of those problems, you’re mistaken. See for yourself.
Development Release: Linux Deepin 12.12 RC
The release candidate of Linux Deepin 12.12, a popular Chinese community distribution, has been released for testing and feedback. According to the release announcement (in Chinese), since the beta version the development work has revolved around addressing bug reports as well as suggestions of improvements. As a result,….
Introduction to OpenStack Part One, From Zero to Domination
This is the first article in our Introducton to OpenStack series. If you’d like to learn more about how to use OpenStack, The Linux Foundation offers OpenStack training courses.
OpenStack is a cloud software stack designed to run on commodity hardware, such as x86 and ARM. It has no proprietary hardware or software requirements, and it integrates legacy systems and third-party products. In other words you can adopt it into your existing tech infrastructure without disruption.

It was originally developed by NASA and Rackspace, and the first release was in 2010. Their intention from the beginning was to make it an open source project that anyone could use or contribute to. OpenStack is under the Apache License 2.0, and since that first release it has grown into a large community supported by over 9,000 contributors in nearly 90 countries, and more than 150 companies including Red Hat, Canonical, IBM, AT&T, Cisco, Intel, PayPal, Comcast, and a host of other names that should be familiar to most of us.
What is Cloud?
Let’s quickly review just what a computing cloud is. Cloud technologies are built on existing technologies such as virtualization and clustering to virtualize hardware, software, storage, and networking resources into flexible units that are quickly allocated to meet demand. So rather than the old static model of dedicated hardware servers for various tasks, and static network and storage configurations, all of those formerly specialized devices are assimilated into a common resource pool. It’s a more efficient use of hardware, and very fast to scale up or down according to demand. You can even configure self-service for users so they can grab whatever they need when they need it.
Private clouds are hosted on your own premises, and there are public clouds like Amazon’s EC2 and the Rackspace Cloud. You can combine private and public clouds in many useful ways. For example, keep your sensitive data locked away in your private cloud, and use a public cloud for sharing, testing, and extra non-sensitive storage.
All computing resources are shareable in a cloud, and there are three basic service models:
- SaaS, software as a service
- PaaS, platform as a service
- IaaS, infrastructure as a service
SaaS is centrally-hosted application software accessed by client software, with data typically kept on the server for access from any networked computer. Yes, just like in the olden client-server days, but the modern twist is to stuff everything through a Web browser. Using a Web browser as the client has its down sides, starting with HTTP, which was never designed for complex computing tasks, but by gosh we’re making it haul water, chop wood, and dig ditches, and it’s doing it cross-platform. SaaS is popular with software vendors because it reduces their support costs, gives them more control, and at long last supports that coveted grail of the monthly subscription model. It’s nice for customers as well, because they don’t have to hassle with installation and maintenance.
PaaS is a nice option for customers who want more control of their datacenter, but not all the headaches of system and network administration. An example of this is managed cloud Web hosting where the host takes care of hardware, operating systems, networking, load balancing, backups, and updates and patches. The customer manages the development and configuration of whatever software they want to use. It’s like sitting down to a fully-configured datacenter and getting right to work.
IaaS can be thought of as virtual bare hardware that the customer managers like a physical server, with control of all the software and configuration. You could also call it HaaS, hardware as a service.
Allrighty then, that’s enough about that. Let’s see what’s inside OpenStack.
Inside OpenStack
OpenStack is a complex beast containing multiple components. The core components are OpenStack Compute, OpenStack Glance, OpenStack Identity Service, and OpenStack Object Store.
OpenStack Compute is the virtual machine provisioning and management module. Its development name is Nova, so when you read about Nova it’s the same thing. It supports multiple hypervisors including KVM, QEMU, LXC, and XenServer. Compute is the mighty tool that controls the whole works: networking, CPU, storage, memory, creating, controlling, and removing virtual machine instances, security, and access control. You control all this from the command-line or from a graphical Web-based dashboard.
OpenStack Glance, the OpenStack Image Service, manages virtual disk images. Glance supports Raw, Hyper-V (VHD), VirtualBox (VDI), Qemu/KVM (qcow2), and VMWare (VMDK, OVF) virtual machine images, and it also supports Amazon Machine Images (AMI). You can do all kinds of cool things with Glance: stream virtual disk images, configure public and private images and control access to them, and of course create and destroy them.
OpenStack Object Store, as the name suggests, manages storage. It is a distributed storage system for managing all types of storage: archives, user data, virtual machine images, and the hardware they’re stored on. There are multiple layers of redundancy and automatic replication, so a failure in a node doesn’t result in data loss, and recovery is automatic.
The Identity Service manages users and projects.
Getting Your Hands on OpenStack
Naturally we don’t want to just look at OpenStack, but want to install and play with it. It’s designed to manage very large datacenters and handle petabytes of data, but you can install it on a PC to learn your way around it. It’s included in most Linux distributions so you can install it just like any other software, from your favorite package manager. Feel free to jump ahead and start testing it, and in our next installment we’ll run through a quick-start and basic concepts.
Build Your Own Supercomputer out of Raspberry Pi Boards
Who says you need a few million bucks to build a supercomputer? Joshua Kiepert put together a Linux-powered Beowulf cluster with Raspberry Pi computers for less than $2,000.
New Fedora Package Manager Still on Track
Last year the news circulated that Fedora was introducing a new package manager. Despite having made it into the last release, Fedora 18, DNF is still considered experimental. It is a fork of Yum that “uses libsolv via hawkey for a backed.” Developers think the DNF is the answer to their packaging woes and Rahul Sundaram recently blogged about the progress.
Linux Desktop Security Could Be A Whole Lot Better
The security researcher that uncovered a host of X.Org security issues went beyond just evaluating the X.Org libraries and looked at other Linux desktop packages too. There’s many security-related bugs outstanding within the Linux desktop ecosystem and Ilja van Sprundel believes “things could be better by several orders of magnitude.”..
HTC One ‘Google Edition’ With Stock Android Reportedly in the Works

HTC may follow Samsung’s lead and produce a “Google Edition” of its latest flagship smartphone running stock Android. According to sources that spoke to Russell Holly at Geek, work on a version of the HTC One without its Sense software customizations is underway, with a US launch said to be “imminent.” Holly previously leaked accurate information on the Galaxy S4 Google Edition ahead of its announcement at the I/O conference.
HTC’s chief product officer Kouji Kodera told The Verge last year that the company is “very proud of HTC Sense,” and would “like to continue shipping it on every device.” However, Kodera was one of many employees to recently leave HTC, and earlier this year the company released the First smartphone with the option…