SysAdmin

How to Use the nslookup Command

January 13, 2022

Access to Domain Name System (DNS) records of a website is important for troubleshooting network related problems. This tutorial will introduce nslookup, a cross-platform command for querying servers and obtaining domain records.

Read more

How to Use the Linux head Command

January 5, 2022

The head commands lists the first ten lines of a file in standard output. Learn how to use the head command and its options (with examples).

Read more

How to Use the Linux ftp Command


FTP offers an efficient method of transferring files within a secure network. Learn how to use the ftp command in this tutorial.

Read more

Bash Export Variable

December 30, 2021

All the variables the user defines inside a shell are local by default. It means that child processes of the shell do not inherit the values of the shell's variables. To make them available to child processes, the user must export the variables. This tutorial will show you how to export Bash variables in Linux, using the export command.

Read more

Jenkins Logs - Viewing and Customizing


Jenkins is an open-source automation server for code development. Jenkins logs offer a wealth of information about your projects and the Jenkins app itself.

Read more

How to Change Port for Jenkins

December 29, 2021

Jenkins uses port 8080 by default, but it also lets users set a custom port. This tutorial shows you how to change the default Jenkins port in Windows, Linux, and macOS.

Read more

Using the Linux free Command


The free command in Linux is a utility that helps monitor RAM usage on a system. This guide shows how to use the free command and determine if there are enough resources for running new apps.

Read more

Jenkins Environment Variables: Ultimate Guide

December 23, 2021

Jenkins is an open-source automation server used for automating code development. In this tutorial, we show you how to use environment variables in Jenkins to make automation even easier.

Read more

How to Write a Bash Script with Examples


Bash scripting is a key skill for both system administrators and developers. Learn how to write a Bash through a practical example.

Read more

Bash declare Statement: Syntax and Examples


Although the builtin declare statement does not need to be used to explicitly declare a variable in Bash, the command is often used for more advanced variable management tasks. This tutorial shows how to use the declare command to set and display the variables and their attributes.

Read more
1 50 51 52 53 54 77