Linux system disk formatting and manually adding swap partition

Linux system disk formatting and manually adding swap partition

Windows: Support NTFS, FAT

Linux supports file formats:

Run cat /etc/filesystems to view the file formats supported by Centos 7.

xfs Centos 7 default file system name is xfs

Mount view /dev/vda1 on / type ext4 (rw,relatime,data=ordered)


Disk formatting

mke2fs -t exet4 specifies the file system format to be formatted
mke2fs -b specifies the block size

For example: mke2fs -t ext4 -b 2048 /dev/sdb1 #Specify the file system format as ext4, the block size as 2048k, and format the /dev/sdb1 disk (the principle is the same as Windows formatting)

blkid View unmounted partitions

mkfs.ext4 = mke2fs -t ext4

mke2fs -b 8192 /dev/sdb1

Note: Regarding the distinction between 8192 and 4096:

When storing large files such as videos, 8192 is recommended to speed up reading and writing.
When storing small files, 4096 or 2048 is recommended.

When formatting the hard disk, 5% of the space will be reserved for the root user, which will take up a lot of space. Set the reserved space:

mke2fs -m 1 /dev/sdb1 Set the reserved space to 1%
mke2fs -m 0.1 /dev/sdb1 sets the reserved space to 0.1%
mkfs.ext4 -m 0.1 /dev/sdb1

If the file system format is not specified, the default is ext2.

mke2fs -i 8192 ext4 /dev/sdb1 sets 8192 bytes as one inode


Set the file format to xfs

mkfs.xfs /dev/sdb1

Swap space: up to 8G

1. Simulate disk

dd if=/dev/zero of=/newdisk bs=1M count=100
Notes:
Creating zero is not a space, it is a file
/dev/zero is a special device that contains a constant stream of "0"
If specifies the source device
ofSpecify the target device


Check the swap disk sizeCheck the swap disk size
du -sh /name

2. Formatting

swap format
mkswap /path


Add the newly created swap space to the original swap space.

First check the current swap space.

free -m

Hang it on the original swap space.


Tip: unsafe permission 0644, it is recommended to use 0600. Although the prompt appears, it will still be mounted to the original swap space.


To ensure security, you can modify permissions

chmod 0600 /newdisk

Uninstall the swap space and delete it directly to restore the original space.

1 swapoff /newdisk
2 rm -f /newdisk

blkid View file format

You may also be interested in:
  • Analysis of the Principle and Method of Implementing Linux Disk Partition
  • An article to understand Linux disks and disk partitions
  • How to implement Linux disk mounting, partitioning, and capacity expansion operations
  • Detailed explanation of Linux virtual machine root partition disk expansion space record
  • Linux disk partitioning practical examples (must read)
  • Detailed process of LINUX disk partitioning, formatting, mounting and uninstalling
  • How to use GPT partitioning on Linux disks larger than 2T
  • Linux parted disk partition implementation steps analysis

<<:  js to implement collision detection

>>:  A brief discussion on whether MySQL can have a function similar to Oracle's nvl

Recommend

vsCode generates vue templates with one click

1. Use the shortcut Ctrl + Shift + P to call out ...

Summary of Linux ps and pstree command knowledge points

The ps command in Linux is the abbreviation of Pr...

How to use DPlayer.js video playback plug-in

DPlayer.js video player plug-in is easy to use Ma...

Three methods of automatically completing commands in MySQL database

Note: The third method is only used in XSell and ...

How to isolate users in docker containers

In the previous article "Understanding UID a...

Detailed analysis of the blocking problem of js and css

Table of contents DOMContentLoaded and load What ...

MySQL master-slave replication delay causes and solutions

Table of contents A brief overview of the replica...

Example of using Vue built-in component keep-alive

Table of contents 1. Usage of keep-alive Example ...

How to enable the slow query log function in MySQL

The MySQL slow query log is very useful for track...

Summary of the top ten problems of MySQL index failure

Table of contents background 1. The query conditi...

How to operate json fields in MySQL

MySQL 5.7.8 introduced the json field. This type ...

React Hooks Usage Examples

Table of contents A simple component example More...

HTML uncommon tags optgroup, sub, sup and bdo example code

Optgroup is used in the select tag to make the dro...

Summary of basic usage of js array

Preface Arrays are a special kind of object. Ther...