toaruos/README.md

142 lines
8.0 KiB
Markdown
Raw Normal View History

2011-01-22 12:07:09 +03:00
# ToAruOS (とあるOS) #
2011-08-22 19:14:22 +04:00
2013-04-15 10:17:52 +04:00
![Screenshot](http://i.imgur.com/76EmahO.png)
2013-04-15 10:25:07 +04:00
[![login](http://i.imgur.com/GzbYtzGm.png)](http://i.imgur.com/GzbYtzG.png) [![terminal](http://i.imgur.com/XsxqLkwm.png)](http://i.imgur.com/XsxqLkw.png)
2013-04-15 10:17:52 +04:00
2013-04-05 08:18:25 +04:00
とあるOS (ToaruOS) is a hobby Unix-like operating system. Development began in December of 2010 at the University of Illinois at Urbana-Champaign and is currently a one-man effort. For a short time, the project was the focus of the UIUC [SIGOps](http://www.acm.uiuc.edu/sigops/).
2011-01-16 04:03:53 +03:00
2013-04-05 08:18:25 +04:00
Both the kernel and userspace are included in this repository.
2012-08-29 09:38:31 +04:00
2013-04-05 08:18:25 +04:00
## Community
2012-08-29 09:38:31 +04:00
### IRC ###
2012-12-04 08:40:29 +04:00
For discussion, help with building or running the OS, and for up-to-date build verification, please join us in `#toaruos` on Freenode (`irc.freenode.net`).
2012-02-16 12:02:09 +04:00
## Features ##
2013-04-05 08:18:25 +04:00
The とある kernel provides a number of standard features, including:
2012-02-16 12:02:09 +04:00
2013-04-05 08:18:25 +04:00
* Processes and threads
* The kernel supports loading of static ELF binaries
* Threads are scheduled by the kernel
2012-02-16 12:02:09 +04:00
* Shared memory
2013-04-05 08:18:25 +04:00
* Pipes and TTYs
* Virtual file system
* `/proc` implementation similar to Linux
* `/dev` entries
* EXT2 filesystem for disk access
2012-02-16 12:02:09 +04:00
* Signals
2013-04-05 08:18:25 +04:00
* Delivery is asynchronous from sending
* Processed immediately during next context switch into receiving process
2013-04-05 08:18:25 +04:00
The included userspace also provides:
2013-04-05 08:18:25 +04:00
* A number of standard Unix utilities
* A graphical interface
* Composited window manager
* Limited widget toolkit
* Terminal emulator
2013-04-07 08:54:42 +04:00
* Some xterm compatibility, support for 256 color palette, etc.
2013-04-05 08:18:25 +04:00
* Anti-aliased text with FreeType
* General support for UTF-8
2013-04-05 08:18:25 +04:00
### Third-Party Software ###
2013-01-28 06:23:10 +04:00
2013-04-14 12:06:32 +04:00
とあるOS makes use of and supplies the following third-party packages:
2013-01-28 06:23:10 +04:00
* `libpng` - Used extensively by the native graphics library to provide wallpaper and icons.
* `zlib` - Dependency of `libpng`, but also generally useful.
2013-04-14 12:06:32 +04:00
* `freetype` - For rendering text using TrueType fonts.
2013-01-28 06:23:10 +04:00
* `cairo` and `pixman` - For accelerated and managed graphics.
2013-04-14 12:06:32 +04:00
* `ncurses` - Terminal control library, provides `terminfo`.
* Mesa - Implementation of OpenGL (only the software rasterizer is available).
* Vim - Popular text editor.
2013-04-14 12:06:32 +04:00
Additionally, a number of third-party software packages have been ported to とあるOS, but are not yet included in this distribution:
2013-04-05 08:18:25 +04:00
* Lua - Builds as-is
* MuPDF - See [klange/toaru-pdfviewer](https://github.com/klange/toaru-pdfviewer) (library must be cross compiled)
## Screenshots ##
2012-02-16 12:02:09 +04:00
2013-04-15 10:17:52 +04:00
For a historical look at とあるOS, please see [SCREENSHOTS.md](SCREENSHOTS.md).
2011-01-16 04:03:53 +03:00
## Testing it Out ##
2013-04-07 08:54:42 +04:00
From some Linux hosts (Ubuntu/Debian, Fedora), you can clone the repository and run:
2012-08-16 04:47:34 +04:00
./build.sh
2013-02-26 07:59:22 +04:00
This will install the required dependencies, build the userspace libraries and toolchain, build the kernel, and give you a hard disk image.
2012-08-16 04:47:34 +04:00
2013-02-26 07:59:22 +04:00
You can then run `make run` or `make kvm` to run QEMU. An additional `make run-config` command is available that allows easy customization of the emulation environment through a config file (`.config`, see `util/config-parser` for available options).
2013-04-05 08:18:25 +04:00
While we only officially support QEMU, other environments - including actual hardware - should work given the appropriate tools. If you are eager to try とあるOS from a real machine, please use GRUB 2 and ensure that you provide the correct graphics payload options. You may find a sample GRUB configuration the `image-builder` directory.
2011-01-20 09:27:11 +03:00
### User Accounts ###
2012-09-20 08:16:21 +04:00
The default root password is `toor`. There is also a regular user `local` with password `local`. While general system security is lacking, most system-modifying calls to the kernel require root privileges. When booting directly to a graphical terminal, the system will run in single-user mode and automatically log in as root. When running in graphical or VGA-terminal mode, a login screen is presented.
2012-12-04 08:40:29 +04:00
### Cygwin ###
With some work, とあるOS is also known to build successfully under cygwin. Instructions are forthcoming.
2013-04-07 08:54:42 +04:00
### Making modifications
If you have made modifications to the kernel or userspace, `make` will suffice to build a new image and kernel. `build.sh` should only be used once when first cloning. If you have made modifications to the system call bindings for newlib, run `rebuild-newlib.sh` from the `toolchain` directory, then rebuild userspace applications as necessray.
2012-12-04 08:40:29 +04:00
### Prebuilt Images ###
2013-04-05 08:18:25 +04:00
Unfortunately, we are no longer able to host prebuilt images through GitHub. We are exploring other options for distributing pre-built images and are also working to provide an ISO distribution.
2013-02-26 07:59:22 +04:00
2013-04-05 08:18:25 +04:00
### Building an Image for VirtualBox, etc. ###
An experimental, unsupported image building tool that will produce a "production-ready" image, including GRUB 2, is provided in the `image-builder` directory. The script, `create-image.sh`, must be run as root and will produce a 1GB raw disk image which be converted to other formats as needed.
2013-02-26 07:59:22 +04:00
## Troubleshooting
If you have any issues at all while attempting to build とあるOS, or you would like help building on an unsupported platform, please join us on IRC (`#toaruos@irc.freenode.net`). Problems encountered while using the build scripts in an unsupported environment will not be considered bugs until thoroughly examined.
2011-03-18 22:23:17 +03:00
## Dependencies ##
2013-04-07 08:54:42 +04:00
A toolchain is provided and can be built through `build.sh`; this script should be able to install its own dependencies on Ubuntu/Debian and Fedora. Other environments are not supported, but examination for the script should provide a reference point on what packages are necessary.
2013-04-05 08:18:25 +04:00
2013-06-07 08:59:20 +04:00
The build process generally requires `yasm`, a working C compilation environment to build a cross toolchain of GCC and binutils, and `genext2fs` to generate EXT2 disk images from your host's userspace.
2011-01-20 09:27:11 +03:00
## References ##
2012-01-28 23:12:11 +04:00
Here are some tutorials we found useful early on:
2011-01-20 09:27:11 +03:00
2012-01-28 23:12:11 +04:00
* [James M's kernel development tutorials](http://www.jamesmolloy.co.uk/tutorial_html/index.html)
2012-12-04 08:40:29 +04:00
* [Bran's Kernel Development Tutorial](http://www.osdever.net/bkerndev/Docs/basickernel.htm)
* [Skelix's OS tutorial](http://skelix.net/skelixos/index_en.html)
2011-01-20 09:27:11 +03:00
2012-02-16 12:02:09 +04:00
# Licenses #
## ToAruOS Itself ##
2011-01-29 01:53:00 +03:00
This project is released under the terms of the University of Illinois / NCSA Open Source License, an OSI- and FSF-approved, GPL-compatible open source license. The NCSA License is a derivative of the MIT license and the BSD license; it is reproduced here for your convenience:
2011-01-29 01:53:00 +03:00
2013-04-14 12:06:32 +04:00
Copyright (c) 2011-2013 Kevin Lange. All rights reserved.
2011-01-29 01:53:00 +03:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal with the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimers.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimers in the
documentation and/or other materials provided with the distribution.
3. Neither the names of the ToAruOS Kernel Development Team, Kevin Lange,
nor the names of its contributors may be used to endorse
or promote products derived from this Software without specific prior
written permission.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
WITH THE SOFTWARE.
2011-04-15 05:49:36 +04:00
2013-04-14 12:06:32 +04:00
## Third-Party Packages ##
2013-04-14 12:06:32 +04:00
ToAruOS contains a number of third-party packages and software. As the number of third-party packages in the OS has increased drastically, I have moved the licenses to [THIRDPARTY.md](THIRDPARTY.md).