Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sriharikapu/goos-e
Goose is a GO Lang based operating system - its experemental
https://github.com/sriharikapu/goos-e
c compiler go golang goos operating-system os
Last synced: 2 days ago
JSON representation
Goose is a GO Lang based operating system - its experemental
- Host: GitHub
- URL: https://github.com/sriharikapu/goos-e
- Owner: sriharikapu
- Created: 2020-05-27T09:04:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-27T16:35:56.000Z (over 4 years ago)
- Last Synced: 2024-11-22T11:42:13.628Z (2 months ago)
- Topics: c, compiler, go, golang, goos, operating-system, os
- Language: Go
- Homepage:
- Size: 157 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# goos-e
Goose is a GO Lang based operating system - its experemental### Installation steps
#### step 1: Install buildutils
`
sudo apt-get install -y binutils-common`#### step 2: Install xorriso
`
sudo apt-get install -y xorriso`#### step 3: Install grub
`
sudo apt-get install grub-pc`#### step 4: Install nasm
`
sudo apt-get install -y nasm`#### step 5: Install GOLang
```
sudo apt-get remove golang --purgesudo add-apt-repository ppa:gophers/archive
sudo apt-get updatesudo apt-get install golang-1.8
sudo ln /usr/lib/go-1.8/bin/go /usr/bin/go1.8
```#### step 6: Install libglib, libpixman
```
sudo apt-get install libglib2.0-devsudo apt-get install libpixman-1-dev
```#### step 7: Install qemu
```
sudo wget https://download.qemu.org/qemu-5.0.0.tar.xzsudo tar xvJf qemu-5.0.0.tar.xz
sudo cd qemu-5.0.0
sudo ./configure
sudo make
```### Buld the project
`
make run-qemu
`