Programster's Blog

Tutorials focusing on Linux, programming, and open-source

Ubuntu - Install Bazaar

Introduction

Bazaar is another version control system (like SVN and Git). There are many reasons why you might want to switch to Bazaar which are beyond the scope of this tutorial. For me, I just wanted to investigate another version control system that could offer me a centralized workflow.

Bazaar can use a centralized workflow like SVN, but doesn't have to.

Steps

Basic Installation

Run the following commands to install bazaar on Ubuntu

sudo apt-get install bzr -y

PPA Based Installation

Alternatively, If you want to use a PPA to install the latest/greatest version that has not been vetted by Canonical, then run these commands as well.

sudo apt-add-repository ppa:bzr/ppa -y
sudo apt-get install bzr -y

Optionally install a GUI For bazaar.

Bazaar also has a GUI which can be installed by using the command below. These tutorials will focus primarily on using the CLI.

sudo apt-get install bzr-explorer -y

Set user details

The first thing you will want to do after installing bazaar is set your user details. For example:

bzr whoami "John Doe <john.doe@gmail.com>"

Conclusion

Bazaar is now installed. In future we will show you how to create shared repositories.

Last updated: 16th August 2018
First published: 16th August 2018

This blog is created by Stuart Page

I'm a freelance web developer and technology consultant based in Surrey, UK, with over 10 years experience in web development, DevOps, Linux Administration, and IT solutions.

Need support with your infrastructure or web services?

Get in touch