Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I think BargeOS is very great to be used on DO #92

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ It's inspired by the following projects.

- [How to build Barge](./docs/build.md)
- [Customization of Barge](./docs/customization.md)
- [Use BargeOS on DigitalOcean VPS](./docs/bargeos_on_digitalocean.md)

## License

Expand Down
15 changes: 15 additions & 0 deletions docs/bargeos_on_digitalocean.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
0. Download latest release barge.img file (13MB) from: https://github.com/bargees/barge-os/releases
0. Login and goto https://cloud.digitalocean.com/images/custom_images
0. Click "Upload Image" and select barge.img to upload
0. Create Droplets/Custom images/barge.img
0. ssh bargee@<vps ip> (password is also bargee)
0. sudo fdisk -l, found the "EndLBA" is <26635>
0. sudo fdisk /dev/vda, Command (m for help): n, Partition type: p, Partition number (1-4): 2, First sector: 26636 ... created new partition
0. sudo mkfs.ext4 -b 4096 -i 4096 -L BARGE-DATA /dev/vda2
0. sudo reboot
0. ssh bargee@<vps ip> (password is still bargee)
0. passwd (password only can be saved after we made BARGE-DATA partition)
0. sudo reboot
0. ssh bargee@<vps ip> (new password)
0. sudo pkg install nano
0. docker run -it ubuntu /bin/sh