Author: Rahul

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

Ubuntu 20.04 Focal Fossa is the latest LTS release available to download. This tutorial will provide you the download links to DVD ISO Images of Ubuntu 20.04 LTS with different desktop flavors. You can find the Ubuntu 20.04 release notes on its official website. In this tutorial, you will find instructions to download Ubuntu 20.04 LTS Focal Fossa ISO images from official site. Also you will learn how to download images with zsync command line utility. Ubuntu 20.04 LTS Download Links Select your favorite Desktop edition and use below links to download the required editions. Ubuntu 20.04 LTS Desktop Ubuntu…

Read More

A time zone refers to the local time of any region or a country. Generally each country uses one time zone but few of the countries shares multiple time zones due to its geological areas. It is always recommended to set a correct time zone on your server during initial setup. Most of applications are build to use system time zone and manage their data accordantly. In that situation your system must have correct time zone configured. This tutorial will describe you to how to set or change time zone on Ubuntu 20.04 Linux systems. Check Current Timezone Login to…

Read More

Jenkins is a popular open-source automation server that is widely used for continuous integration and continuous delivery (CI/CD) in software development. As a system administrator, you may need to reset the Jenkins admin password if you have lost or forgotten it. In this tutorial, we will learn how to reset the Jenkins admin password in a few simple steps. Steps to Reset Jenkins Admin Password Follow the below steps to recover admin account access to the Jenkins portal. Disable Current Security – First of all, login to your Jenkins server and edit the Jenkins configuration file (/var/lib/jenkins/config.xml) in your favorite…

Read More

Security always comes first. It is recommended to keep your files secure on your systems. No one liked that anyone misused their hard work due to silly mistakes. Many of fresher set file permissions to 777 on production servers to avoid any permission issue. But they are doing big mistakes by setting world writable permissions. Use previous tutorial to search files with 777 permission on Linux system. It is always advised to keep the file and directory permissions to minimal. May of the web application framework suggest to keep permissions for all directories to 755, and all files to 644.…

Read More

TeamViewer is a powerful remote desktop and file sharing application works with most of the operating systems and mobile devices. In order to commercial use of TeamViewer, you have to purchase license. You can use it free for personal use only. A Debian package is build by the team viewer team and available for the installation on Ubuntu and Debian systems. You can download it from TeamViewer website with no charge. This tutorial help you to how to install TeamViewer on Debian 10 (Buster) Linux system. Prerequisites A running Debian 10 system with desktop access. Sudo privileged account access. Installing…

Read More

mv command is used to move files from one directory to other directory. Also mv command is used to rename file in Linux systems. It is an frequently uses command by the Linux users. You must learn about mv command in Linux and its parameters. In this tutorial you will learn Linux mv command with useful examples Syntax: Usage: mv [OPTION]… [-T] SOURCE DEST or: mv [OPTION]… SOURCE… DIRECTORY or: mv [OPTION]… -t DIRECTORY SOURCE… The move command is useful to rename SOURCE file to DEST file name. Also you can move a SOURCE file to other DIRECTORY. This command…

Read More

MySQL is a relational database management system. At the writing time of this tutorial MySQL, 8 is the latest version available. This tutorial helps you to check the MySQL server version running on your system. Install MySQL on Ubuntu 20.04 Install MySQL on Debian 10 Find Version with mysqld Command Use mysqld command with -V option to check MySQL version running on local host system. The below examples can only used for the localhost only. mysqld -V Output: /usr/sbin/mysqld Ver 8.0.25-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu)) The above result shows that you are running MySQL version 8.0.25 on your local…

Read More

find is the basic Unix command used to search files recursively under a directory tree. It is default available in all the Linux operating systems. All the Linux command line users must be aware about uses of Linux find command. It The find command traverse under a directory tree and capable to search files or directory based on defined search pattern. It also provides option to search files with names in uppercase or lowercase or mixed case. In this tutorial you will learn about how to search files with case insensitive names. Find files with Case Insensitive Names Use -name…

Read More

In Linux, the timezone is the system-wide setting that determines the local time on the system. The timezone is stored in the file `/etc/localtime`, which is a symlink to a file in the `/usr/share/zoneinfo` directory that contains the timezone information. It is important to set the correct timezone on your Linux system, as this ensures that the system clock is displaying the correct local time. If the timezone is not set correctly, the system clock may be off for several hours, which can cause issues with scheduling tasks, logs, and other applications. In this article, we will walk through the…

Read More

du is the short of disk uses. Which means the du command calculates the size on disk used by a files. It is the basic Linux command frequently used the Linux system users. Syntax: du [OPTION]… [FILE]… In this tutorial, you will learn the uses of du command in Linux with useful examples. du Command Examples du is an frequent used command by the Unix/Linux system users. It calculates the size of a file, directory on Unix like systems. It also allowed to check size of directory including all files recursively. Check single file size – Use the simple du…

Read More