Home > Operation and Maintenance > Linux Operation and Maintenance > What does linux hard disk mount mean?

What does linux hard disk mount mean?

藏色散人
Release: 2023-03-20 10:22:57
Original
6925 people have browsed it

Linux hard disk mounting refers to attaching a device to an existing directory; mounting refers to the operating system making a computer file on a storage device (such as a hard disk, CD-ROM or shared resource) A process by which directories are made accessible to users through a computer's file system.

What does linux hard disk mount mean?

#The operating environment of this tutorial: linux5.9.8 system, Dell G3 computer.

What does Linux hard disk mounting mean?

Linux disk mounting

1. Mounting concept

Mounting (mounting) refers to the use of a storage device by the operating system The process by which computer files and directories on a computer (such as a hard drive, CD-ROM, or shared resource) become accessible to users through the computer's file system.

In the Windows operating system: Mounting usually refers to assigning a drive letter to a disk partition (including a virtualized disk partition).

In the Linux operating system: It refers to attaching a device (usually a storage device) to an existing directory.

2. Check the disk status (mounted information)

df -h
Copy after login

3. Check the current Disk partition status

If there is no output content, this situation means that the user rights are insufficient. You need to use root to use

fdisk -l
Copy after login

to see clearly There is still a lot of unused space in /dev/vdb

4. Partition

fdisk /dev/vdb
Copy after login

Check the partition situation

lsblk
Copy after login

5. Formatting

mkfs.xfs /dev/vdb1mkfs -t ext4 /dev/vdb1
Copy after login

7. Mount

Mount the device /dev/vdb1 to the /data directory

mkdir /datamount /dev/vdb1 /data
Copy after login

8. Check the situation after mounting

df -hfdisk -llsblk -f
Copy after login

9. Implement automatic mounting

Implement automatic mounting by modifying /etc/fstab. After the addition is completed, execute mount -a. It can take effect

vim /etc/fstab# 添加一行/dev/vdb1 /data                                 ext4    defaults        0 0
Copy after login

10. Restart verification

After mounting, be sure to restart and verify it. If you mount it incorrectly, disappear, you can proceed to the next step of installation, otherwise all the things you installed will be formatted

If you find that the mount has disappeared after restarting, check what is configured and mounted in vim /etc/fstab Not consistent.

Recommended study: "linux video tutorial"

The above is the detailed content of What does linux hard disk mount mean?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template