HowtoForge provides user-friendly Linux tutorials.
-
How to Install Drupal with Nginx and Let's Encrypt SSL on Ubuntu 20.04 LTS
Author: Hitesh Jethva • Tags: linux, ubuntu, web server • Comments: 1Drupal is a free and open-source content management system that helps you create and deliver digital content for the web and mobile phones. In this tutorial, we will show you how to install Drupal with Nginx and secure it with Let's Encrypt SSL on Ubuntu 20.04.
-
Vim Editor Basics
Author: bad_crow • Tags: linux, shell • Comments: 11Vim Basics: This tutorial is going to speak about vim basic use. Vim is a powerful text editor used in CLI (command line interface). Because Linux uses a lot of configuration files, you'll often need to edit them and vim is a great tool to do so.
-
How to Install Microsoft Teams Linux on Ubuntu and CentOS
Author: Hitesh Jethva • Tags: centos, linux, ubuntu • Comments: 14Microsoft Teams is a communication platform used for Chat, Calling, Meetings, and Collaboration. In this tutorial, we will show you how to install Microsoft Teams Linux on CentOS 8 and Ubuntu 16.04 - 20.04 desktop.
-
-
Dockerizing Flask Application Using Docker on Debian 10
Author: Hitesh Jethva • Tags: linux, programming, virtualization • Comments: 0Flask is a popular Python web framework. It is classified as a microframework because it does not require particular tools or libraries. In this tutorial, we will explain how to deploy Flask application with Docker on Debian 10 server.
-
How do I edit files on the command line?
Author: Falko Timme • Tags: other, shell • Comments: 8To edit files on the command line, you can use an editor such as vi. To open the file, run vi /path/to/file Now you see the contents of the file (if there is any. Please note that the file is created if it does not exist yet.). The most important commands in vi are these: Press i to enter the Insert mode. Now you can type in your text. To leave the Insert mode press ESC.
-
How To Install Apache CouchDB NoSQL Database on CentOS 8
Author: Hitesh Jethva • Tags: centos, linux, server • Comments: 0Apache CouchDB is a free, open-source and document-oriented NoSQL database that uses JSON to store the data. In this tutorial, we will explain how to install Apache CouchDB on CentOS 8.
-
How to Install Magento 2 with Nginx and Let's Encrypt SSL on Ubuntu 20.04 LTS
Author: Muhammad Arul • Tags: linux, ubuntu, web server • Comments: 6Magento is a widely-used open source e-commerce software and content management system for e-commerce websites based on the PHP Zend Framework. It uses MySQL or MariaDB as the database backend. I will use Ubuntu 20.04 as the server operating system.
-
Linux objdump Command Explained for Beginners (7 Examples)
Author: Himanshu Arora • Tags: linux, programming, shell • Comments: 1If you are into programming on Linux and your work revolves around compilers, there are a handful of command line utilities that you should be aware of. One such tool is objdump.
-
How to Find Active SSH Connections on Linux
Author: Hitesh Jethva • Tags: linux, security • Comments: 0If you are Linux system administrator and responsible for managing servers then you may often need to know how many ssh connections are active on your server and where the connections come from. This tutorial shows you different ways to identify the connections.
-
Linux pgrep Command Tutorial for Beginners (10 Examples)
Author: Himanshu Arora • Tags: linux, shell • Comments: 2You might already know about the grep command in Linux, which searches for a pattern, and then prints the matching text in output. What if the requirement is to apply this kind of processing to fetch select information about processes currently running in the system?