Akaros® is an open source, GPL-licensed operating system for manycore architectures. Our goal is to provide support for parallel and high-performance applications and to scale to a large number of cores.

This research is supported in part by the National Science Foundation, under grants #1320005 and #1016714, and by the Department of Energy under grant #7086471.
News
Overview
Papers and Talks
Getting Started
License Info
Resources
Community
Report Bugs

Latest News


2020-12-11: I moved the website from a VM to Github Pages. All of the content is static now, not that I updated it frequently. =) On occasion, I'd get a google search that pointed me at our own LXR, FWIW. But all of the LXR, gitweb, and other useless stuff is gone. There's also a link to the Parlib site! Huzzah!

2019-10-06: Have you ever wanted to run fdisk or other Linux apps on Akaros, but couldn't? Well, now you can! Our virtual machines have progressed enough that you can run fdisk in a Linux VM on a drive. The VM is fast enough that you don't even notice. Huzzah! You can also mount ext4 partitions using the Linux kernel itself - it's the best way to access an ext4 filesystem!

2018-09-06: We updated our Go port to 1.4 and can pass all of the tests. Yes, that's far from the latest version of Go, but this includes a lot of groundwork for jumping to Go 1.10 and beyond. Check it out at git@github.com:akaros/go-akaros.git and follow the instructions in README.akaros.

2018-05-13: We overhauled our filesystem / namespace code. The old VFS is gone and replaced with infrastructure for the Plan 9 in-kernel devices. Devices that contain directories and files have the ability to mmap() files, use a page cache, and use symlinks - basically the operations that you'd expect on Linux. Mounts can use the new caching layer to mmap(), and thus exec(), binaries across a 9p channel.

In support of this new code, we added RCU and a host of bug fixes. For more info, check out the post.

2017-01-13: Our virtual machines now have networking support, similar to qemu's usermode networking. You can port-forward host ports to the guest, communicate between the host and guest, and even have the guest think it has the host's IP address. Check out kern/kfs/vnet_opts_example for the options.

2016-11-30: We added a section with a few of our papers and talks.

2016-06-28: Akaros now has limited support for perf_events. We support a basic perf stat, and you can run perf record on Akaros and analyze the perf.data file on Linux with perf report. Check out Documentation/profiling.txt for more info.

2016-04-08: We now have SSH! Get it at git@github.com:akaros/dropbear-akaros.git and follow the instructions in README.akaros.

2016-03-28: In the last year, we built a prototype virtual machine monitor (virtio-cons with a Linux guest), ported Linux's Mellanox NIC driver, added userspace epoll/select, updated our performance monitoring infrastructure, and fixed a lot of bugs. Things are moving along nicely!

2015-03-05: Despite the lack of updates to the website, we've been quite busy. We fixed many bugs and added lots of functionality. We also ported the Broadcom bnx2x NIC driver from Linux to Akaros.

2014-10-28: Akaros now passes the Go test suite, as of Go 1.3!

2014-02-08: The University of California, Berkeley, has been authorized by Alcatel-Lucent to release Plan 9 under the GNU General Public License, Version 2. The software is available for download here with this license. It is also available at this git repo.

We owe special thanks to Jim McKie and Ron Minnich; this would not be possible without their efforts.

2014-01-27: Q: What do you get when you cross a giraffe and a bunny? A: Akaros with Plan9's namespaces and networking stack!

We merged code from Inferno, a Plan9 offshoot, and still maintain our glibc libraries in userspace. While there are still many bugs and an uneasy mix of legacy VFS code alongside the Inferno code, more features work than are broken.

2014-01-23: Happy 5th Birthday, Akaros! Our repo started 5 years ago today; we've definitely come a long way! Despite the lack of news, we've been quite busy and hope to announce a couple big projects in the coming month.

2013-07-11: The 64 bit port is here! The x86_64 port (a.k.a. amd64) is quite functional at this point, with only a few minor bugs/features remaining. It'll be our default x86 version from here forward, with the 32 bit mode kept around mostly for debugging.

2013-04-26: If you haven't pulled in a while, you're missing out on many improvements: better POSIX signal handling, instructions on getting started, better measurement infrastructure, support for C++ streams, and of course a lot of bug fixes.

If you're interested in provisioning cores, check out the helper program "prov". While the kernel interface for provisioning isn't finalized, we'll keep this program in sync with whatever interface we use.

Lastly, we can run some Parsec benchmarks. For instance, fluidanimate runs slightly better on Akaros with 31 cores than on Linux with 32, and we can handle preempting cores from the app at machine speeds!

2013-01-02: We've been busy recently. Pull to find lots of bug fixes, early signalling support, and initial OpenMP support.

2012-09-25: Most of the developers were interning over the summer. Akaros development was quiet, but now we're back. We have a kernel scheduler that knows how to provision cores and preempt cores from backfilled processes. Now that we can test the preemption handling code at machine-speeds, let the bug hunt(s) commence!

2012-03-21: Single-core processes can now receive events and (more importantly) block on syscalls, using similar mechanisms that the MCPs use. While this won't help high-performance applications directly, it makes the system more usable, and it's been on the TODO list for quite a while.

2011-12-20: Userspace now has handlers that can deal with the kernel preempting/revoking vcores. The handlers deal with all sorts of deadlocks and race conditions, while making sure you don't miss messages. Second level schedulers won't need to worry about these details, so long as they use the uthread library. It's rather badass.

2011-10-11: Userspace now has MCS locks with preemption detection/recovery (called MCS-PDR locks). This will prevent MCS lock grabbers from spinning while the critical thread/vcore is preempted. Check out the details in commit bf1a334bc. It'll be a more complete solution once we have full preemption recovery for arbitrary places in the code.

2011-10-04: Multiple processes can now yield/block on outstanding events/syscalls, and the process management code can handle whatever interleavings of processes and kthreads that the scheduler desires. Check out some recent commits or the Documentation for more details!

2011-08-31: We have a paper that will appear in SOCC '11. Check out the personal version here.

2011-07-28: Akaros now has a facility to safely send an arbitrary number of messages to userspace via shared memory structures, which greatly simplifies building systems on top of event delivery. Check out the recent commit (63853fda6) that added UCQs for more details.

2011-06-07: User-level schedulers (2LSs) can now block and restart threads that submitted async syscalls that blocked, and the 2LSs can handle completion-message overflow. This exposed lots of fun bugs!

2011-04-05: Updated the description and overview, and added a link to a FAQ. Curious about something? Go ahead and ask!

2011-04-01: Added a link explaining the licenses that govern both the Akaros kernel code as well as any user space libraries written by the Akaros team. See the License Info link on the left for more information.

2011-04-01: Added some info about each of the Akaros developers. Take a look at the Developers link on the left.

2011-04-01 We finished the operating system! Just kidding. Did add a source code documentation link to the website though. Look for it under the Resources link or click here.

2011-03-31: Added information about our mailing list, IRC channel, and other useful information to the Community section of the website.Take a look under the Community link on the left for more information.

2011-03-31: Added gitweb, gitstats, and LXR Cross Referencing links for the main source repository to the website. Take a look under the Resources link on the left for more information.

2011-03-31: Filled in a basic overview and information on how to get started working with Akaros, including how to download, install, and run it on your system. Take a look at the Overview and Getting Started links on the left for more information.

2011-03-29: New Website! You're looking at it!


Problems with this page?
Email Kevin Klues <klueska@cs.berkeley.edu>
Akaros is a registered trademark of Barret Rhoden