服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Linux - 详解linux添加硬盘分区挂载教程

详解linux添加硬盘分区挂载教程

2022-03-07 16:44渣渣辉 Linux

本篇文章主要介绍了详解linux添加硬盘分区挂载教程,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

基本步骤:分区——格式化——挂载——写入文件

1、首先用fdisk -l命令查看添加的硬盘名称,可以看到sdb为新增的硬盘

?
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
[root@oracle ~]# fdisk -l
 
Disk /dev/sdb: 21.5 GB, 21474836480 bytes
 
255 heads, 63 sectors/track, 2610 cylinders
 
Units = cylinders of 16065 * 512 = 8225280 bytes
 
Sector size (logical/physical): 512 bytes / 512 bytes
 
I/O size (minimum/optimal): 512 bytes / 512 bytes
 
Disk identifier: 0x00000000
 
Disk /dev/sda: 21.5 GB, 21474836480 bytes
 
255 heads, 63 sectors/track, 2610 cylinders
 
Units = cylinders of 16065 * 512 = 8225280 bytes
 
Sector size (logical/physical): 512 bytes / 512 bytes
 
I/O size (minimum/optimal): 512 bytes / 512 bytes
 
Disk identifier: 0x0006b59c
 
Device Boot   Start     End   Blocks  Id System
 
/dev/sda1  *      1     39   307200  83 Linux
 
Partition 1 does not end on cylinder boundary.
 
/dev/sda2       39    2358  18631680  83 Linux
 
/dev/sda3      2358    2611   2031616  82 Linux swap / Solaris

2、进行分区,输入m查看提示

?
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
[root@oracle ~]# fdisk /dev/sdb
 
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
 
Building a new DOS disklabel with disk identifier 0x09f38795.
 
Changes will remain in memory only, until you decide to write them.
 
After that, of course, the previous content won't be recoverable.
 
 
 
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
 
 
 
WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
 
     switch off the mode (command 'c') and change display units to
 
     sectors (command 'u').
 
 
 
Command (m for help): m
 
Command action
 
  a  toggle a bootable flag
 
  b  edit bsd disklabel
 
  c  toggle the dos compatibility flag
 
  d  delete a partition
 
  l  list known partition types
 
  m  print this menu
 
  n  add a new partition
 
  o  create a new empty DOS partition table
 
  p  print the partition table
 
  q  quit without saving changes
 
  s  create a new empty Sun disklabel
 
  t  change a partition's system id
 
  u  change display/entry units
 
  v  verify the partition table
 
  w  write table to disk and exit
 
  x  extra functionality (experts only)

分析:主要参数的解析

1. 输入 m 显示所有命令列示。

2. 输入 p 显示硬盘分割情形,打印分区表。

3. 输入 a 设定硬盘启动区。

4. 输入 n 创建新的硬盘分割区。

  4.1. 输入 e 硬盘为[延伸]分割区(extend)。

  4.2. 输入 p 硬盘为[主要]分割区(primary)。

5. 输入 t 改变硬盘分割区属性。          

  1. t:分区系统id号
  2. L:82:linux swap
  3. 83:linux
  4. 86:NTFS window分区

6. 输入 d 删除硬盘分割区属性。

7. 输入 q 结束不存入硬盘分割区属性。

8. 输入 w 结束并写入硬盘分割区属性

3、输入n创建新的硬盘分区——输入p创建主分区——输入1设置一个分区——回车——回车(默认全部空间)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Command (m for help): n
 
Command action
 
  e  extended                                  ···扩展分区
 
  p  primary partition (1-4)                          ···主分区
 
p
 
Partition number (1-4): 1
 
First cylinder (1-2610, default 1):
 
Using default value 1
 
Last cylinder, +cylinders or +size{K,M,G} (1-2610, default 2610):
 
Using default value 2610

4、输入p查看分区情况——输入w保存退出(一定要w保存不然无效)

?
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
Command (m for help): p
 
 
 
Disk /dev/sdb: 21.5 GB, 21474836480 bytes
 
255 heads, 63 sectors/track, 2610 cylinders
 
Units = cylinders of 16065 * 512 = 8225280 bytes
 
Sector size (logical/physical): 512 bytes / 512 bytes
 
I/O size (minimum/optimal): 512 bytes / 512 bytes
 
Disk identifier: 0x09f38795
 
 
 
  Device Boot   Start     End   Blocks  Id System
 
/dev/sdb1        1    2610  20964793+ 83 Linux
 
 
 
Command (m for help): w
 
The partition table has been altered!
 
 
 
Calling ioctl() to re-read partition table.
 
Syncing disks.

5、mkfs命令格式化磁盘

?
1
2
3
[root@oracle ~]# mkfs.ext4 /dev/sdb
 
mkfs.ext4: invalid fragment size - /dev/sdb

6、mount命令挂载分区

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@oracle ~]# mount /dev/sdb /oracle/
 
You have new mail in /var/spool/mail/root
 
[root@oracle ~]# df -TH
 
Filesystem   Type  Size Used Avail Use% Mounted on
 
/dev/sda2   ext4  19G  11G 7.3G 60% /
 
tmpfs     tmpfs 2.1G  74k 2.1G  1% /dev/shm
 
/dev/sda1   ext4  297M  29M 253M 11% /boot
 
/dev/sdb    ext4  22G  47M  20G  1% /oracle

7、添加到/etc/fstab文件下保存退出否则重启后硬盘消失

?
1
/dev/sdb    /oracle     ext4  defaults,noatime    0 0

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/Dev0ps/p/8807939.html

延伸 · 阅读

精彩推荐
  • Linux在Linux系统中创建新的亚马逊AWS访问密钥的方法

    在Linux系统中创建新的亚马逊AWS访问密钥的方法

    如何在Linux系统中创建新的亚马逊AWS访问密钥?我在配置一个需要访问我的亚马逊AWS帐号的应用时被要求提供AWS访问密钥ID和秘密访问密钥,我怎样创建一个...

    Linux教程网6182019-10-30
  • Linux理解 Linux/Unix 登录脚本的技巧

    理解 Linux/Unix 登录脚本的技巧

    有一些常见的情况,例如从Debian的包管理程序到Iaas的管理中,很多任务需要设置环境变量才能正常运行。 有时,程序通常只需要在 登陆时运行一次,例如...

    未知1042023-05-12
  • LinuxLinux系统下无法卸载挂载的目录怎么办?

    Linux系统下无法卸载挂载的目录怎么办?

    我们在日常运维中经常性会遇到需要进行磁盘的扩容、卸载、挂载等操作,但是有时候这个系统上跑的应用并没有停止或者有其他的运维同事在操作这个目...

    今日头条10302020-12-30
  • Linuxlinux top命令详解

    linux top命令详解

    这篇文章主要介绍了linux top命令详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    sparkdev5622022-03-01
  • Linuxlinux设置tomcat自启动的方法

    linux设置tomcat自启动的方法

    这篇文章主要介绍了linux设置tomcat自启动的方法,需要的朋友可以参考下...

    Linux教程网8512021-10-10
  • Linuxlinux驱动程序开发详细介绍

    linux驱动程序开发详细介绍

    前提,一般来说内核代码的错误可能会引起一个用户进程的死亡,或者整个系统的瘫痪,更严重的后果,可能导致磁盘损伤~因此建议最好有一台实验机进行...

    Linux教程网5392019-12-17
  • Linux将 Linux 终端与 Nautilus 文件管理器结合起来

    将 Linux 终端与 Nautilus 文件管理器结合起来

    Nautilus 是 GNOME 桌面环境中的图形化文件浏览器。你可以使用它来访问和管理系统中的文件和文件夹。 尽管并非所有人都喜欢使用终端来管理文件和目录,...

    未知812023-08-08
  • Linuxssh 登录很慢该如何解决

    ssh 登录很慢该如何解决

    这篇文章主要介绍了ssh 登录很慢该如何解决的相关资料,这里提供了两种方法,DNS反向解析及关闭ssh的gssapi认证的解决办法,需要的朋友可以参考下...

    linuxeye9922021-12-16