search
HomeSystem TutorialLINUXExplore the Google Chromebook under Linux system to create a more efficient and comfortable working environment
Explore the Google Chromebook under Linux system to create a more efficient and comfortable working environmentFeb 15, 2024 pm 04:30 PM
linuxofficelinux tutoriallinux systemlinux commandshell scriptembeddedlinuxGetting started with linuxlinux learning

As a lightweight laptop, Google Chromebook has attracted much attention in the market. It uses the Chrome OS operating system based on Linux system, which can be said to be a portable device specially designed for Internet work. So, have you ever thought about running an operating system similar to Chromebook on your laptop and applying it to actual work? Today, we will introduce how to install and configure Chrome OS on Linux systems to create a more efficient and comfortable working environment.

What is a Chromebook?

Chromebooks are laptops created specifically for Chrome OS, which are themselves designed for a specific laptop model. Rather than being a general-purpose operating system like Linux or Windows, Chrome OS has more in common with Android or iOS. If you decide to buy a Chromebook, you'll find models from many different manufacturers, including HP, Asus, Lenovo, and more. Some are designed for students, while others are designed for home or business users. The main differences usually focus on battery power or processing power, respectively.

No matter which one you decide to buy, a Chromebook will run Chrome OS and provide you with the basic features you expect from a modern computer. There is a network manager to connect to the internet, Bluetooth, volume control, file manager, desktop and more.

Chrome OS desktop screenshot
探秘Linux系统下的Google Chromebook,打造更加高效舒适的工作环境

However, to get more from this simple and easy-to-use operating system, you just need to activate Linux.

Enable developer mode on Chromebook

If I make you think enabling Linux seems simple, that's because it is, but it's deceptive. It's deceptive because you must back up your data before enabling Linux.

Although this process is simple, it does reset your computer back to its factory default state. You'll have to log back into your laptop, and if you have data stored on a Google Drive account, you'll have to resync it back to your computer. Enabling Linux also requires setting aside hard drive space for Linux, so whatever size your Chromebook's hard drive is will be reduced by half or a quarter (your choice).

Accessing Linux on a Chromebook is still considered a beta feature by Google, so you must choose to use developer mode. The purpose of Developer Mode is to allow software developers to test new features, install new versions of the operating system, and more, but it can unlock special features for you that are still in development.

To enable developer mode, first shut down your Chromebook. It is assumed that you have backed up all important information on your device.

Next, press ESC and ⟳ on your keyboard, then press the power key to start your Chromebook.

ESC key and ⟳ key
探秘Linux系统下的Google Chromebook,打造更加高效舒适的工作环境

When prompted to start recovery, press Ctrl D on your keyboard.

After the restore is complete, your Chromebook has been reset to factory settings with no default usage restrictions.

Boot into developer mode

Running in developer mode means that every time you start your Chromebook, you will be reminded that you are in developer mode. You can press Ctrl D to skip the startup delay. Some Chromebooks will beep after a few seconds to alert you that you're in developer mode, making the Ctrl D action almost mandatory. In theory, this operation is annoying, but in practice, I don't boot my Chromebook that often because I just wake it up, so when I need to do it, Ctrl D is nothing more than a small step in the overall boot process .

The first time you launch after enabling developer mode, you must reset your device as if it were brand new. You only need to do this once (unless you disable developer mode at some point in the future).

Enable Linux on Chromebook

Now that you are running in developer mode, you can activate the Linux Beta feature in Chrome OS. To do this, open Settings and click Linux Beta in the list on the left.

Activate Linux Beta and allocate some hard drive space for your Linux system and applications. At its worst, Linux is pretty lightweight, so you really don't need to allocate much hard drive space, but it obviously depends on how much you plan to do with Linux. 4 GB of space is enough for Linux and a few hundred terminal commands and more than twenty graphical applications. My Chromebook has a 64 GB memory card and I gave the Linux system 30 GB, that's because most of what I do on the Chromebook is done within Linux.

Once your Linux Beta environment is ready, you can launch the terminal by pressing the Search button on your keyboard and typing terminal. If you are still new to Linux, you may not know what you can use to install the terminal you are currently in. Of course, this depends on what you want to use Linux for. If you're interested in Linux programming, you'll probably start with Bash (which is already installed and running in the terminal) and Python. If you are interested in the fascinating open source applications available in Linux, you can try applications such as GIMP, MyPaint, LibreOffice or Inkscape.

The Linux Beta mode of Chrome OS does not include a graphical software installer, but apps can be installed from the terminal. Applications can be installed using the sudo apt install command.

  • The sudo command allows you to execute certain commands with super administrator privileges (i.e. root in Linux).
  • The apt command is an application installation tool.
  • install is a command option, which tells the apt command what to do.

You must also write the name of the software package you want to install with the apt command. Take installing LibreOffice as an example:

sudo apt install libreoffice

When prompted whether to continue, enter y (representing "confirm"), and then press Enter.

Once the app is installed, you can launch it like you would launch any app on Chrome OS: just enter its name in the app launcher.

It takes some time to learn the name of a Linux application and its package name, but you can also search for it with the apt search command. For example, you can use the following method to find apps about photos:

apt search photo

Because there are many applications in Linux, you can find something that interests you and try it out!

Sharing files and devices with Linux

Linux Beta environments run in containers, so Chrome OS needs permission to access Linux files. To give Chrome OS permission to interact with files you create on Linux, right-click the folder you want to share and select Manage Linux Shares .

Linux Management Sharing Interface for Chrome OS
探秘Linux系统下的Google Chromebook,打造更加高效舒适的工作环境

You can manage sharing settings and other settings through the Chrome OS Settings program.

Chrome OS Settings Menu
探秘Linux系统下的Google Chromebook,打造更加高效舒适的工作环境

Learn Linux

Through reading this article, we have learned in detail how to install and configure Chrome OS on Linux systems, and explored its application in actual work. With its stability, security and efficiency, Chrome OS may become the choice of more and more people in the future. If you want to improve efficiency and comfort at work, you might as well try a Chromebook!

The above is the detailed content of Explore the Google Chromebook under Linux system to create a more efficient and comfortable working environment. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:良许Linux教程网. If there is any infringement, please contact admin@php.cn delete
什么是linux设备节点什么是linux设备节点Apr 18, 2022 pm 08:10 PM

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

Linux中open和fopen的区别有哪些Linux中open和fopen的区别有哪些Apr 29, 2022 pm 06:57 PM

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

linux中什么叫端口映射linux中什么叫端口映射May 09, 2022 pm 01:49 PM

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

linux中eof是什么linux中eof是什么May 07, 2022 pm 04:26 PM

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

什么是linux交叉编译什么是linux交叉编译Apr 29, 2022 pm 06:47 PM

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

linux怎么判断pcre是否安装linux怎么判断pcre是否安装May 09, 2022 pm 04:14 PM

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux中rpc是什么意思linux中rpc是什么意思May 07, 2022 pm 04:48 PM

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

linux怎么查询mac地址linux怎么查询mac地址Apr 24, 2022 pm 08:01 PM

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment