linux下挂载新硬盘和分区的步骤

今天和大家分享一下在linux下挂载新硬盘的步骤。
演示的环境基于centos

[root@localhost etc]# uname -a
Linux localhost.localdomain 2.6.32-220.el6.x86_64 #1 SMP Tue Dec 6 19:48:22 GMT 2011 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost etc]# cat system-release
CentOS release 6.2 (Final)
[root@localhost etc]# 

先挂载了一个3G的硬盘查看磁盘空间的情况
[root@localhost etc]# fdisk -l
Disk /dev/sda: 42.9 GB, 42949672960 bytes
255 heads, 63 sectors/track, 5221 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: 0x0004daae

   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        4998    39832576   83  Linux
/dev/sda3            4998        5222     1802240   82  Linux swap / Solaris

Disk /dev/sdb: 3221 MB, 3221225472 bytes
255 heads, 63 sectors/track, 391 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/sdb doesn't contain a valid partition table

划分磁盘分区,分为4个主分区,最后写入磁盘。
[root@localhost etc]# fdisk /dev/sdb

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)

Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 4
First cylinder (1-391, default 1): 1
Last cylinder, +cylinders or +size{K,M,G} (1-391, default 391): 100

Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (101-391, default 101): 101
Last cylinder, +cylinders or +size{K,M,G} (101-391, default 391): 200

Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 3
First cylinder (201-391, default 201): 201
Last cylinder, +cylinders or +size{K,M,G} (201-391, default 391): 300

Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Selected partition 1
First cylinder (301-391, default 301): 301
Last cylinder, +cylinders or +size{K,M,G} (301-391, default 391): 391

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

Calling ioctl() to re-read partition table.
Syncing disks.
[root@localhost etc]# fdisk -l

再次查看分区情况,
Disk /dev/sdb: 3221 MB, 3221225472 bytes
255 heads, 63 sectors/track, 391 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: 0xe5f51a7b

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1             301         391      730957+  83  Linux
/dev/sdb2             101         200      803250   83  Linux
/dev/sdb3             201         300      803250   83  Linux
/dev/sdb4               1         100      803218+  83  Linux

Partition table entries are not in disk order

我就格式化第一个分区,采用文件系统ext3.

[root@localhost etc]# mkfs -t ext3 /dev/sdb1
mke2fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
45696 inodes, 182739 blocks
9136 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=188743680
6 block groups
32768 blocks per group, 32768 fragments per group
7616 inodes per group
Superblock backups stored on blocks: 
        32768, 98304, 163840

Writing inode tables: done                            
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 27 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.

创建一个临时目录,然后把分区挂载到这个目录下。
[root@localhost /]# mkdir test

[root@localhost /]# mount /dev/sdb1 /test
挂载后查看磁盘情况,就可以看到分区就在那了。
[root@localhost /]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda2              38G   32G  4.3G  89% /
tmpfs                 980M  288K  980M   1% /dev/shm
/dev/sda1             291M   32M  244M  12% /boot
/dev/sdb1             703M   17M  651M   3% /test

配置开机启动项
vi /etc/fstab 
LABEL=SWAP-sda2         swap                    swap    defaults        0 0
加入如下
/dev/sdb1               /test                    ext3    defaults        1 1
~                                                                               
5.    第5列为dump选项,设置是否让备份程序dump备份文件系统,0为忽略,1为备份。
6.    第6列为fsck选项,告诉fsck程序以什么顺序检查文件系统,0为忽略。

时间: 2024-09-23 16:40:13

linux下挂载新硬盘和分区的步骤的相关文章

Linux下添加新硬盘及分区格式化要点

Linux下添加新硬盘及分区格式化要点 预备知识 在为主机添加硬盘前,首先要了解linux系统下对硬盘和分区的命名方法. 在Linux下对IDE的设备是以hd命名的,第一个ide设备是hda,第二个是hdb.依此类推 一般主板上有两个IDE接口,一共可以安装四个IDE设备.主IDE上的两个设备分别对应hda和hdb,第二个IDE口上的两个设备对应hdc和hdd. 一般硬盘安装在主IDE的主接口上,所以是hda 光驱一般安装在第二个IDE的主接口上,所以是hdc(应为hdb是用来命名主IDE上的从

Linux下挂载新硬盘方法

 Linux的硬盘识别在/dev/下建立相应的设备文件.如 sda 表示第一块SCSI硬盘 hda 表示第一块IDE硬盘(即连接在第一个IDE接口的Master口上) scd0 表示第一个USB光驱通过fdisk -l 查看当前的设备和分区信息.注意,新硬盘没有分区信息,只是显示硬盘大小信息   分区并进行格式 使用fdisk命令对sdb进行分区 [root@localhost ~]# fdisk /dev/sdb 输入:n 表示新建分区 Command(m for help):n Comm

linux中挂载新硬盘到目录,并开机自动挂载例子

 挂载硬盘对于linux系统来讲是一个比较常见的问题了,下面我们来看看linux中挂载新硬盘到目录,并开机自动挂载例子紧,     今天,在整理图片时,发现根目录硬盘空间已经所剩无几了,而网站和所有相关文件主要放置在根下data目录(/data)里,但/home下是有空间,而又不想把文件放到/home下面去,只有再加一个新硬盘,对以后/data目录的文件管理也比较好. 那么就先关掉主机,再加上新硬盘(其它电脑使用过的500G硬盘),插上后再启动电脑. 接下来,就开始工作了: 1. 查看硬盘信息:

linux中挂载新硬盘到home目录的配置(开机自动挂载)

Linux的硬盘识别: 2.6 kernel以后,linux会将识别到的硬件设备,在/dev/下建立相应的设备文件.如: sda        表示第1块SCSI硬盘.# V, z   b, }2 F7 u' | hda        表示第1块IDE硬盘(即连接在第1个IDE接口的Master口上) scd0        表示第1个USB光驱. 当添加了新硬盘后,在/dev目录下会有相应的设备文件产生.cciss的硬盘是个例外,它的 设备文件在/dev/cciss/目录下.一般使用"fdis

Linux下挂载硬盘分区的几种方法_unix linux

Linux下挂载硬盘分区的几种方法 1.使用Autofs自动挂载分区 2.修改/etc/fstab 3.编写shell脚本,开机自动运行mount命令  方法一.使用Autofs  1.Autofs的特点:Autofs与Mount/Umount的不同之处在于,它是一种看守程序(deamon).如果它检测到用户正试图访问一个尚未挂接的文件系统,它就会自动检测该文件系 统,如果该文件系统存在,那么Autofs会自动将其挂接.另一方面,如果它检测到某个已挂接的文件系统在一段时间内没有被使用,那么Aut

Linux操作系统添加新硬盘方法_unix linux

#fdisk /dev/sdb  进入fdisk模式:  Command (m for help):p //查看新硬盘的分区  Command (m for help):n //创建新分区  Command action  e extended //输入e为创建扩展分区  p primary partition (1-4) //输入p为创建主分区,这里我们选择p  Partion number(1-4):1 //第一个扩展分区,按您需求能够最多分4个主分区  First Cylinder(1-1

Linux下挂载ntfs格式移动硬盘

工作中遇到linux系统 Red Hat Enterprise5.7 挂载希捷ntfs格式移动硬盘,会跳出一个ERROR提示框:The volume 'EAGET-NQH'user the ntfs file system which is not supported by your system. 其中'EAGET-NQH'为我的移动硬盘名. 查找资料发现linux支持ntfs格式分区需要安装ntfs-3g插件,下载安装即可, 什么是NTFS-3G NTFS-3G是一个开源软件,支持在Linu

电脑新硬盘如何分区

给硬盘分区是使用电脑的一门必修课,如果你空有一系列硬盘分区规划,却又不熟悉硬盘分区,那就真的太遗憾了.当我们组装好一台电脑之后,即将面对的就是为电脑安装操作系统了.安装操作系统前我们要做的就是硬盘分区与格式化.那么硬盘如何分区呢?很多菜鸟朋友对硬盘分区与格式都不够了解,下面小编就详细为新手朋友介绍硬盘如何分区. 给硬盘分区当然要用到分区工具,现在常用的硬盘分区工具有PartitionMagic(也就是我们常说的PM分区工具).diskgenius.这里推荐使用diskgenius分区工具,因为它

linux挂载3t硬盘-linux 怎样挂载3T硬盘,硬盘有数据,用于拷贝数据到服务器。

问题描述 linux 怎样挂载3T硬盘,硬盘有数据,用于拷贝数据到服务器. 请教 centos 怎样挂载3T硬盘,硬盘有数据,用于拷贝数据到服务器? 网上大部分都是用parted命令,挂载新盘,需要格式化.请大神指教,感激不尽.谢谢! 解决方案 linux恢复硬盘数据