Skip to main content

Google Pixel Chromebook: Notes

The Chromebook Pixel is a laptop at the high end of Google's Chromebook family of machines, which all come preinstalled with Chrome OS operating system.

Open Terminal

CTRL + ALT + T
Hint: T stands for Terminal
Press CTRL + ALT + T to open Chrome OS developer tool

System information

chrome://system

Chrome OS system information

How BIG is your SSD

chrome://quota-internals/
SSD Information












Commonly used keyboard shortcuts on ChromeBook

  • alt+up: page up
  • alt+down: page down
  • alt+backspace: delete
  • ctrl+shift+L: lock screen
  • ctrl+shift+Q: Quit / Sign out
Commonly used shortcuts on Chromebook
Shortcuts Action
SEARCH + L Lock screen
CTRL + L Clear terminal screen
CTRL + Windows Capture screen
CTRL + SHIFT + Windows Capture partial screen
Full list of ChromeOS shortcuts: https://support.google.com/chromebook/answer/183101

Commonly used commands in ChromeOS Shell (crosh)

crosh>help [command]
Display general help for a specific command

crosh>network_diag

Check battery information

battery_firmware   
  info   : Query battery info.
  check  : Check whether the AC adapter is connected.
           Also check whether the battery firmware is the latest.
  update : Trigger battery firmware update.
crosh> battery_firmware info
Cannot stat /run/lock.
Trying fallback directory: /tmp
ioctl -1, errno 74 (Bad message), EC result 1 (INVALID_COMMAND)
Battery info:
  OEM name:               NVT
  Model number:           ARROW
  Chemistry   :           LP
  Serial number:          1656
  Design capacity:        8500 mAh
  Last full charge:       4976 mAh
  Design output voltage   7400 mV
  Cycle count             1267
  Present voltage         7606 mV
  Present current         2055 mA
  Remaining capacity      3805 mAh
  Flags                   0x06 BATT_PRESENT DISCHARGING

Popular posts from this blog

Delete files older than 365 days

I must delete IIS *.log files in  older than 365 days. D:\Logs | -W3SVC1 -W3SVC2 -... -W3SVC33 daily-delete-logfiles-older-than-365-days.cmd :: Daily delete log files older than 365 days :: Created on: 20161120 :: Created by: :: Last modified on: :: Last modified by: :: History: SET DIRLOG=E:\_scripts\Logs\ :: Echo @path to test first :: FORFILES /P D:\Logs /S /M *.log /D -365 /C "cmd /c echo @path @fdate" :: Delete files ECHO "Begin" >> %dirlog%daily-delete-logfiles.log DATE /T >> %dirlog%daily-delete-logfiles.log TIME /T >> %dirlog%daily-delete-logfiles.log FORFILES /P D:\Logs /S /M *.log /D -365 /C "cmd /c del @path" >> %dirlog%daily-delete-logfiles.log ECHO "Finished" >> %dirlog%daily-delete-logfiles.log DATE /T >> %dirlog%daily-delete-logfiles.log TIME /T >> %dirlog%daily-delete-logfiles.log :: END of script /P : Path to folder /S: recurse into subdirectories /M *.l...

SoloLearn: Learn to Code for Free!

Got a minute? You can learn to code anywhere, anytime you can with your smartphone using Sololearn.

Powershell: Test-NetConnection

PS C:\Users\tuyen> get-help Test-NetConnection NAME     Test-NetConnection SYNTAX     Test-NetConnection [[-ComputerName] <string>] [-TraceRoute] [-Hops <int>] [-InformationLevel {Quiet |     Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] [-CommonTCPPort] {HTTP | RDP | SMB | WINRM}     [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -Port <int> [-InformationLevel {Quiet | Detailed}]     [<CommonParameters>]     Test-NetConnection [[-ComputerName] <string>] -DiagnoseRouting [-ConstrainSourceAddress <string>]     [-ConstrainInterface <uint32>] [-InformationLevel {Quiet | Detailed}]  [<CommonParameters>] ALIASES     TNC REMARKS     Get-Help cannot find the Help files fo...