2013年(350)
分类: LINUX
2013-04-27 09:55:33
HT = How To
HT = 好土
准备将日常操作中,各项需求的实际操作案例,整理成"如何做"的系列文章。这个"如何做"可能早已被人无数次的做过无数人说过,因此也叫好土系列文章,黑黑。
写这个系列文章的本意,一方面记录一些操作的实施案例,便于后续遇到类似问题时,即使遗忘也能快速找到参照。
另一方面,也希望这类文章,能对遇到相同问题的朋友有所帮助。
今天贴出第一篇,正文如下:
================================================
再大的磁盘也会有不够用的时候,因此实际操作中遇到加硬盘实在是再正常不过。中的磁盘非常简单,下呢,其实也不复杂,下面三思来演示在linux下添加新硬盘的操作。
下面所有操作的前提是硬件已经就绪,磁盘没有任何问题,操作系统也能够正常识别。
首先执行fdisk查看当前的磁盘信息:
[root@jssnode1 ~]# fdisk -l
Disk /dev/sda: 10.7 GB, 10737418240 bytes
255 heads, 63 sectors/track, 1305 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 1305 10377990 8e Linux LVM
Disk /dev/sdb: 16.1 GB, 16106127360 bytes
255 heads, 63 sectors/track, 1958 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk /dev/sdb doesn't contain a valid partition table由上述信息可以看出,当前系统包含两块磁盘设置,/dev/sda和/dev/sdb,其中sda1已经分区并正常使用,/dev/sdb就是新增加的磁盘,下面就要对该磁盘进行处理,让linux能够正确访问,并顺利在其上存储数据。
接下来要做的,是首先对/dev/sdb进行分区,分区也是使用fdisk命令,操作如下:
[root@jssnode1 ~]# fdisk /dev/sdb
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel. Changes will remain in memory only,
until you decide to write them. After that, of course, the previous
content won't be recoverable.
The number of cylinders for this disk is set to 1958.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
.....................
.....................上述提示信息,对于不同版本的操作系统,显示的结果可能会稍有差异,不用管它,重要的是看到下面的提示符:
正如提示符中显示的那样,输入m查看帮助,具体哪个字符对应哪项操作,输入m对照提示就能理解,这里与我们操作相关的,有两项命令:
这里直接输入n,提示信息如下:
Command (m for help): n
Command action
e extended
p primary partition (1-4)接下来是提示创建的分区类型:
这里我们选择创建主分区,输入p即可:
p
Partition number (1-4): 1
First cylinder (1-1958, default 1): 1
Last cylinder or +size or +sizeM or +sizeK (1-1958, default 1958): 1958上面提示输入该分区开始和结束的cylinder(柱面),如果要为该磁盘创建多个分区的话,那么注意输入正确的开始和结束cylinder即可。这里三思准备将/dev/sdb创建为一个区,因此结束的cylinder直接输入为最大值。
分区创建完成后,输入w保存分区信息(当然啦,你也可以先输入p查看分区信息),如下:
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.分区的工作完成了,下面要对新分区进行格式化,格式化是使用mkfs命令,三思计划将新的分区格式化为ext3文件系统,输入命令如下:
[root@jssnode1 ~]# mkfs -t ext3 -c /dev/sdb1
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
1966080 inodes, 3931900 blocks
196595 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4026531840
120 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208
Checking for bad blocks (read-only test): done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 24 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.然后,为新的分区创建一个点,这里将其挂载到/data,操作如下:
[root@jssnode1 ~]# mkdir /data
[root@jssnode1 ~]# mount /dev/sdb1 /datadf 命令查看:
[root@jssnode1 ~]# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
8030648 2709616 4906520 36% /
/dev/sda1 101086 12372 83495 13% /boot
tmpfs 513532 0 513532 0% /dev/shm
/dev/sdb1 15480800 169592 14524828 2% /data不过mount命令挂载点仅在服务器当前状态下有效,一旦重启后mount的挂载点就没有了,如果不想每次重启后都重新执行mount命令挂载的话,就需要修改/etc/fstab来配置:
增加下列内容:
完成后输入:wq保存退出,ok,linux下增加磁盘 的操作 至此竣工。