FydeOS is a Chromebook-like system where you can run Linux alongside the main operating system
FydeOS is a modified version of Chrome OS that runs on older laptops and Chromebooks. Unlike standard Chrome OS, FydeOS includes a built-in Linux container — a separate, isolated environment where you can install and run Linux programs without replacing the main system. You do not need to wipe your device or choose between FydeOS and Linux. Instead, you enable Linux once, and both run at the same time.
This matters for security because Linux gives you access to different tools and more direct control over what runs on your machine. If you want to use security software, privacy tools, or programs that only exist for Linux, you need to know how to turn on the Linux layer that FydeOS provides. The process takes about 10 to 20 minutes and requires a terminal window — a text-based interface where you type commands.
Key Takeaways
- FydeOS has a built-in Linux container that you enable through the Settings menu, not by downloading or installing a separate operating system.
- Enabling Linux requires you to set a username and password, which becomes your Linux login separate from your FydeOS account.
- Once Linux is on, you can install programs using the Linux terminal, but those programs run in an isolated container and cannot access your FydeOS files by default.
- The Linux container takes up about 10 to 15 gigabytes of storage, so check your available space before you start.
- You can turn off Linux at any time through Settings, and doing so does not delete your FydeOS data or settings.
Check your storage space and FydeOS version before you begin
Open the Files app on your FydeOS device and look at the storage meter in the left sidebar. Linux needs at least 10 to 15 gigabytes of free space to install properly. If you have less than that, delete old downloads, clear your browser cache, or move files to cloud storage first.
Next, check which version of FydeOS you are running. Click the clock in the bottom right corner, then click the settings icon (a gear). Scroll down and select "About FydeOS". Write down the version number — if it is older than version 14, some steps may look different, but the Linux container feature exists in all recent versions.
Enable Linux through the Settings menu
Open Settings by clicking the clock and then the gear icon. Scroll down the left sidebar until you see "Linux development environment" or "Developers" — the exact name varies by version. Click it.
You will see a button that says "Turn on" or "Enable". Click it. FydeOS will ask you to create a username and password for your Linux account. This username and password are separate from your FydeOS login — you use them only when you open the Linux terminal. Choose something you can remember, because you will need it to install programs later.
FydeOS will now read and set up the Linux container. This takes 5 to 15 minutes depending on your internet speed. Do not close the Settings window or turn off your device during this time. You will see a progress bar. When it finishes, you will see a message saying Linux is ready.
Open the Linux terminal and verify the installation
Once Linux is enabled, a new app called "Terminal" appears in your app drawer. Click the app grid icon (usually in the bottom left), search for "Terminal", and click it. A black window with white text will open — this is the Linux terminal.
Type this command and press Enter: uname -a
If Linux is working, you will see a line of text that includes the word "Linux" and some version information. If you see an error instead, close the terminal and go back to Settings to check that Linux finished installing.
Install programs using the Linux package manager
Linux programs are installed through a package manager — a tool that downloads and sets up software for you. FydeOS uses a package manager called apt. Before you install anything new, update the package list by typing this command in the terminal:
sudo apt update
Press Enter. You will be asked for your Linux password — the one you created when you enabled Linux. Type it (the text will not appear as you type, which is normal) and press Enter. This downloads a list of available programs.
To install a program, type sudo apt install [program name] and press Enter. For example, to install a text editor called nano, you would type sudo apt install nano. The terminal will ask "Do you want to continue?" — type y and press Enter. The program downloads and installs automatically.
Understand what Linux can and cannot access on your FydeOS device
Linux runs in an isolated container, which means programs inside Linux cannot see your FydeOS files, passwords, or browsing history by default. This is a security feature — if a Linux program is compromised, it cannot reach your FydeOS data.
If you need a Linux program to work with a file you created in FydeOS, you have two options. You can move the file to a shared folder that both systems can see, or you can open the file directly from the Linux terminal if you know its path. For most users, the easiest approach is to keep FydeOS files in FydeOS and Linux files in Linux, and only share files when you have a specific reason to.
Turn off Linux if you need the storage space back
If you decide you no longer need Linux, you can disable it without losing your FydeOS data. Open Settings, go to "Linux development environment", and click "Turn off". FydeOS will ask you to confirm. Click "Remove" to delete the Linux container and free up the 10 to 15 gigabytes it was using.
If you turn Linux back on later, you will need to set up a new username and password, and any programs you installed will be gone. Your FydeOS files, settings, and accounts remain unchanged.
Frequently Asked Questions
Do I need to back up my files before I enable Linux?
No. Enabling Linux does not touch your existing FydeOS files or settings. The Linux container is separate and isolated. You can turn it off at any time without losing anything.
What if the Linux installation fails or gets stuck?
Close the Settings window and restart your device. Once it boots up, go back to Settings and try enabling Linux again. If it fails a second time, check that you have at least 15 gigabytes of free space and a stable internet connection. Some networks block the downloads Linux needs — if you are on a school or work network, try a different connection.
Can I use Linux programs to browse the web securely?
Yes. You can install web browsers like Firefox directly into Linux. Because Linux runs in a container, a browser installed there keeps its own separate cookies, passwords, and browsing history, isolated from your FydeOS browser. This is useful if you want to keep work and personal browsing separate, or if you want to test how websites behave in a different environment.
Will Linux slow down my FydeOS device?
Not noticeably, as long as you are not actively running Linux programs. The container sits idle when you are not using the terminal. If you run a Linux program that uses a lot of processing power, your device may slow down while that program is running, just as it would if you were running a heavy FydeOS app.
Can I access my FydeOS files from inside Linux?
By default, no — Linux cannot see FydeOS files for security reasons. If you need to work with a specific file in both systems, you can move it to the Downloads folder, which both systems can access. You can also learn to navigate Linux file paths if you want more control, but that requires typing commands in the terminal.