- Typos or misconfiguration in the directives.
- Incorrect file paths.
- Inappropriate file or directory permissions.
Setting up SFTP on RHEL/CentOS-7
Introduction to the Bash Shell
- A command line is a text-based interface which can be used to input instructions to a computer system.
- The Linux command line is provided by a program called the shell. Various options for the shell program have been developed over the years and different users can be configured to use difference shells. Most users, however, stick with the current default shell.
- The default shell for users in RHEL/CentOS is the GNU Bourne-Again shell (BASH). Bash is an improved version of one of the most successful shells used on UNIX-like systems, the Bourne Shell (sh).
- When a shell is used interactively, it display a string when it is waiting for a command from the user. This is called the shell prompt.
- When a regular user starts s shell, the default prompt ends with a $ character, as shown below
- The $ character is replaced by a # character if the shell is running as the superuser, root. This makes it more obvious that it is a superuser shell, which helps to avoid accidents and mistakes which can affect the whole system. The superuser shell prompt is shown as below.
- Using bash to execute commands can be powerful. The bash shell provides a scripting language that can simply or make possible operations that are hard to accomplish efficiently with graphical tools.
- Command to run
- Options to adjust the behavior of the commands
- Arguments, which are typically targets of the commands
Swap Space in Linux
SWAP Space in Linux is a dedicated area on a storage device (disk or SSD) used as a backup for system memory (RAM). It serves as an overflow area when the physical memory is full, allowing the system to continue running by temporarily moving inactive pages of memory from RAM to swap. Swap helps prevent system crashes when RAM is insufficient but is slower than RAM since it relies on disk I/O.
Purpose of Swap Space
Extend Available Memory
Actis as Virtual memory when physical RAM is fully utilized.
Suspend-to-Disk
Stores the system's current state when suspending (hibernating) the computer.
Backup for Temporary Spikes.
Handles short-term spikes in memory usage.
Types of Swap Space
Swap Partition
A dedicated disk partition for swap
Created during the installation or manually after.
Swap File
A file on an existing file system used as sap space.
More flexible as it doesn't require repartitioning.
How Linux Uses Swap
Swapping:
Moves inactive memory pages to swap to free up RAM for active processes.Paging:
Handles memory pages actively being used, but this is less common in modern Linux systems.
The Linux kernel decides when to use swap based on the sappiness value:
A percentage (default:60) that determines how aggressively swap is used.
Higher values cause more swapping, even when RAM is available.
Lower values favor RAM usage and reduce swap reliance.
Checking Swap Usage
To view the current swap usage:
$ free -hm
$ swapon --show
Creating and managing swap space
Creating a Swap Partition
Step1: Identify unallocated Disk Space
$ lsblk
Step2: Create a Partition
Use fdisk or parted to create a new partition with 82 (Linux Swap) partition
type
$ sudo fdisk /dev/sdb
Step3: Format as Swap
$ sudo mkswap /dev/sdb1
Step4: Enable the Swap Partition
$ sudo swapon /dev/sdb1
Step5: Make It Persistent:
Add an entry to /etc/fstab
/dev/sdb1 none swap sw 0 0 |
Creating a Swap File
Step1: Create the swap File
$ sudo dd if=/dev/zero of=/swapfile bs=1M count=1024
Step2: Set Permissions
$ sudo chmod 600 /swapfile
Step3: Format the Swap
$ sudo mkswap /swapfile
Step4: Enable the Swap File
$ sudo swapon /swapfile
Step5: Make it Persistent
Add an entry to /etc/fstab file
/swapfile none swap sw 0 0 |
Adjusting Swappiness
The swappiness value determines the kernel's tendency to use swap:
Range: 0 - 100
Default: 60
To check the current swappiness value
$ cat /proc/sys/vm/swappiness
To temporarily change the value
$ sudo sysctl vm.swappiness=10
To make it permanent, add to /etc/sysctl.conf
vm.swappiness=10
Removing Swap Space
Removing a swap File
Disable the swap file
$ sudo swapoff /swapfileRemove the swap file entry in /etc/fstab
Delete the swap file:
$ sudo rm /swapfile
Removing a Swap Partition
Disable the swap partition
$ sudo swapoff /dev/sdb1Remove the entry in /etc/fstab
Optionally, delete the partition using fdisk or parted.
Monitoring and Managing Swap
View Swap Usage
$ free -hm
$ swapon --show
Turn off swap temporarily
$ sudo swapoff -a
Turn On Swap Temporarily
$ sudo swapon -a
Clear swap space
Move pages/processes back to RAM
$ sudo swapoff -a && sudo swapon -a
Best Practices for Swap Space
Recommended swap sizes
For systems with <=2 GB Ram = 2x RAM Size
For system with > 2GB RAM:
Without hibernation: equal to RAM Size.
With hibernation: RAM size + Additional buffer.
Use Swap Sparingly:
Excessive swap usage indicates insufficient RAM.
Upgrade RAM if swap is heavily used.
Optimize Performance:
Tune swappiness to reduce swap usage
Swap in Modern Systems
Modern systems with large amounts of RAM (e.g., 16GB+) rarely need swap for normal operations.
Swap is still critical for hibernation or when memory spikes occur.
SSD-Based swap is faster than HSS but may wear out SSD due to frequent writes.
Conclusion
Swap space is an essential feature in Linux for memory management and system stability. Whether implemented as partition or a file. It provides flexibility in handling memory overflow and supports advanced functionalities like hibernation. Proper management, including monitoring and tuning ensure optimal system performance.
-
A library is a collection of pre-compiled code (functions, routines, and subroutines) that programs can use to perform common tasks. Librari...
-
The su and su - commands in Linux are both used to switch to another user, typically the root user, but they behave differently in terms o...
-
The message of the Day (MOTD) is a banner message displayed automatically to users when they log into a linux system via a terminal or SSH. ...
-
Network File System (NFS) is a protocol that allows users to access and share files over a network as if they were on a local file system. I...
-
Linux is a popular operating system that powers many devices, from smartphones and laptops to servers and supercomputers. But what exactly...
-
SWAP Space in Linux is a dedicated area on a storage device (disk or SSD) used as a backup for system memory (RAM). It serves as an overflow...
-
One of the most important aspects of any operating system is how it organizes and manages the files and directories on the disk. Linux, bein...
-
If you are a computer user, you might have heard of the term "kernel" before. But what exactly is a kernel and what does it do? In...