How To Install cgoban on Kali Linux

In this tutorial we learn how to install cgoban on Kali Linux. cgoban is complete Go board

Introduction

In this tutorial we learn how to install cgoban on Kali Linux.

What is cgoban

cgoban is:

CGoban (Complete Goban) is a computerized board on which you can play the game of Go against another player, view and edit smart-go files, and connect to Go servers on the internet. It can also interface with computer Go programs such as GNU Go that speak the Go modem protocol. Some sort of image converter is needed if you wish to use the utility provided to capture “screen shots” of a CGoban game.

Go is an ancient game originated from China, with a definite history of over 3000 years, although there are historians who say that the game was invented more than 4000 years ago. The Chinese call the game Weiqi, other names for Go include Baduk (Korean), Igo (Japanese), and Goe (Taiwanese).

In this game, each player tries to exert more influence on territory than her opponent, using threats of death, capture, or isolation. It is, therefore, a symbolic representation of the relationships between nations. Go is getting increasingly popular around the world, especially in Asian, European and American countries, with many worldwide competitions being held.

The game of Go is played on a board. The Go set is comprised of the board, together with 181 black and 180 white stones. The standard board has 19 lines by 19 lines, but 13x13 and 9x9 boards can also be used. However, the 9x9 and 13x13 boards are usually for beginners; more advanced players would prefer the traditional 19x19 board.

Compared to International Chess and Chinese Chess, Go has far fewer rules. Yet this allowed for all sorts of moves to be played, so Go can be a more intellectually challenging game than the other two types of Chess. Nonetheless, Go is not a difficult game to learn, so have a fun time playing the game with your friends.

(adopted from http://senseis.xmp.net/?WhatIsGo)

There are three methods to install cgoban on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install cgoban Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install cgoban using apt-get by running the following command:

sudo apt-get -y install cgoban

Install cgoban Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install cgoban using apt by running the following command:

sudo apt -y install cgoban

Install cgoban Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install cgoban using aptitude by running the following command:

sudo aptitude -y install cgoban

How To Uninstall cgoban on Kali Linux

To uninstall only the cgoban package we can use the following command:

sudo apt-get remove cgoban

Uninstall cgoban And Its Dependencies

To uninstall cgoban and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove cgoban

Remove cgoban Configurations and Data

To remove cgoban configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge cgoban

Remove cgoban configuration, data, and all of its dependencies

We can use the following command to remove cgoban configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge cgoban

Dependencies

cgoban have the following dependencies:

References

Summary

In this tutorial we learn how to install cgoban package on Kali Linux using different package management tools: apt, apt-get and aptitude.