Brother printer driver for Chromebook 3

Solution 1:

Select the .deb option.

On most Debian-based Linux distributions, users can double-click on .deb packages to install them. This same functionality can now be found in Chrome OS. You can double-click on any .deb file in the Chrome OS Files app to start the installation process.

Even though it was already possible to install .deb packages through the command line with sudo dpkg -i package-name.deb, this makes using Linux apps on Chrome OS much easier for beginners.

enter image description here
Opening a .deb file on Chrome OS   Install app with Linux (Beta)

Source: revised from Chrome OS can now install Linux apps from .deb packages


Set up Linux (Beta) on your Chromebook

  1. At the bottom right, select the time.

  2. Select Settings .

  3. Under Linux (Beta), select Turn On.

  4. Follow the steps on the screen. Setup can take 10 minutes or more.

  5. A terminal window opens. You can run Linux commands, install more tools using the apt package manager, and customize your shell.

  6. To install a .deb file with apt change directories with cd to the directory containing the .deb file and run this command:

     sudo apt install ./package-name.deb  
    

    This command will install the .deb file and automatically install missing dependency packages if they are available from your software sources.

Source: revised from Chromebook Help - Set up Linux (Beta) on your Chromebook