Debian How to Install Slack on Debian 10 Slack is one of the most popular collaboration platforms in the world that brings all your communication together. Conversations in Slack are organized in channels. You can create channels for
Debian How to Install GCC Compiler on Debian 10 The GNU Compiler Collection (GCC) is an open-source collection of compilers and libraries supporting C, C++, Objective-C, Fortran, Ada, Go, and D programming languages. The Linux kernel, the GNU utilities,
Linux Rename Command in Linux (Rename Multiple Files) Renaming multiple files and directories with the mv command can be a tedious process as it involves writing complex commands with pipes, loops, and so on. This is where the
Debian How to Install and Configure Squid Proxy on Debian 10 Squid is a full-featured caching proxy supporting popular network protocols like HTTP, HTTPS, FTP, and more. It can be used for improving the web server’s performance by caching repeated
Debian How to Install Git on Debian 10 Git is the world’s most popular distributed version control system used by many open-source and commercial projects. With Git you can collaborate on projects with your fellow developers, keep
Debian How to Install and Use Docker on Debian 10 Docker is a containerization platform that allows you to quickly build, test and deploy applications as portable, self-sufficient containers that can run virtually anywhere. In this tutorial, we’ll explain
Debian How to Install Apache Web Server on Debian 10 Apache HTTP server is one of the most popular web servers in the world. It is an open-source and cross-platform HTTP server that powers a large percentage of the Internet’
Debian How to Install MySQL on Debian 10 MySQL, the world’s most popular open-source relational database management system is not available in the default Debian’s repositories. MariaDB is the default database system in Debian 10. This
Debian How to Add Swap Space on Debian 10 Swap is a space on a disk that is used when the amount of physical memory is full. When a Linux system runs out of RAM, inactive pages are moved
Debian How to Install Nginx on Debian 10 Nginx is an open-source, high-performance HTTP and reverse proxy server that powers some of the largest sites on the Internet. Compared to Apache, Nginx can handle a much large number
Debian How to Install Java on Debian 10 In this tutorial, we will explain how to install Java (OpenJDK) on Debian 10 Linux. Java is one of the most popular programming languages used to build different kinds of
Debian How to Change Hostname on Debian 10 This tutorial explains how to change the hostname on Debian 10 Buster without restarting the system. The hostname is set at the time when the Debian operating system is installed
Debian Create Bootable Debian 10 USB Stick on Linux This tutorial, explains how to create a bootable Debian 10 (Buster) USB stick from the Linux terminal using the dd command. The USB stick can be used to boot and
Debian How to Install MariaDB on Debian 10 MariaDB is an open-source, multi-threaded relational database management system, backward compatible replacement for MySQL. MariaDB is the default implementation of MySQL in Debian. This tutorial explains how to install MariaDB
Debian How to Upgrade Debian 9 Stretch to Debian 10 Buster After more than two years of development, the new Debian stable version, Debian 10 codenamed Buster, was released on July 6, 2019, and it will be supported for 5 years.
Debian How to Install VLC Media Player on Debian 9 VLC is a free and open-source multimedia player. It is cross-platform and can play almost all multimedia files as well as DVDs, Audio CDs, and different streaming protocols. This tutorial
Debian How to Install and Configure Redmine on Debian 9 Redmine is a free and open-source project management and issue tracking application. It is cross-platform and cross-database and built on top of the Ruby on Rails framework. Redmine includes support
Debian How to Install TeamViewer on Debian 9 TeamViewer is a cross-platform solution that can be used for remote control, desktop sharing, online meetings and file transfer between computers. TeamViewer is proprietary computer software and it is not
Debian How to Install Memcached on Debian 9 Memcached is a free and open-source high-performance in-memory key-value data store. It is mostly used to speed up applications by caching various objects from the results of database calls. In
Debian How to Install CouchDB on Debian 9 CouchDB is an open-source fault-tolerant and schema-free NoSQL database maintained by the Apache Software Foundation. CouchDB server stores its data in named databases which contains documents with JSON structure. Each
Debian How to Install Skype on Debian 9 Skype is one of the most popular communication applications in the world that allows you to make free online audio and video calls, and affordable international calling to mobiles and
CentOS How to Clear the DNS Cache DNS cache is a temporary database that stores information about previous DNS lookups. In other words, whenever you visit a website, your OS and web browser will keep a record
Nginx Nginx Commands You Should Know Nginx pronounced “engine x” is a free, open-source, high-performance HTTP and reverse proxy server responsible for handling the load of some of the largest sites on the Internet. It can
CentOS How to Delete a MySQL Database on Linux via Command Line MySQL is the most popular open-source relational database management system. This tutorial describes how to delete (or drop) a MySQL or MariaDB database through the command line. Before you beginAll
Bash Echo Command in Linux with Examples The echo command is one of the most basic and frequently used commands in Linux. The arguments passed to echo are printed to the standard output. echo is commonly used