Last active
August 10, 2024 00:53
-
-
Save Mearman/2176985cd4ab96109ad135b8d08ec9b4 to your computer and use it in GitHub Desktop.
ChromeOS install scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # source: https://www.linuxbabe.com/ubuntu/install-resilio-sync-ubuntu-16-04-16-10 | |
| # add resilio source | |
| echo "deb http://linux-packages.resilio.com/resilio-sync/deb resilio-sync non-free" | sudo tee -a /etc/apt/sources.listdeb http://linux-packages.resilio.com/resilio-sync/deb resilio-sync non-free | |
| # download public keys | |
| wget https://linux-packages.resilio.com/resilio-sync/key.asc | |
| # import key | |
| sudo apt-key add key.asc | |
| # install Resilio Sync | |
| sudo apt update | |
| sudo apt install resilio-sync | |
| # run resilio | |
| sudo systemctl start resilio-sync | |
| sudo systemctl enable resilio-sync | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # source: https://brismuth.com/how-to-install-steam-on-a-chromebook-57174d1f1f32 | |
| echo 'deb http://httpredir.debian.org/debian/ jessie main contrib non-free' | sudo tee -a /etc/apt/sources.list | |
| sudo dpkg --add-architecture i386 | |
| sudo apt update | |
| sudo apt install steam |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # source: https://code.visualstudio.com/docs/setup/linux | |
| # install repistory keys | |
| curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg | |
| sudo install -o root -g root -m 644 packages.microsoft.gpg /usr/share/keyrings/ | |
| sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' | |
| # update and install vscode | |
| sudo apt-get install apt-transport-https | |
| sudo apt-get update | |
| sudo apt-get install code # or code-insiders |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment