首页 > 其他分享 >磁盘分区

磁盘分区

时间:2023-01-02 11:56:05浏览次数:47  
标签:512 default partition dev table 磁盘分区

1.磁盘分区

fdisk /dev/sda2

Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0x574721c3.

 2.添加新的分区

Command (m for help): n
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-39843839, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-39843839, default 39843839): +1G
Partition 1 of type Linux and of size 1 GiB is set

 3.保存并退出

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 22: Invalid argument.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)

 4.查看磁盘分区是否成功

fdisk -l /dev/sda2

Disk /dev/sda2: 20.4 GB, 20400046080 bytes, 39843840 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x574721c3

Device Boot Start End Blocks Id System
/dev/sda2p1 2048 2099199 1048576 83 Linux

 5.读取指定硬盘分区

 partprobe /dev/sda2
Error: Partition(s) 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64 on /dev/sda2 have been written, but we have been unable to inform the kernel of the change, probably because it/they are in use. As a result, the old partition(s) will remain in use. You should reboot now before making further changes.
bash-4.2# mkfs.ext4 /dev/sdb1
mke2fs 1.42.9 (28-Dec-2013)
Could not stat /dev/sdb1 --- No such file or directory

 6.格式化分区

 mkfs.ext4 /dev/sdb1
mke2fs 1.42.9 (28-Dec-2013)
Could not stat /dev/sdb1 --- No such file or directory

 

 

 7.创建挂载目录

mkdir /zhangxiang

 8.挂载

mount /dev/sdb1 /zhangxiang

 

标签:512,default,partition,dev,table,磁盘分区
From: https://www.cnblogs.com/zhangxiang1/p/17019664.html

相关文章

  • 磁盘分区步骤
    parted/dev/vdb(parted)mktablegpt//指定分区模式为gpt(parted)mkpartprimaryext403G......
  • Ansible磁盘分区
    #main.yaml----hosts:localvars:disks:-disk:/dev/sdbnumber:1start:0%end:50%fstype:x......
  • 20220804 02. 主机规划与磁盘分区
    2.1Linux与硬件的搭配虽然个人计算机各元件的主要接口是大同小异的,包括前面第零章计算机概论讲到的种种接口等,但是由于新的技术来得太快,Linux核心针对新硬件所纳入的驱......
  • Linux磁盘分区
    在Linux的文件系统中,有个很重要的概念就是挂载,,除了根文件系统,其他所有文件系统都要先挂载到根文件系统中的某个目录之后才能访问。所谓的根文件系统就是系统启动的时候安......
  • CentOS——磁盘分区
    Centos7-磁盘分区磁盘层次结构–磁盘分区方法情况一:磁盘分区–磁盘小于2Tfdisk情况二:磁盘分区–磁盘大于2Tcentos6:partedcentos7:fdisk一、磁盘小于2T情况,fdisk分区1......
  • 实验-Linux添加磁盘分区挂载以及CentOS下的文件系统
    概览实验项目名称CentOS7下的文件系统实验时间2022年10月17日实验类型□验证性□设计性□综合性一、实验目的1.掌握在虚拟机中......
  • linux磁盘分区 fdisk parted gdisk
    一、什么是分区以及分区的作用分区是将一个硬盘驱动器分成若干个逻辑驱动器,能够把硬盘连续的区块当作一个独立的磁盘分开使用。◇防止数据丢失:如果系统只......
  • 磁盘分区、扩容、逻辑卷
     1、使用fdisk命令创建分区fdisk/dev/vda      h #查看帮助      p #查看分区列表      l     #查看分区类型(ID)      n ......
  • @磁盘分区MBR/GPT
    文章目录​​1、MBR分区​​​​2、GPT分区​​​​3、硬盘自动挂载​​​​4、制作SWAP分区​​1、MBR分区1、安装新的硬盘2、查看硬盘lsblk[root@localhost~]#lsblkNA......
  • linux磁盘分区、格式化和挂载
    这篇文档主要是记录新加磁盘常用的操作。时间久了就会变得陌生。还是需要记录起来。 1.查看磁盘空间基本使用情况[root@htl-test01~]#df-hFilesystemSizeU......