Linux 磁盘管理--磁盘挂载

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 磁盘管理--磁盘挂载相关的知识,希望对你有一定的参考价值。

计算机标准进制为1024,但硬盘存储厂家进制为1000,内存进制为1024.存储的单位为字节。

1、查看LINUX硬盘分区

查看LINUX下的硬盘分区情况:

[[email protected] notepad]# fdisk -l

Disk /dev/sda: 16.1 GB, 16106127360 bytes
255 heads, 63 sectors/track, 1958 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: 0x000275b5

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          26      204800   83  Linux


(1) /dev/sda1为分区名称,一般按顺序为sda,sda1,sdb,sdb1,sdc依次类推。默认硬盘分为主分  

区、逻缉分区,主分区最多为4个,4个ID号。如果要建逻缉分区,则主分区最多为3个,逻缉分区占用一个主分区ID。

星号为默认启动项,表示活动分区;1表示柱面,26为结束住面;Blocks表示块;ID为16进制数字,表示分区类型;SYSTEM表示系统。

(2)fdisk常用操作

fdisk - Partition table manipulator for Linux

n-->添加新的分区
p-->打印分区的表
d-->删除分区表
w-->写入磁盘分区表
(3)格式化、挂载磁盘

计算机加入磁盘后,会被系统识别/dev/sd* 。我们需要使用该磁盘就需要对该磁盘进行分区。分区时需要给磁盘一个文件格式,常见的有FAT32、NTFS、EXT3、EXT4。

技术分享

技术分享

df -h 显示 /dev/sdb已挂载成功。但这种挂载方式为临时的,重启磁盘挂载消失,编缉/etc/fstab

在/etc/fstab添加最后一行内容,UUID=   /sdb    ext4    defaults    1 1  ,然后重启机器.

[[email protected] notepad]# vim /etc/fstab 

You have new mail in /var/spool/mail/root

技术分享

(4)验证  touch 123.txt

[[email protected] Desktop]# cd /sdb

[[email protected] sdb]# ls

lost+found

[[email protected] sdb]# touch 123.txt

[[email protected] sdb]# ls

123.txt  lost+found

[[email protected] sdb]# 


本文出自 “天马行空” 博客,请务必保留此出处http://keep11.blog.51cto.com/1443840/1791347

以上是关于Linux 磁盘管理--磁盘挂载的主要内容,如果未能解决你的问题,请参考以下文章

Linux下挂载新的磁盘

Linux下挂载新的磁盘

Linux 磁盘挂载分区

Linux添加磁盘和挂载

Linux挂载磁盘

Linux中挂载新的磁盘到指定目录或分区