• Stars
    star
    191
  • Rank 201,682 (Top 4 %)
  • Language
    C
  • Created over 14 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

MonaOS is a free operating system. It's new, small, simple, open source and well structured.

What is Mona?

MonaOS is a free operating system. See detailed information on http://www.monaos.org.

screenshot

Building and Running Mona

Requirements

  • git
  • Mingw (See building Mingw below)
  • nasm
  • mkisofs
  • QEMU
  • mosh

Building

% cd mona
% ./configure --mingw-prefix=/usr/bin/i586-mingw32msvc- 
% make
% cd ..
% cd contrib
% make
% cd ../mona/tool/qemu
% ./start.sh

Building the cutting-edge Mona

% git clone git://github.com/higepon/mona.git
% cd mona
% git submodule init
% git submodule update
% cd mona
% ./configure --mingw-prefix=/usr/bin/i586-mingw32msvc- 
% make
% cd ..
% cd contrib
% make
% cd ../mona/tool/qemu
% ./start.sh

Building Mingw

If you use Ubuntu, you can get mingw as "apt-get install mingw32". If you use other OS or need the latest gcc, build as follows. You need

  • gcc-4.6.1.tar.bz2
  • binutils-2.21.1.tar.gz
  • w32api-3.17-2-mingw32-dev.tar.lzma
  • mingwrt-3.18-mingw32-dev.tar.gz

Build

% export CC=clang    # For OSX only
% export CXX=clang++ # For OSX only
% export PATH=~/mona-mingw/bin/:$PATH
% mkdir ~/mingw
% cd ~/mingw
% tar vxf ~/src/w32api-3.17-2-mingw32-dev.tar.lzma
% tar vxf ~/src/mingwrt-3.18-mingw32-dev.tar.gz
% mkdir -p ~/tmp/build-gcc
% mkdir -p ~/tmp/build-binutils
% cd ~/tmp
% tar vxf ~/src/gcc-4.6.1.tar.bz2
% tar vxf ~/src/binutils-2.21.1.tar.gz
% cd ~/tmp/build-binutils
% ../binutils-2.21.1/configure --prefix=~/mona-mingw --target=i586-mingw32msvc
% make && make install
% cd ~/tmp/build-gcc
% ../gcc-4.6.1/configure --prefix=~/mona-mingw --target=i586-mingw32msvc --disable-nls \
  --disable-shared --disable-multilib --disable-decimal-float --disable-threads \
  --disable-libmudflap --disable-libssp --disable-libgomp --disable-libquadmath \
  --disable-target-libiberty --disable-target-zlib --enable-languages=c,c++ \ 
  --without-ppl --without-cloog  --with-headers=~/mingw/include --with-libs=~/mingw/lib \
  --with-as=~/mona-mingw/bin/i586-mingw32msvc-as --with-ld=~/mona-mingw/bin/i586-mingw32msvc-ld \
  --enable-sjlj-exceptions --enable-version-specific-runtime-libs

And then configure Mona with "export PATH=/mona-mingw/bin/:$PATH; ./configure --mingw-prefix=/mona-mingw/bin/i586-mingw32msvc- && make"

More Repositories

1

mosh

Mosh is a free and fast interpreter for Scheme as specified in the R6RS.
Rust
171
star
2

tensorflow_seq2seq_chatbot

Python
79
star
3

Swift-UIKit-Extensions

Extensions for UIKit in Swift
Swift
65
star
4

mio

In short, mio is memcached + "range search".
Erlang
40
star
5

mml

My notes for "Mathematics for Machine Leaning" book
25
star
6

twitter_conversation_crawler

Twitter Conversation Crawler
Python
23
star
7

memcached-client

A memcached client library for Erlang.
Erlang
19
star
8

spon

Scheme Portable Library Network
Scheme
15
star
9

tiny_scheme

tiny scheme written in Scala
Scala
9
star
10

mcbench

Memcached benchmark tool written in Erlang
Erlang
8
star
11

Spark-Core-Examples

Spark Core Examples step by step
Swift
8
star
12

Scheme-rbtrees

Red-Black trees
Scheme
6
star
13

AVL_tree

OS independent AVL tree implementation in C++
C++
4
star
14

bdf_parser

BDF font parser. The parser is used on open source OS Mona (http://www.monaos.org).
C
4
star
15

Scheme-junk-scripts

Junk Scheme R6RS scripts which work on Mosh Scheme
Scheme
4
star
16

kucho

hack! hack!
Java
3
star
17

binary_search_tree

A simple OS independent Binary Search Tree class.
C++
3
star
18

Lovamimi-For-Android

Lovamimi(http://lovamimi.com/) App for Android
Java
3
star
19

UITextViewPlusPlus

This is just experiment.
Objective-C
2
star
20

Swift-UIView-Extensions

Extensions for UIView in Swift
Swift
2
star
21

EM_Algorithm_MixGaussians

R
2
star
22

Erlang-cost-of-call

Measure cost of call, gen_server:call and rpc:call
Erlang
1
star
23

gtypist_us_keys

gtypist Lessons for US keyboard
1
star
24

first_fit_allocator

OS independent memory allocator which uses "first fit" aloghorithm
C
1
star
25

Scheme-shorten

This library provides a short alias for lambda expression.
Scheme
1
star
26

Machine-Learning-Design-Patterns

My notes when reading a book "Machine Learning Design Patterns"
Jupyter Notebook
1
star
27

Swift-UIColor-Hex

Create UIColor by hex value in Swift
Swift
1
star
28

gor

gor which stands for "Green or Red", shows your test result with color as a filter.
1
star
29

collaborative-filtering

collaborative filtering implementations
Scheme
1
star
30

predictors

Some predictor implementations using collaborative filtering algorithms.
C++
1
star
31

clipping

Clipping implementation and tests used for Open Source OS Mona (http://www.monaos.org/)
C++
1
star
32

scala_practice

My scala practices
Scala
1
star