How to Use ‘fsck’ to Repair Linux File System Errors

Introduction The Linux file system is a powerful tool for managing data, but it can sometimes become corrupted or damaged. Fortunately, there is a tool available to help you repair these errors: fsck. Fsck is a command-line utility that can be used to check and repair Linux file system errors. In this guide, we will … Read more

How to Run Linux Commands in Background and Detach in Terminal

Introduction If you are a Linux user, you may have come across a situation where you need to run a command in the background and detach it from the terminal. This can be useful if you want to run a command that takes a long time to complete, or if you want to run a … Read more

12 Ping Command Examples to Test Your Network

Introduction The ping command is a useful tool for testing the reachability of a host on an Internet Protocol (IP) network. It works by sending ICMP (Internet Control Message Protocol) echo request packets to the target host and waiting for an ICMP response. In this article, we will discuss 12 ping command examples to test … Read more

Watch Linux Logs in Real Time with Tail Command

Introduction The tail command is a powerful tool for monitoring Linux logs in real time. It allows you to quickly view the last few lines of a log file, or to follow the log file as it grows. This can be useful for troubleshooting system issues, or for monitoring system activity. In this article, we … Read more

10 SCP Commands to Transfer Files/Folders in Linux

Introduction The SCP (Secure Copy) command is a powerful tool used to transfer files and folders between two remote systems securely over an SSH (Secure Shell) connection. It is a secure alternative to the traditional FTP (File Transfer Protocol) and is often used to transfer files between Linux and Unix systems. In this article, we … Read more

21 Tar Command Examples in Linux

Introduction The tar command is one of the most popular and widely used commands in Linux. It is used to create, extract, and manipulate archives. It is also used to transfer files between different systems. In this article, we will discuss 21 tar command examples in Linux. We will cover how to create, extract, and … Read more

How to Download a File from Server using SSH on Linux

1. Log into your server using SSH. 2. Navigate to the directory where the file is located. 3. Use the “scp” command to download the file. Syntax: scp [username@]hostname:source_file_path destination_file_path Example: scp username@hostname:/home/user/file.txt /home/user/downloads/ 4. Enter your password when prompted. 5. The file will be downloaded to the specified destination. [ad_1] When it comes to … Read more

How to Download Files from Linux Server to Local Machine

1. Use SSH to connect to the Linux server. 2. Use the “scp” command to copy the files from the server to your local machine. Syntax: scp [options] [user@]host:source_file target_file Example: scp -r user@host:/home/user/files/ /home/localuser/files/ 3. Use the “rsync” command to synchronize files between the server and your local machine. Syntax: rsync [options] [user@]host:source_file target_file … Read more

How to Check PHP Version

1. Log into your web hosting control panel. 2. Look for the section labeled “Software and Services” or “Software/Services”. 3. Click on the “PHP Configuration” or “PHP Info” link. 4. Look for the “PHP Version” line. The number listed is the version of PHP installed on your server. [ad_1] Check php version windows, linux, mac; … Read more

How to Increase Request Timeout in NGINX

1. Open the nginx.conf file in a text editor. 2. Find the http section and add the following line: proxy_read_timeout 600; 3. Save the file and restart the nginx service. 4. Test the new timeout setting by making a request to the server. [ad_1] Increase or set request timeout in nginx; Through this tutorial, we … Read more