AnyDesk is a popular and lightweight application that allows you to connect remote desktop systems. We can say this is an alternative of TeamViewer and also available for cross-platform like Windows and macOS. In this tutorial, we will show you how to install AnyDesk on Ubuntu 20.04 system. Prerequisites# You must logged in with root
Tutorial - Page 12 of 36 - DesignLinux
Bash Concatenate Strings
In any programming language the concatenation is the commonly used string operations. String concatenate is used to joining the two or more strings together by appending one to end of another string. In this tutorial, you will learn how to concatenate strings in Bash. Concatenating Strings# It’s very easy to concatenate multiple string variables by
Bash until Loop
Loops are primary requirement of any programming languages. Loops are useful when you want to execute a series of commands until the certain condition is satisfied. In Bash, loops are useful for automating repetitive tasks. There are three basic loops for loop, while loop , and until loop. In this tutorial, we will see basics
Bash Functions
A Bash function is a predefined set of commands and can be use n number of times. It is useful to avoid repeatedly writing same code. In this tutorial, we will show you the basics of Bash functions. Create Bash Functions# It is very easy and straightforward to create a bash function. You can declare
How to Undo Last Git Commit
Sometimes, when working with Git, you may want to undo the latest commit. A commit is a snapshot of a Git repository at a given time. Git has a reference variable called HEAD that points to the latest commit in the current working branch. To undo a commit, all you need to do is point
How to Create Bash Aliases
Bash aliases are shortcuts for the long commands. It allows you to set a memorable shortcut command for a longer command. This guide explains how to create bash aliases on Linux system. Creating Bash Aliases# It is very easy to create bash aliases. Following is the general syntax: alias alias_name=”command_to_run” You should put the alias
Install Odoo 14 on CentOS 8
Odoo is the most popular all-in-one business software in the world. It offers a range of business applications, including CRM, website, e-Commerce, billing, accounting, manufacturing, warehouse, project management, inventory, and much more, all seamlessly integrated. Odoo can be installed in different ways, depending on the use case and available technologies. The easiest and quickest way
Bash while Loop
Loops are primary requirement of any programming languages. Loops are useful when you want to execute a series of commands until the certain condition is satisfied. In Bash, loops are useful for automating repetitive tasks. In this tutorial, we will see basics of while loop in Bash. There are three basic loops for loop, while
How to Install LibreOffice 7.0 on Ubuntu 20.04
LibreOffice is a open-source and free office suite. In this tutorial, described steps to install the latest LibreOffice 7 on Ubuntu 20.04 Linux system. You can install latest version of LibreOffice either using the official PPA or the Snap package manager. Prerequisites# You must logged in as root or user with sudo privileges. Installing LibreOffice
Bash break and continue
Using loops you can run multiple commands until the condition is satisfied. But sometimes you need to divert the flow of loop or terminate the loop iteration. In such cases, you can use break and continue statements in bash to handle the loop execution. In this guide we will how to use break and continue