Some of the features mentioned in this document only work on the beta or Dev channel. To change your channel:
- chrome://help in a browser window
- Click Detailed Build Information
- Change Channel
- Select Beta (Or Dev, if you're feeling adventurous)
- Wait for Chromebook to download an update then show icon in bottom left
- Restart when update is ready
If you have multiple accounts (Say, work and play), you can quickly sitch between them without logging out:
- Open the status area (the bottom-right menu)
- Click your account photo.
- Click Sign in another user.
- You'll see a reminder to use the feature only with people you trust. Click OK.
- Pick a person, then enter their password. You can add up to 7 users.
You can then quick-switch between users with CTRL+ALT+, & CTRL+ALT+.
Pixelbook's power button has a built-in 2fa/2sv key (think YubiKey), but it's disabled by default. If you use Two-Factor authentication on GitHub, Gmail etc, you can turn it on by entering this command on the Crosh shell (Ctrl+Alt+T):
u2f_flags u2f
- Open drawer in bottom right and click gear icon
- Scroll down to find Linux Apps or Linux (Beta) and select TURN ON
- After the install runs, you should have an application in ChromeOS called
Terminal
sudo apt-get update && sudo apt-get dist-upgradeNote: some guides out there suggest setting the root password, but you should never do that. If you need to use a feature that requires a password for root, set it on the Crostini default user instead:
sudo passwdI prefer to use an Ed25519 key.
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "my_name.pixelbook"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
cat .ssh/id_ed25519.pub
# Paste in GitHub/GitLab/etc.In order to make sure SSH agent starts automatically, and that only one ssh-agent process runs at a time, add the following to .bashrc:
if ! pgrep -u "$USER" ssh-agent > /dev/null; then
ssh-agent > ~/.ssh-agent-thing
fi
if [[ ! "$SSH_AUTH_SOCK" ]]; then
eval "$(<~/.ssh-agent-thing)"
fiI prefer to just after each reboot enter:
ssh-add ~/.ssh/id_ed25519But there are tools I've used in Linux to automatically pop up a prompt if a key hasn't been registered with the agent.
The main approach to backup is to export the entire container:
- Enable the "Crostini Backup" Flag – chrome://flags/#crostini-backup, then choose Restart
- Open chrome://settings/crostini/exportImport and select "Backup" followed by "Save". Ideally save this on a external drive.
To restore:
- Open chrome://settings/crostini/exportImport and select "Restore". Select the export archive file. After it's done the exported version of Crostini should be in place.
Now automatic between Chrome OS and Linux. You'll find Linux files/directories in the Files app, under "Linux Files".
Go to the files app and right click on Google Drive, then click "Share with Linux"
Files will be available under: /mnt/chomeos/Googledrive
Download the Linux package. Install with Linux.
If you just launch & click "Sign in" you'll eventually land at the error: "We’re sorry It looks like you are on a device that we don’t yet support."
Instead just go to https://[your-channel].slack.com/ssb/signin_redirect/fallback, click "Copy sign-in key" then launch slack, which will automatically pick up the magic key from your clipboard. Repeat for any other accounts you have.
Unfortunately Dropbox support for ChromeOS is poor. Main recommendation seems to be the third-party File System for Dropbox but it doesn't support offline access. The official Dropbox Linux client ended support for all file systems except unencrypted ext4, which rules it out for crostini. Looking into rclone.
Crostini (the Linux container on Chrome OS) understands Debian installation packages (.deb) - You can just download any installer, drag to the "Linux files" folder using the file manager and double-click it.
And, being debian you also have apt-get.
You can set up apps to be launched from icon by placing for each a desktop file in /usr/local/share/applications/. Details here.
sudo mkdir -p /usr/local/share/applicationsSome examples next
So many choices, and so manby combos of distinct and/or overlapping and/or complementary tools. I'm trying just Extraterm
mkdir ~/Downloads
cd ~/Downloads
#Update to latest release
wget https://github.com/sedwards2009/extraterm/releases/download/v0.41.0/extraterm-0.41.0-linux-x64.zip
wget https://github.com/sedwards2009/extraterm/releases/download/v0.41.0/extraterm-commands-0.41.0.zip
cd /opt
sudo unzip ~/Downloads/extraterm-0.41.0-linux-x64.zip
sudo unzip ~/Downloads/extraterm-commands-0.41.0.zip
sudo ln -s /opt/extraterm-0.41.0-linux-x64/extraterm /usr/local/bin/
sudo apt install libnss3Put extraterm.desktop in /usr/share/applications/ to get the launcher in Chrome OS:
[Desktop Entry]
Name=Extraterm
Keywords=shell;prompt;command;commandline;cmd;
Version=0.41.0
Comment=The swiss army chainsaw of terminal emulators
Exec=/usr/local/bin/extraterm
Icon=/opt/extraterm-0.41.0-linux-x64/resources/app/extraterm/resources/logo/extraterm_small_logo_256x256.png
Type=Application
Add to .bashrc the Extraterm command for shell integration, e.g. add the line:
. /opt/extraterm-commands-0.41.0/setup_extraterm_bash.shNote: You would think this should be added to .profile but for some reason Extraterm under Crostini does not run a login shell (i.e. running shopt login_shell yields off).
echo 'deb http://ftp.debian.org/debian stretch-backports main' | sudo tee /etc/apt/sources.list.d/stretch-backports.list
sudo apt update
sudo apt -y install tilix
sudo ln -s /etc/profile.d/vte-2.91.sh /etc/profile.d/vte.shAdd to path
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
source /etc/profile.d/vte.sh
fisudo apt-get install gnome-terminalAlso:
- Terminator
- mate-terminal
- combos of the above with tmux or byobu
I was using TextMate on Mac and Atom in my Linux Mint installs. I'm not much of a fan of IDEs, but VSCode seems really popular among Pixelbook users, so I'll give it a whirl.
Download the .deb installer from atom.io (or the beta version of Atom if you prefer). Click "Show in folder" right click then "Install in Linux"
Download via chrome and click through to the download location in Files app. Right click then "Install in Linux"
Some fonts can be installed using apt, for example I use Inconsolata
sudo apt-get install fonts-inconsolata -y
sudo fc-cache -fvIf you just have the font file:
- Copy .ttf file to ~/.local/share/fonts
fc-cache -vf ~/.local/share/fonts
fc-list | grep [your font name] # To verifyThe Pixelbook has a high-density display (HiDPI, roughly equivalent to the "Retina display" term if you're comming from a Mac), but not all Linux apps are prepared to appear correctly in HiDPI displays. They can appear small or have regular size with tiny cursor...
The good news is that you can use ChromeOS's built-in tool Sommelier to customize zoom levels for linux applications.
See also this reddit thread.
Many installed programs will generate a .desktop file in /usr/share/applications, it contains an app description as well as its icon and launch command.
Change Exec entries to specify Sommelier's DPI and zoom level:
[Desktop Entry]
Name=Visual Studio Code
Comment=Code Editing. Redefined.
GenericName=Text Editor
Exec=sommelier -X --scale=0.7 --dpi=160 /usr/share/code/code "--unity-launch %F"
Icon=code
Type=Application
StartupNotify=true
StartupWMClass=Code
Categories=Utility;TextEditor;Development;IDE;
MimeType=text/plain;inode/directory;
Actions=new-empty-window;
Keywords=vscode;
X-Desktop-File-Install-Version=0.23
[Desktop Action new-empty-window]
Name=New Empty Window
Exec=sommelier -X --scale=0.7 --dpi=160 /usr/share/code/code "--new-window %F"
Icon=code
Specifically for VSCode, I would also suggest adding these to your user settings
"window.titleBarStyle": "custom",
"window.zoomLevel": 2,
"editor.mouseWheelScrollSensitivity": 0.5
- Pixelbook keyboard shortcuts
- r/Crostini subreddit Wiki--huge wealth of useful info
- If your world extends beyond English-only: Choose the keyboard language & special characters on your Pixelbook
Will consider Ansible. Here's a more general Linux (Debian) example.