有空闲分区(如hda5)的情况, 步骤如下:
1. mkswap /dev/hda5
2. swapon /dev/hda5
如要自动启动, 则在/etc/fstab中把此分区加入;
没有空闲分区时, 可以使用一个大文件建立, 步骤如下:
1. dd if=/dev/zero of=swap1 bs=1024 count=655360
2. mkswap swap1 655360
3. swapon swap1
添加硬盘
首先要了解linux系统下对硬盘和分区的命名方法。
在Linux下对IDE的设备是以hd命名的,第一个ide设备是hda,第二个是hdb,依此类推。
我们一般主板上有两个IDE接口,一共可以安装四个IDE设备。主IDE上的两个设备分别对应hda和hdb,第二个IDE口上的两个设备对应hdc和hdd。
一般我们的硬盘安装在主IDE的主接口上,所以是hda。
光驱一般安装在第二个IDE的主接口上,所以是hdc(应为hdb是用来命名主IDE上的从接口)。
SCSI接口设备是用sd命名的,第一个设备是sda,第二个是sdb,依此类推。
分区是用设备名称加数字命名的。例如hda1代表hda这个硬盘设备上的第一个分区。
每个硬盘可以最多有四个主分区,作用是1-4命名硬盘的主分区。逻辑分区是从5开始的,每多一个分区,数字加以就可以。
比如我们一般的系统都有一个主分区用来引导系统,这个分区对应我们常说的C区,在linux下命名是hda1。后面我们分三个逻辑分区对应常说的D、E、F,在linux下命名是hda5、hda6、hda7
给硬盘分区
在slackware下有两个分区软件fdisk和cfdisk
例如我们已经有一个硬盘了,现在添加另一个硬盘到系统
那么我们根据命名规则知道这个新添加的硬盘应该是hdb。
我们用下面命令给硬盘分区:
fdisk /dev/hdb
也可以用cfdisk来分区,命令:
cfdisk /dev/hdb
格式化硬盘
格式化成ext3格式
mkfs.ext3 /dev/hdb1
格式化成reiserfs的格式
mkfs.reiserfs /dev/hdb1
让硬盘启动自动挂载
例如挂载/dev/hdb1分区到/mnt/hd目录下
用vi编辑/etc/fstab文件,加入如下内容:
/dev/dhb1 /mnt/hd reiserfs defaults
[root@localhost gxlinux]# df -Th
#查看已经挂载上的文件分区大小以及格式(当然你的系统必须有空闲的空间不用了)
/dev/sda1 ext3 2.9G 2.2G 505M 82% /
/dev/sda2 ext3 965M 22M 894M 3% /home
tmpfs tmpfs 345M 12K 345M 1% /dev/shm
[root@localhost gxlinux]# /sbin/fdisk /dev/sda
#如果你有第二块硬盘,那么后面的设备符号是/dev/sdb,第三块以此类推
The number of cylinders for this disk is set to 1044.
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)
Command (m for help): m #查看fdisk命令的帮助
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): p #打印/查看已有的分区表
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x000e25d9
Device Boot Start End Blocks Id System
/dev/sda1 * 1 382 3068383+ 83 Linux
/dev/sda2 383 509 1020127+ 83 Linux
/dev/sda3 510 636 1020127+ 82 Linux swap / Solaris
Command (m for help): n #开始增加新的分区
Command action
e extended #扩展分区
p primary partition (1-4) #主分区,一块硬盘中可以有4个主分区
#例如:XP下C盘为主分区,DEF为逻辑分区(DEF合起来就是扩展分区)
e #增加扩展分区
Selected partition 4 #分区4作为扩展分区,分区4开始是未分配空闲空间
First cylinder (637-1044, default 637): <Enter>
Using default value 637 #分区的开头,1044是块结尾
Last cylinder or +size or +sizeM or +sizeK (637-1044, default 1044): <Enter>
#也可在这里直接输入想要建立分区的大小,比如+5000MB,表示建立5000MB大小的分区
Using default value 1044 #分区的结尾
Command (m for help): n #建立完扩展分区,然后建立逻辑分区
First cylinder (637-1044, default 637): <Enter>
Using default value 637
Last cylinder or +size or +sizeM or +sizeK (637-1044, default 1044): <Enter>
Using default value 1044
Command (m for help): p #建立完了逻辑分区,打印/查看
#可以看到增加了一个分区,逻辑分区是建立在扩展分区上的
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x000e25d9
Device Boot Start End Blocks Id System
/dev/sda1 * 1 382 3068383+ 83 Linux
/dev/sda2 383 509 1020127+ 83 Linux
/dev/sda3 510 636 1020127+ 82 Linux swap / Solaris
/dev/sda4 637 1044 3277260 5 Extended
/dev/sda5 637 1044 3277228+ 83 Linux
Command (m for help): w #把新的分区表写入并保存,记住一定要保存
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: 设备或资源忙.
The kernel still uses the old table.
The new table will be used at the next reboot.
Syncing disks.
[root@localhost gxlinux]# df -Th
文件系统 类型 容量 已用 可用 已用% 挂载点
/dev/sda1 ext3 2.9G 2.2G 505M 82% /
/dev/sda2 ext3 965M 22M 894M 3% /home
tmpfs tmpfs 345M 12K 345M 1% /dev/shm
[root@localhost gxlinux]# /sbin/mkfs.ext3 /dev/sda5
#还可以使用/sbin/mkfs –t ext3 /dev/sda5
#其实我们已经看到在fdisk命令中已经自动将其格式化为ext3格式了
mke2fs 1.40.2 (12-Jul-2007)
warning: 107 blocks unused.
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
410400 inodes, 819200 blocks
40965 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=838860800
25 block groups
32768 blocks per group, 32768 fragments per group
16416 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912
Writing inode tables: done
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 35 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@localhost gxlinux]# /sbin/e2label /dev/sda5 backup #给新分区添加一个标签
[root@localhost gxlinux]# mkdir /mnt/bak
[root@localhost gxlinux]# mount /dev/sda5 /mnt/bak #将新分区挂载到指定目录上
[root@localhost gxlinux]# df -Th #这时候就可以看到挂载上了
/dev/sda1 ext3 2.9G 2.2G 505M 82% /
/dev/sda2 ext3 965M 22M 894M 3% /home
tmpfs tmpfs 345M 12K 345M 1% /dev/shm
/dev/sda5 ext3 3.1G 69M 2.9G 3% /mnt/bak
[root@localhost gxlinux]# vim /etc/fstab #添加一行到/etc/fstab中开机自动挂载
#其实不用设置,系统也可以开机自动挂载的,因为它的格式跟linux系统格式是一样的
[root@localhost gxlinux]# cat /etc/fstab
LABEL=/home /home ext3 defaults 1 2
tmpfs /dev/shm tmpfs defaults 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
LABEL=SWAP-sda3 swap swap defaults 0 0
LABEL=backup /mnt/bak ext3 defaults 1 2