Ubuntu16.04 中如何第二块磁盘

Posted ranxf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu16.04 中如何第二块磁盘相关的知识,希望对你有一定的参考价值。

本测试机有4块硬盘,初始意图想做一个磁盘阵列,但是在安装系统的时候不知道引导文件如何选择安装,所以暂时不使用磁盘阵列(后期研究)

检测硬盘能否被识别

[email protected]:/# fdisk -l

Disk /dev/sda: 465.8 GiB, 500107862016 bytes, 976773168 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: gpt Disk identifier: 59353137-DD3B-40FF-9656-314427DE1ADB 设备 Start 末尾 扇区 Size 类型 /dev/sda1 2048 1050623 1048576 512M EFI System /dev/sda2 1050624 960419839 959369216 457.5G Linux filesystem /dev/sda3 960419840 976771071 16351232 7.8G Linux swap Disk /dev/sdb: 465.8 GiB, 500107862016 bytes, 976773168 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: dos Disk identifier: 0xc48b3f11 设备 启动 Start 末尾 扇区 Size Id 类型 /dev/sdb1 2048 976773119 976771072 465.8G 83 Linux Disk /dev/sdc: 465.8 GiB, 500107862016 bytes, 976773168 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 /dev/sdd: 465.8 GiB, 500107862016 bytes, 976773168 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

上图中

dev/sda是系统安装时自动分区;

dev/sdb为手动格式化后的情况

dev/sdc和dev/sdd暂时未分区情况。

 

格式化磁盘

[email protected]:/# mkfs.ext4 /dev/sdb

挂载磁盘

 在本地硬盘中临时创建一个目录/wwwroot

并挂载第二块硬盘中的一个分区/dev/sdb1到/wwwroot

查看挂载是否成功。

[email protected]:/# mkdir /wwwroot
[email protected]:/# mount /dev/sdb1 /wwwroot/
[email protected]:/# df -h
文件系统        容量  已用  可用 已用% 挂载点
udev            3.8G     0  3.8G    0% /dev
tmpfs           778M  9.4M  769M    2% /run
/dev/sda2       451G   20G  408G    5% /
tmpfs           3.8G   56M  3.8G    2% /dev/shm
tmpfs           5.0M     0  5.0M    0% /run/lock
tmpfs           3.8G     0  3.8G    0% /sys/fs/cgroup
/dev/sda1       511M  3.6M  508M    1% /boot/efi
tmpfs           778M     0  778M    0% /run/user/121
tmpfs           778M   92K  778M    1% /run/user/1000
/dev/sdb1       459G   70M  435G    1% /wwwroot
[email protected]:/# 

卸载硬盘

#umount /dev/sdb1

 





以上是关于Ubuntu16.04 中如何第二块磁盘的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu挂载磁盘

ubuntu如何挂载硬盘

老男孩Linux学习 -- 关于添加第二块磁盘的那些事

Linux 分区新建,格式化、挂载

ubuntu 16.04磁盘扩容

ubuntu16.04 yum报错:There are no enabled repos. Run “yum repolist all“ to see the repos you have.(代码片段