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: about 1 year 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-27T16:35:56.000Z (almost 6 years ago)
- Last Synced: 2025-01-22T23:28:41.265Z (about 1 year 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 --purge
sudo add-apt-repository ppa:gophers/archive
sudo apt-get update
sudo 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-dev
sudo apt-get install libpixman-1-dev
```
#### step 7: Install qemu
```
sudo wget https://download.qemu.org/qemu-5.0.0.tar.xz
sudo tar xvJf qemu-5.0.0.tar.xz
sudo cd qemu-5.0.0
sudo ./configure
sudo make
```
### Buld the project
`
make run-qemu
`