Home Linux Commands Homebrew – Basics Commands and Cheat Sheet for Linux

Homebrew – Basics Commands and Cheat Sheet for Linux

A very exciting aspect of using the Linux operating system is the infinite number of packages we can install and explore. However, to install and use a package on a Linux operating system, we are presented with two approaches.

The first approach is to use the package manager associated with your Linux distribution to search and install a targeted application package. The second approach is to download the source code associated with the targeted application package, compile, and install it.

The second approach is universally compatible with all Linux distributions but due to its technical footsteps, it might be discouraging for users who have just started exploring Linux.

Homebrew is a package manager that is not tied to a specific Linux distribution making it applicable on all major Linux platforms. This article will explore Homebrew’s basic commands and its other cheat sheets worth mentioning.

Homebrew Features

Some of the features that make Homebrew a unique package manager candidate for major Linux distributions include the following:

  • Software Installation – This feature disregards the need of preceding your software installation commands with a sudo prefix since the targeted software is directly installed on the user’s Home directory.
  • Distribution-Free Software – The packaging of the software package you are targeting for installation is distribution-free (not tied to any Linux distribution).
  • Up-to-Date Software Versions – When using distribution-dependent package managers to install software packages on old Linux distributions, it might be difficult to get an up-to-date version. However, with Homebrew, you will be installing the latest version of each accessible software package.
  • Universal Package Manager – Homebrew does not discriminate hence usable on all major Linux operating system distributions.

Homebrew Basic Commands and Cheat Sheet

To quickly install and start using Homebrew, reference our article on How To Install and Use Homebrew on Linux Systems.

Once installed, let us look at some useful Homebrew commands.

Brew Help Commands

1. Lets you confirm the Homebrew version you are using.

$ brew --version 
Check Brew Version
Check Brew Version

2. Prints out help information related to the use of Homebrew.

$ brew help
Check Brew Help
Check Brew Help

3. Prints out help information related to the usage of a specific Homebrew command.

$ brew help <sub-command>
Check Brew Command Help
Check Brew Command Help

4. Always run the command to check for any system issues before you begin installing software packages.

$ brew doctor 
Check Brew Issues
Check Brew Issues

Brew Update Commands

5. Ensures that your brew-installed apps are up-to-date.

$ brew update
Check Brew Update
Check Brew Update

6. It will print out the brew-installed apps that need updating.

$ brew outdated

7. It will upgrade all brew-installed packages to the latest release if any.

$ brew upgrade
Update Brew Packages
Update Brew Packages

8. It will upgrade a specific pointed-out brew-installed package.

$ brew upgrade <formula>
Upgrade Specific Brew Package
Upgrade Specific Brew Package

9. The following command prevents a specific brew-installed app from being upgraded.

$ brew pin <formula> 

10. It will allow a specific brew-installed app to be upgraded once a new version release comes out.

$ brew unpin <formula>

Working with Brew Repositories

The brew tap command makes it possible to add extra repositories to Homebrew so as to install additional packages not listed on its default repositories’ set.

11. Prints a list of tapped repositories.

$ brew tap 
List Brew Repositories
List Brew Repositories

12. Use it to tap a formula/package repository.

$ brew tap ravi/linuxshelltips

13. Tap a formula/hosted repository hosted on a specific URL.

$ brew tap <user/repo> <URL>

14. Stop using a specific repository to tap the formula/package.

$ brew untap <user/repo>

Brew Search, Install, and Remove Packages

15. Displays installed packages/formulae.

$ brew list
List Installed Packages
List Installed Packages

16. Lists locally available and installable packages.

$ brew search

17. Search for the availability of a package before its installation.

$ brew search <text>
Search Availability Package
Search Availability Package

18. Displays information about an existing package/formula.

$ brew info <formula>
List Package Info
List Package Info

19. Install a targeted package/formula.

$ brew install <formula>
List Package Formula
List Package Formula

20. Remove the installed package/formula.

$ brew uninstall <formula>

Brew Cleanup Commands

21. Remove older versioned packages.

$ brew cleanup

22. If an installed package/formula has older version releases (e.g Python 2.7 and Python 3.10), this command removes the older version.

$ brew cleanup <formula>

23. List the to-be-removed packages.

$ brew cleanup -n

This article has unlocked all the cheats you need to use while installing and managing brew-installed packages.

Ravi Saive
I am an Experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies. Founder of TecMint.com, LinuxShellTips.com, and Fossmint.com. Over 150+ million people visited my websites.

Each tutorial at UbuntuMint is created by a team of experienced writers so that it meets our high-quality standards.

Was this article helpful? Please add a comment to show your appreciation and support.

Got something to say? Join the discussion.

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published or shared. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.