Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Linux Articles
Page 74 of 134
3 Ways to Permanently and Securely Delete Files and Directories in Linux
Linux is an incredibly powerful and versatile operating system widely used in the computing industry. One of the most important aspects of using any computer system is the ability to manage files and directories. In this article, we will discuss three ways to permanently and securely delete files and directories in Linux. Why Secure File Deletion is Important When you delete a file or directory from your computer, it does not necessarily mean that the data is gone forever. In most cases, the data is still present on your hard drive or storage device, but it is marked ...
Read More3 Ways to Set a Static IP Address in RHEL 8
RHEL 8 (Red Hat Enterprise Linux 8) is a popular Linux-based operating system used by many organizations for their servers and workstations. In RHEL 8, IP (Internet Protocol) addresses can be set dynamically or statically. A dynamic IP address is assigned automatically by a DHCP (Dynamic Host Configuration Protocol) server, while a static IP address is manually configured by the user. In this article, we will discuss three ways to set a static IP address in RHEL 8. Using Network Manager GUI The Network Manager GUI is a graphical user interface that makes it easy to manage network ...
Read More4 Free Shell Scripting eBooks for Linux Newbies and Administrators
As Linux continues to gain popularity as an operating system for servers and other computing devices, the need for skilled Linux administrators is on the rise. One crucial skill for any Linux administrator is shell scripting. Shell scripting is the process of creating programs that automate tasks in a Linux environment, making it easier and faster for administrators to manage their systems. If you are new to Linux or are looking to improve your shell scripting skills, there are several free ebooks available to help you get started. In this article, we will explore four free ebooks that are ...
Read More4 Useful Tips to Secure PhpMyAdmin Login Interface
PhpMyAdmin is a popular web-based tool used by developers to manage and administer MySQL databases. It provides an intuitive interface for creating, modifying, and deleting databases, tables, and records. However, like any web application, PhpMyAdmin is vulnerable to security threats if not properly configured. This article covers four essential tips to secure your PhpMyAdmin login interface and protect your database from unauthorized access. Change Default Login Credentials One of the most critical security steps is changing the default MySQL credentials. Many installations use predictable usernames like root with weak passwords, making them easy targets for attackers. To ...
Read More4 Useful Tools to Monitor CPU and GPU Temperature in Ubuntu
Ubuntu is one of the most popular and widely used Linux distributions. It is known for its simplicity, reliability, and performance. However, like any other operating system, Ubuntu is not immune to overheating issues. Overheating can lead to a number of problems, such as decreased performance, system crashes, and even hardware damage. Therefore, it is important to monitor the temperature of your CPU and GPU regularly to prevent such issues from occurring. lm-sensors lm-sensors is a command-line tool that allows you to monitor temperature, voltage, and fan speed of your CPU, GPU, and other system components. It is ...
Read More4 Ways to Check CentOS or RHEL Version
If you're using CentOS or RHEL (Red Hat Enterprise Linux), knowing your system version is essential for package management, troubleshooting, and security updates. There are several reliable methods to determine which version you're running. This article covers four effective methods to check your CentOS or RHEL version, each with step-by-step instructions and example outputs. Method 1: Check /etc/redhat-release File The /etc/redhat-release file contains version information about your CentOS or RHEL system, including the release number and update level. This is the most straightforward method. To check the contents of the /etc/redhat-release file: cat /etc/redhat-release ...
Read More4 Ways to Find Out What Ports Are Listening in Linux
Linux is a popular operating system widely used by system administrators, developers, and security professionals. One of the most important tasks in managing a Linux system is to identify which ports are listening and which processes are using them. This knowledge is crucial for system security, troubleshooting network issues, and service management. In this article, we will discuss several effective methods to find out what ports are listening in Linux. Using netstat Command The netstat command is a traditional network utility that provides detailed information about network connections, routing tables, and interface statistics. To check which ports are ...
Read More4 Ways to Generate a Strong Pre-Shared Key (PSK) in Linux
Pre-shared key (PSK) is a security mechanism used to protect network communication by ensuring that only authorized devices can access it. It is a shared secret key that must be kept confidential to prevent unauthorized access to the network. In Linux, there are several ways to generate a strong PSK, and in this article, we will discuss four primary methods. Method 1: Random Character Generation One of the simplest ways to generate a strong PSK is to use a random combination of characters. This can be done using various Linux command-line utilities. Using OpenSSL The openssl ...
Read More4 Ways to Speed Up SSH Connections in Linux
If you use Linux for remote access to other servers or devices, you are likely familiar with SSH (Secure Shell) protocol. SSH is a network protocol that enables secure data communication over an unsecured network. However, sometimes SSH connections can be slow, and that can be frustrating. In this article, we will look at four key ways to speed up SSH connections in Linux. Use Compression Compression reduces the size of data transmitted over the network, which can significantly improve SSH connection speed, especially over slow or high-latency networks. To enable compression, add the following line to your ...
Read More4 Ways to View Disks and Partitions in Linux
As an open-source operating system, Linux provides various tools and commands that allow users to manage their disk and partition configurations. Whether you're a system administrator or a casual user, understanding how to view disk and partition information is essential for system maintenance and troubleshooting. Using fdisk Command The fdisk command is a powerful command-line utility that displays detailed partition table information. It shows disk geometry, partition types, and sector information for storage devices. To view all partitions on a specific disk, use the -l (list) option − sudo fdisk -l /dev/sda This ...
Read More