当前位置:网站首页>Hard Disk Partitioning and Permanent Mounting
Hard Disk Partitioning and Permanent Mounting
2022-08-05 06:09:00 【Magic star】
Hard Disk Partitioning and Permanent Mounts
MBR partition
What is a hard disk: A computer hard disk is the main storage device of a computer.
The role of partitions
- Main partition: can be used directly, can be installed system
- Extended partition: cannot be used directly, it must be divided into logical partitions
- Logical partition: Relying on the extended partition, the space in the extended partition (with the operating system installed) is used
mbr partition:
Only partition the hard disk below 2T
A sector has 512 bytes, the first 446 bytes are the boot program
- Primary partition: serial number is 1-4
- Logical partition: sequence number starts from 5
- Extended partition: must be the primary partition
- The primary partition is not necessarily an extended partition
- The logical partition must not be the primary partition
gpt partition
It can have 128 partition tables and can partition hard disks above 2T
fdisk
Create a normal partition
Usage (fdisk disk name)
mkfs.xfs partition name (create filesystem)
mount: mount partition name folder name
Create a logical partition
Usage (fdisk hard drive name)
mkfs.xfs partition name (create filesystem)
mount: mount partition name folder name
Create a special partition (swap partition)
Usage (fdisk hard drive name)
mount: mount partition name folder name
Create a special partition swap
The partition type must be changed to 82 (swap partition)
t: Change the partition type
Permanent mount
[[email protected] ~]#vim /etc/fstab
[[email protected] ~]#mount -a
Mounting rules
1. A mount point can only mount one device at a time
2. A mount point mounts multiple devices at the same time, only the data of the last device can be seen, the data on other devices will be hidden
3. A device can be mounted to multiple mount points at the same time
4. Usually the mount point is usually an existing empty directory
If a user is mountingThe mount directory cannot be unmounted
I want to remount
mount -o remount /dev/sdb1 /mnt/
mount -o remount,ro /dev/sdb1 /mnt/
fuser -km /mnt/ ###Kill directly
MBR 446 before the master boot record 64 after the boot program Partition table 2 mark bit
1. Partition fidsk gdisk Primary partition extension logic
2. Create file system mkfs. File system type mkswap
3. Mountmount swapon
Repair file system:
dd if=/dev/zero of=/dev/sdb1 bs=512 count=1
dd copy
if copy from where what /dev/zero
ofIt is copied to /dev/sdb1
bs=512 once copied 512
count=1 copied once
边栏推荐
猜你喜欢
随机推荐
电子产品量产工具(1)- 显示系统实现
快问快答—腾讯云服务器常见问题解答
【UiPath2022+C#】UiPath Switch
【UiPath2022+C#】UiPath控制流程概述
【Day8】Knowledge about disk and disk partition
spark算子-wholeTextFiles算子
栈区中越界可能造成的死循环可能
入门文档01 series按顺序执行
【UiPath2022+C#】UiPath数据类型
dsf5.0新建页面访问时重定向到首页的问题
电子产品量产工具(4)-UI系统实现
【UiPath2022+C#】UiPath变量和参数
阿里云视频点播
通过单总线调用ds18b20的问题
入门文档08 条件插件
lvm逻辑卷及磁盘配额
将一句话的单词进行倒置(C语言纯代码)
Unity huatuo 革命性热更系列1.2 huatuo热更环境安装与示例项目
每日一题-单调栈
硬核!Cocos开发面试必备十问,让你offer拿到手软