×


Blog


Top 5 Source Code Repositories

This article covers the top-performing code repositories which are all Git-based. Git was created by Linus Torvalds in 2005 for the development of the Linux kernel, and henceforth it can be safely concluded that all the discussed source code repositories support and are compatible with not just Linux but the rest of the operating systems too. Any source code developed or created in any of the operating systems can seamlessly be managed in GitHub, BitBucket, SourceForge, Assembla, and CloudForge. Along with that, the paradigms are top-rated by users and many reviewers around the globe. 

Therefore, to manage the software application development processes, any of the discussed paradigms can be safely adopted and is assured of providing optimal performance and expected services.


Install and Use Unbound in Ubuntu 20.04 - Step by Step Process ?

This article covers how to install and configure the Unbound name resolution server in Ubuntu with basic configuration. Unbound is basically a recursive-only caching DNS server which can perform DNSSEC validation of results. Unbound is the best alternative for setting up a caching nameserver on your LAN or personal machine.


To install Unbound from official Repository, run the following commands:

$ sudo apt update
$ sudo apt install unbound -y


Install PHP Composer on Ubuntu 20.04 - Step by Step Process ?

This article covers how to install PHP Composer on Ubuntu 20.04 system. Composer is a popular dependency management tool for PHP, created mainly to facilitate installation and updates for project dependencies. It will check which other packages a specific project depends on and install them for you, using the appropriate versions according to the project requirements. Composer is also commonly used to bootstrap new projects based on popular PHP frameworks, such as Symfony and Laravel.


To Install PHP Composer on Ubuntu:

1. Update your packages:

$ sudo apt-get update

2. Install the curl utility:

$ sudo apt-get install curl

3. Download the installer:

$ sudo curl -s https://getcomposer.org/installer | php

4. Move the composer.phar file:

$ sudo mv composer.phar /usr/local/bin/composer

5. Use the composer command to test the installation. If Composer is installed correctly, the server will respond with a long list of help information and commands:

# composer


Enable a Dark Theme in Linux Mint 20 - How to do it ?

This article covers how to enable a dark theme on a Linux Mint 20 system.


How to change themes in Linux Mint ?

1. Search for themes in the Menu and open the Themes applet (Theme Applet provides an easy way of installing and changing themes).

2. At the applet there's a "Add/Remove" button.

3. To install one, all it's needed to do is click on yours preferred one and wait for it to download. After that, the theme will be available at the "Desktop" option on the first page of the applet.

4. Now, double click on one of the installed themes to start using it.


Install Apache Cassandra on Ubuntu 20.04 - Step by Step Process ?

This article covers how to install Apache Cassandra on Ubuntu 20.04 LTS. Apache Cassandra is an open-source non-relational database that delivers high performance, linear scalability, and continuous availability. All these features make Cassandra an ideal platform for mission-critical data.

To learn more about Apache Cassandra, visit its official documentation site.


How to install Java on Ubuntu ?

1. To check whether Java is installed, run the command:

$ java -version

2. To install OpenJDK, execute the following apt command:

$ sudo apt install openjdk-8-jdk

3. Once again, confirm that Java is installed by running the command:

$ java -version


How to Install Apache Cassandra in Ubuntu ?

1. First, install the apt-transport-https package to allow access of repositories via the https protocol:

$ sudo apt install apt-transport-https

2. Next, Import the GPG key using following wget command as shown:

$ wget -q -O - https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -

3. Then add Apache Cassandra's repository to the system’s sources list file as shown:

$ sudo sh -c 'echo "deb http://www.apache.org/dist/cassandra/debian 311x main" > /etc/apt/sources.list.d/cassandra.list'

4. Before installing Apache Cassandra, you need to update the package list first:

$ sudo apt update

5. Then install the NoSQL database using the command:

$ sudo apt install cassandra

6. Usually, Apache Cassandra starts automatically. To confirm its status, run the following command:

$ sudo systemctl status cassandra

7. Additionally, you can verify the stats of your node by running the command:

$ sudo nodetool status


Change Timezone on CentOS 7 Server - Do it Now ?

This article covers how to change timezone in CentOS 7. A time zone is basically a region of the globe that observes a uniform standard time for constitutional, business and cultural purposes.

To get detailed information your CentOS server's date, time, and timezone you use the timedatectl command:

$ timedatectl

To Delete the current /etc/localtime file or symlink:

$ sudo rm -rf /etc/localtime