From c95d18e9f041aca6562cc7435b4124b0094e3f0f Mon Sep 17 00:00:00 2001 From: mandar1jn <49076509+mandar1jn@users.noreply.github.com> Date: Tue, 26 Oct 2021 13:17:26 +0200 Subject: [PATCH] initial creation --- Working-on-Chrome-OS.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Working-on-Chrome-OS.md diff --git a/Working-on-Chrome-OS.md b/Working-on-Chrome-OS.md new file mode 100644 index 0000000..3d00c20 --- /dev/null +++ b/Working-on-Chrome-OS.md @@ -0,0 +1,14 @@ +NOTE: This page is still being written by mandar1jn. Please refrain from making any changes until the note is removed + +## Setting up the development environment +Chrome OS does not have a Linux console by default, but one can be installed via settings. To get started, open the Settings app and scroll down. Then expand the advanced options and scroll down until you see the Developers header. Below there should be an option to activate the Linux development environment. Once you click this button you will be prompted to enter a username and a size to allocate for linux. The default 10Gb should be enough. + +#### Install required tools +You need a **GCC** (or alternative C99 compiler) and **make**. Git should be automatically installed. + + sudo apt install build-essential + +Optionally, you could use **CMake** building system. + + sudo apt install cmake +