Features | Chrome OS | Chrome OS Flex | Linux Distros | Windows | Mac OS |
---|---|---|---|---|---|
Light work stability | |||||
Light work usability | |||||
Recoverable dev setup | |||||
Dev setup usability | |||||
Bloatware | |||||
Price |
View .chrome-remote-desktop-session
This file contains 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
# file: .chrome-remote-desktop-session | |
exec /etc/X11/Xsession 'cinnamon-session-cinnamon' |
View deps.sh
This file contains 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
sudo apt update && \ | |
sudo apt upgrade && \ | |
sudo apt install build-essential openssh-server vim |
View comparision.md
View docker-compose.yml
This file contains 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
version: '3' | |
services: | |
app: | |
build: | |
context: . | |
dockerfile: Dockerfile | |
volumes: | |
- /var/run/docker.sock:/var/run/docker-host.sock | |
- ..:/workspace:cached | |
entrypoint: /usr/local/share/docker-init.sh |
View devcontainer.json
This file contains 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
Show hidden characters
{ | |
"name": "DApp Development Environment", | |
"dockerComposeFile": "docker-compose.yml", | |
"service": "app", | |
"workspaceFolder": "/workspace", | |
"remoteEnv": { | |
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" | |
}, | |
"remoteUser": "vscode", | |
"postCreateCommand": "npm install -g truffle" |
View devcontainer.json
This file contains 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
{ | |
"name": "DApp Development Environment", | |
"dockerComposeFile": "docker-compose.yml", | |
"service": "app", | |
"workspaceFolder": "/workspace", | |
"remoteEnv": { | |
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" | |
}, | |
"remoteUser": "vscode" | |
} |
View Dockerfile
This file contains 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
FROM mcr.microsoft.com/vscode/devcontainers/base:0-bullseye | |
ARG INSTALL_ZSH="true" | |
ARG UPGRADE_PACKAGES="false" | |
ARG ENABLE_NONROOT_DOCKER="true" | |
ARG USE_MOBY="true" | |
ENV DOCKER_BUILDKIT=1 | |
ARG USERNAME=automatic |
View docker-compose.yml
This file contains 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
version: '3' | |
services: | |
app: | |
build: | |
context: . | |
dockerfile: Dockerfile | |
volumes: | |
- /var/run/docker.sock:/var/run/docker-host.sock | |
- ..:/workspace:cached | |
entrypoint: /usr/local/share/docker-init.sh |
View create_raid.sh
This file contains 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
# Install the mdadm library | |
sudo apt-get install mdadm | |
# Note down the names and UUIDs of the drives that we want to use as RAID | |
sudo blkid | |
# Create virtual RAID storage device | |
sudo mdadm --create --verbose /dev/md/vol1 --level=0 --raid-devices=4 /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1 | |
# Check if the device has been successfully created |
View configure_teamviewer.sh
This file contains 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
sudo dpkg -i teamviewer-host_armhf.deb | |
sudo teamviewer setup |
NewerOlder