Linux Tutorials on the topic “Linux”
-
How to Install and Use TeamSpeak Server on CentOS 7
Author: Liptan Biswas • Tags: centos, linux, server • Comments: 10
In this tutorial, we will install TeamSpeak Server on CentOS 7 server. TeamSpeak is a VOIP or Voice Over Internet Protocol server. It provides voice communication features which can be used in various fields like online gaming, educational training, business communication etc.
-
Key-Based SSH Logins With PuTTY
Author: Falko Timme • Tags: linux, security • Comments: 73
This guide describes how to generate and use a private/public key pair to log in to a remote system with SSH using PuTTY. PuTTY is an SSH client that is available for Windows and Linux (although it is more common on Windows systems). Using key-based SSH logins, you can disable the normal username/password login procedure which means that only people with a valid private/public key pair can log in. That way, there is no way for brute-force attacks to be successful, so your system is more secure.
-
How to Install SonarQube on Ubuntu 16.04
Author: Hitesh Jethva • Tags: linux, mysql, nginx, programming, server, ubuntu, web server • Comments: 10
SonarQube is a free and open source quality management system platform that can be used to automate code inspection. It can analyze source code files, calculate a set of metrics and show the result on the web based dashboard. It is written in Java language and also supports other languages like Perl, PHP, and Ruby.
-
-
How to Install RabbitMQ Server on CentOS 7
Author: Liptan Biswas • Tags: centos, linux • Comments: 7
RabbitMQ is a free and open source enterprise message broker software. It is written in Erlang and implements Advanced Message Queueing Protocol (AMQP). In this tutorial, we will install RabbitMQ on CentOS 7 server.
-
Server Monitoring with OpenNMS on Ubuntu 16.04
Author: Hitesh Jethva • Tags: linux, monitoring, server, ubuntu • Comments: 2
OpenNMS is a free and open source enterprise grade network monitoring web application system that can be used to monitor unlimited devices at a single instance. OpenNMS detects and monitor services or nodes automatically in your network. You can also add particular device or service to monitor.
-
How to Install Apache ActiveMQ on CentOS 7
Author: Liptan Biswas • Tags: centos, linux, server, web server • Comments: 5
Apache ActiveMQ is a free and open source message broker and integration pattern server. It supports many cross language clients and protocols from JAVA, C++, C, Python, Perl, PHP etc. It provides many features such as Message Groups, Virtual Destinations, Wildcards and Composite Destinations etc. It can be easily integrated to spring applications. In this tutorial, we will install Apache ActiveMQ on CentOS 7 server.
-
Linux du Command Tutorial for Beginners (10 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 2
Sometimes, while working on the Linux command line, you might want to quickly know disk usage for a set of files or for a complete directory. There's a specific command line tool that lets you do this, dubbed du. In this tutorial, we will discuss the basics of this tool as well as the features it provides using easy to understand examples.
-
How to Install Jenkins Automation Server with Nginx on CentOS 7
Author: Liptan Biswas • Tags: centos, linux, server • Comments: 4
Jenkins is a free and open source continuous integration server. It can be used to automate various tasks related to software development such as building testing and deploying. In this tutorial, we will install Jenkins Automation Server on CentOS 7 server. We will also setup Nginx as a reverse proxy for Jenkins.
-
How to Install Mahara ePortfolio System on CentOS 7
Author: Liptan Biswas • Tags: apache, centos, linux, server, web server • Comments: 1
Mahara is an open source e-portfolio system. It can also be used as a social networking platform. Mahara is written in PHP and uses either PostgreSQL or MySQL database server to store its data. You can use Mahara to create your personalized multimedia portfolio and to collaborate with others. In this tutorial, we will install Mahara on CentOS 7 server.
-
Linux echo Command Tutorial for Beginners (5 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 1
In this tutorial, we will discuss basics of echo as well as the command line options it provides. Suppose you want to append a hard-coded line of text to a file through the command in Linux, what would you do? An obvious approach would be to open the file in an editor, and then enter the line manually. But think of a case where-in this task needs to be automated. What's your option in that case?