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 | 💲 | 🆓 | 🆓 | 💲💲💲 | 💲💲 |
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 install \ | |
pdfarranger \ | |
okular |
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' |
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 |
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 |
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" |
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" | |
} |
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 |
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 |
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 |
NewerOlder