Difference between revisions of "Mobian"
Jump to navigation
Jump to search
(Created page with "Mobile Debian project. A bunch of debos recipes for building a Debian operating system for a mobile device such as PinePhone.") |
|||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
Mobile [[Debian]] project. A bunch of [[debos]] recipes for building a [[Debian]] operating system for a mobile device such as [[PinePhone]]. | Mobile [[Debian]] project. A bunch of [[debos]] recipes for building a [[Debian]] operating system for a mobile device such as [[PinePhone]]. | ||
| + | |||
| + | == Building == | ||
| + | Prepare a [[Debian]]-based VM: | ||
| + | {{code-block|1= | ||
| + | vagrant init hashicorp/bionic64 | ||
| + | vagrant up}} | ||
| + | |||
| + | Install dependencies: | ||
| + | {{code-block|1= | ||
| + | vagrant ssh | ||
| + | sudo apt update | ||
| + | sudo apt upgrade | ||
| + | sudo apt install debos debootstrap qemu-system-x86 qemu-user-static binfmt-support | ||
| + | }} | ||
| + | |||
| + | Download the sources: | ||
| + | {{code-block|1= | ||
| + | vagrant ssh | ||
| + | git clone https://gitlab.com/mobian1/mobian-recipes.git}} | ||
| + | |||
| + | Build: | ||
| + | {{code-block|1= | ||
| + | vagrant ssh | ||
| + | cd mobian-recipes | ||
| + | sudo ./build.sh}} | ||
| + | |||
| + | {{IconFail}} ...and the build fails -_- | ||
| + | |||
| + | == External Links == | ||
| + | * [https://mobian-project.org/ Homepage] | ||
| + | * [https://gitlab.com/mobian1 Repository] | ||
| + | * [https://wiki.mobian-project.org/ Wiki] | ||
| + | * [https://forum.pine64.org/showthread.php?tid=9850 Pine64 Forum Thread] | ||
| + | |||
| + | == Previously [[Debian]] + [[Phosh]] == | ||
| + | Repository: [https://gitlab.com/a-wai/debos-pinephone gitlab.com/a-wai/debos-pinephone] | ||
| + | * [https://wiki.pine64.org/index.php/PinePhone_Software_Release#Debian_.2B_Phosh Pine64 Wiki Page] | ||
| + | * [https://forum.pine64.org/showthread.php?tid=9016 Pine64 Forum Thread] | ||
Latest revision as of 18:04, 12 September 2020
Mobile Debian project. A bunch of debos recipes for building a Debian operating system for a mobile device such as PinePhone.
Building
Prepare a Debian-based VM:
vagrant init hashicorp/bionic64
vagrant up
Install dependencies:
vagrant ssh
sudo apt update
sudo apt upgrade
sudo apt install debos debootstrap qemu-system-x86 qemu-user-static binfmt-support
Download the sources:
vagrant ssh
git clone https://gitlab.com/mobian1/mobian-recipes.git
Build:
vagrant ssh
cd mobian-recipes
sudo ./build.sh
☓ ...and the build fails -_-
External Links
Previously Debian + Phosh
Repository: gitlab.com/a-wai/debos-pinephone