TurboLinux11添加新硬盘方法

一.Linux的硬盘识别

2.6 kernel以后,linux会将识别到的硬件设备,在/dev/下建立相应的设备文件.如:

sda 表示第1块SCSI硬盘.hda 表示第1块IDE硬盘(即连接在第1个IDE接口的Master口上).scd0 表示第1个USB光驱.

当添加了新硬盘后,在/dev目录下会有相应的设备文件产生.cciss的硬盘是个例外,它的
设备文件在/dev/cciss/目录下.一般使用”fdisk -l”命令可以列出系统中当前连接的硬盘
设备和分区信息.新硬盘没有分区信息,则只显示硬盘大小信息.

二.在linux系统中添加新硬盘

下面说明一下,在GTES 11上,添加一块10G硬盘到第一个IDE口的Slave接口上.

安装好硬盘后,开机进入Turbolinux.以root身份登录.
执行fdisk -l命令显示当前系统的硬盘设备.

[root@g11-64-1 ~]# fdisk -lDisk /dev/hda: 21.4 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System/dev/hda1 * 1 13 104391 83 Linux/dev/hda2 14 89 610470 82 Linux swap / Solaris/dev/hda3 90 2610 20249932+ 83 LinuxDisk /dev/hdb: 10.7 GB, 10737418240 bytes255 heads, 63 sectors/track, 1305 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesDisk /dev/hdb doesn't contain a valid partition table[root@g11-64-1 ~]#

显示hdb没有分区信息,大小为10G.
使用fdisk命令对hdb进行分区.

[root@g11-64-1 ~]# fdisk /dev/hdbDevice contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabelBuilding a new DOS disklabel. Changes will remain in memory only,until you decide to write them. After that, of course, the previouscontent won't be recoverable.The number of cylinders for this disk is set to 1305.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)Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)输入: n 表示新建分区.Command (m for help): nCommand action e extended p primary partition (1-4)输入: p 表示建立一个原始分区.pPartition number (1-4): 1输入: 1 表示此分区编号为1.First cylinder (1-1305, default 1):输入: 回车 表示使用默认起始柱面号.Using default value 1Last cylinder or +size or +sizeM or +sizeK (1-1305, default 1305):输入: 回车 表示使用默认结束柱面号.即此分区使用整个硬盘空间.Using default value 1305Command (m for help): w输入: w 存盘,退出fdisk.The partition table has been altered!Calling ioctl() to re-read partition table.Syncing disks.

再使用fdisk -l命令查看分区情况.

[root@g11-64-1 ~]# fdisk -lDisk /dev/hda: 21.4 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System/dev/hda1 * 1 13 104391 83 Linux/dev/hda2 14 89 610470 82 Linux swap / Solaris/dev/hda3 90 2610 20249932+ 83 LinuxDisk /dev/hdb: 10.7 GB, 10737418240 bytes255 heads, 63 sectors/track, 1305 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System/dev/hdb1 1 1305 10482381 83 Linux

显示/dev/hdb上有一个hdb1分区,为linux格式.
分区后,需要对这个分区进行格式化.

[root@g11-64-1 ~]# mkfs.ext3 /dev/hdb1mke2fs 1.39 (29-May-2006)Filesystem label=OS type: LinuxBlock size=4096 (log=2)Fragment size=4096 (log=2)1310720 inodes, 2620595 blocks131029 blocks (5.00%) reserved for the super userFirst data block=0Maximum filesystem blocks=268435456080 block groups32768 blocks per group, 32768 fragments per group16384 inodes per groupSuperblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632Writing inode tables: doneCreating journal (32768 blocks): doneWriting superblocks and filesystem accounting information: doneThis filesystem will be automatically checked every 39 mounts or180 days, whichever comes first. Use tune2fs -c or -i to override.

将新建分区挂在到/mnt/hdb1上.

[root@g11-64-1 ~]# mkdir /mnt/hdb1[root@g11-64-1 ~]# mount /dev/hdb1 /mnt/hdb1[root@g11-64-1 ~]# df -hFilesystem Size Used Avail Use% Mounted on/dev/hda3 19G 8.2G 9.7G 46% //dev/hda1 99M 16M 79M 17% /boottmpfs 250M 0 250M 0% /dev/shm/dev/hdb1 9.9G 151M 9.2G 2% /mnt/hdb1[root@g11-64-1 ~]#

hdb1已挂载到/mnt/hdb1上,剩余空间为9.2G.
在此分区上创建文件.

[root@g11-64-1 ~]# cd /mnt/hdb1[root@g11-64-1 hdb1]# ls > a[root@g11-64-1 hdb1]# ls -hltotal 20K-rw-r--r-- 1 root root 13 Nov 3 08:45 adrwx------ 2 root root 16K Nov 3 08:44 lost+found[root@g11-64-1 hdb1]#

卸载hdb1分区.

[root@g11-64-1 hdb1]# cd[root@g11-64-1 ~]# umount /mnt/hdb1[root@g11-64-1 ~]# df -hFilesystem Size Used Avail Use% Mounted on/dev/hda3 19G 8.2G 9.7G 46% //dev/hda1 99M 16M 79M 17% /boottmpfs 250M 0 250M 0% /dev/shm[root@g11-64-1 ~]#

三.设置新硬盘开机自动挂载

在/etc/fstab中添加新硬盘的挂载信息.添加下面一行:

/dev/hdb1 /mnt/hdb1 ext3 defaults 1 2

这样,每次开机后,系统会自动将/dev/hdb1挂载到/mnt/hdb1上.

(0)

相关推荐

  • 虚拟机怎么添加新硬盘

    现在有很多人使用电脑时都会接触到虚拟机,有些用户想知道怎么添加新硬盘,接下来小编就给大家介绍一下具体的操作步骤.具体如下:1. 首先第一步打开电脑中的虚拟机软件,根据下图箭头所指,将它处于关机状态.2 ...

  • Linux虚拟机添加新硬盘的全程图解

    虚拟机中的Linux添加新硬盘的方法 操作方法 01 打开VMware Workstation 02 1.编辑虚拟机设置 03 2.硬件-添加-硬盘-下一步 04 3.然后出现如下图:选择" ...

  • 在linux系统下添加新硬盘

    fdisk -l ## 这里是查看目前系统上有几块硬盘 Disk /dev/sda: 36.4 GB, 36401479680 bytes 255 heads, 63 sectors/track, 4 ...

  • CentOS下添加新硬盘并分区格式化的详细步骤

    下面看我操作的步骤: 1.先用Fdisk -l 来查看当前状态下磁盘情况 [root@linux1 ~]# fdisk -l Disk /dev/hda: 5368 MB, 5368709120 by ...

  • Lightroom文件夹同步更新导入添加新照片方法

      Lightroom文件夹同步更新导入添加新照片方法 1.开始我们导入的风景文件夹里只有一张图像,可是后来我们在资源管理器中有添加了2张图像,那么怎么才能快速的同步添加到Lightroom中来呀. ...

  • Linux系统下添加新硬盘,分区,格式化相关步骤

    预备知识 在我们添加硬盘前,首先要了解linux系统下对硬盘和分区的命名方法。 在Linux下对IDE的设备是以hd命名的,第一个ide设备是hda,第二个是hdb。依此类推 我们一般主板上有两个ID ...

  • linux添加新硬盘的详细经过

    拿到新盘以后就关机、插线、重开机。一切正常。 进入系统以后,查看 /dev下多了个 hdb,然后开始分区 执行 fdisk /dev/hdb 进入 fdisk的界面,打命令 n新建一个分区。 然后提示 ...

  • Win7桌面小工具图片拼图板添加新图片方法(默认只有11张图片)

    Win 7桌面小工具图片拼图板默认的话只有11张图片,我一个朋友非常喜欢玩这个游戏,几个星期就玩通关了,然后没图片可以玩了,感觉好没意思。然后就问我可以不可以自己找些图片添加进去,然后我把加图片的方法 ...

  • CentOS在不重启的情况下为其虚拟机添加新硬盘的教程

    通常在你在虚拟机中添加一块新硬盘时,你可能会看到新硬盘没有自动加载.这是因为连接到硬盘的SCSI总线需要重新扫描来使得新硬盘可见.这里有一个简单的命令来重新扫描SCSI总线和SCSI设备.下面这几步在 ...