- 浏览: 283188 次
- 性别:
文章分类
最新评论
一.总结一下CentOS的磁盘分区:
1.查看硬盘内的相关信息,看是否可以继续进行分区(我的虚拟机中只有一块硬盘,为/dev/sda,别的Linux版本可能是/dev/hda)
[root@bogon ~]# fdisk /dev/sda
The number of cylinders for this disk is set to 2610.
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)
#2610表示共有2610个柱面,故分区只可以到第2610
Command (m for help): m #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): p
Disk /dev/sda: 21.4 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1912 15358108+ 83 Linux
/dev/sda2 1913 1979 538177+ 82 Linux swap / Solaris
#从/edv/sda2可看出才分到1979,总共可分到2610,故可在进行分区
2.继续新增分区
Command (m for help): n #输入n,新增分区
Command action
e extended #拓展分区
p primary partition (1-4) #主分区
e #添加拓展分区
Partition number (1-4): 3 #随便填一个没有的分区号,注意最多有四个主分区,若还想多分,则必须是3个主分区再加拓展分区
First cylinder (1980-2610, default 1980):
Using default value 1980
Last cylinder or +size or +sizeM or +sizeK (1980-2610, default 2610): #也可自己选择大小如:+1G
Using default value 2610
Command (m for help): p #打印
Disk /dev/sda: 21.4 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1912 15358108+ 83 Linux
/dev/sda2 1913 1979 538177+ 82 Linux swap / Solaris
/dev/sda3 1980 2610 5068507+ 5 Extended
Command (m for help): d #删除分区
Partition number (1-5): 3
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 3
First cylinder (1980-2610, default 1980):
Using default value 1980
Last cylinder or +size or +sizeM or +sizeK (1980-2610, default 2610):
Using default value 2610
Command (m for help): p
Disk /dev/sda: 21.4 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1912 15358108+ 83 Linux
/dev/sda2 1913 1979 538177+ 82 Linux swap / Solaris
/dev/sda3 1980 2610 5068507+ 83 Linux
Command (m for help): w #保存离开,若是练习则输入q,不保存离开
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@bogon ~]# reboot
3.磁盘格式化:mke2fes -j -L "fdiskTest" /dev/sda3 #将刚刚建立的/dev/sda3格式化为ext3,且名称为fdiskTest
命令执行完如下:
mke2fs 1.39 (29-May-2006)
Filesystem label=fdiskTest
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
633984 inodes, 1267126 blocks
63356 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1300234240
39 block groups
32768 blocks per group, 32768 fragments per group
16256 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 34 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@bogon ~]#
4.磁盘检验:fsck -C -t ext3 /dev/sda3 #检查前面我们建立的/dev/sda3设备
fsck 1.39 (29-May-2006)
e2fsck 1.39 (29-May-2006)
fdiskTest: clean, 11/633984 files, 55186/1267126 blocks
[root@bogon ~]#
5.磁盘载入:将刚建立的/dev/sda3载入到/fdiskTest
mkdir /fdiskTest
mount -t ext3 /dev/sda3 /fdiskTest
df
6.设置启动载入
在/etc/fstab中设置
vi /etc/fstab
#在文件中添加 LABEL=fdiskTest /fdiskTest ext3 defaults 0 0
补充:
查看系统分区情况命令: fd -h
发表评论
-
eclipse下配置hadoop插件
2012-12-13 20:31 745http://phz50.iteye.com/bl ... -
virtualbox设置共享文件夹
2012-10-19 16:28 920主机:win7 虚拟机:ubuntu10.04 步 ... -
Oracle VM VirtualBox各种显示模式切换 热键
2012-10-19 14:24 2157里面有个HOME键,注意这个HOME键不一定是键盘上的HOME ... -
Ubuntu下Google Chrome字体模糊的完美解决方案
2012-04-23 12:35 2655整理自:http://diybbs.zol.com.cn/1/ ... -
VirtualBox网络连接小结
2012-04-19 17:00 3593转自:http://www.xcar.com.cn/bbs/v ... -
UBUNTU开启TELNET服务
2011-12-03 15:48 1049源自: http://forum.ubuntu.org.c ... -
搜索所v
2011-12-03 15:18 0斯蒂芬 -
tarball的管理与建议
2011-12-03 10:57 1275源自:http://hi.baidu.com/il ... -
Linux启动过程(详细说明)
2011-12-02 16:21 948源自:http://forum.ubun ... -
linux 系统启动流程
2011-12-02 11:15 714linux系统的启动过程是这样的: ... -
ubuntu恢复默认面板(上下两个)
2011-11-30 09:25 970作为一个 Ubuntu 用户,当你用 Ubuntu/Gnome ... -
linux硬连接和软连接
2011-11-28 19:35 1053Linux中的文件读取方式为: 先通过一层一层的 ... -
Linux FHS目录文件
2011-11-28 15:16 798根据FHS定义,linux中每 ... -
ubuntu10.10重启X-window
2011-11-27 22:00 933重启X-Window 按下 Ctrl + Alt + Bac ... -
ubuntu的一些目录和文件
2011-11-27 22:06 1757文件或目 ... -
ubuntu 技巧
2011-11-27 20:18 1195http://wiki.ubuntu.org.cn/Ub ... -
linux中的硬件设备号
2011-11-26 16:49 1221在Linux系统中 ,每台设备都被当成一个文件来对待,举例来 ... -
winetricks
2011-11-25 09:29 2539以下引自:http://wingo1990.blog.163. ... -
ubuntu wine
2011-11-23 11:14 1588安装完毕后在终端输入:winecfg 这个命令在使用W ... -
ubuntu 下软件的安装与卸载
2011-11-23 10:39 798安装软件 命令: apt-get install sof ...
相关推荐
CentOS5.6环境下设置yum代理
### CentOS 5.6 图解安装指南 #### 一、启动与配置虚拟机环境 - **启动虚拟机**:在虚拟化平台(如VMware、VirtualBox等)中启动已有的虚拟机或创建一个新的虚拟机。 - **创建新的虚拟机**:通过虚拟化软件创建一...
自己看文档,亲自操作后的整理的关于centos5.6 dns的基本配置步骤,希望帮助迷茫的你
在本文中,我们将详细探讨如何在CentOS 5.6上安装Oracle 10g数据库。这个过程涉及多个步骤,包括系统准备、用户和组管理、内核参数配置、环境变量设定以及目录创建和权限设置。 首先,确保你的系统是CentOS 5.6,...
### CentOS 5.6 中 Redmine 1.2.1 安装过程详解 #### 一、Redmine 简介及版本兼容性 Redmine 是一个开源的、灵活的项目管理和问题跟踪工具,适用于跨平台环境。它支持多项目管理,并集成了各种版本控制系统,如 ...
在本安装手册中,我们将详述如何在Windows 7操作系统下,使用VMware 10虚拟机软件安装CentOS 6.5。VMware是一款流行的虚拟化软件,它允许用户在单个物理机器上运行多个操作系统,而无需进行硬件级别的实际安装。...
### 基于CentOS7的磁盘分区及扩容——Parted工具详解 #### 一、Parted工具介绍 在Linux环境下,对于磁盘管理的需求非常常见,包括但不限于磁盘分区、格式化、扩容等。Parted是一款强大的磁盘分区管理工具,它可以...
装完系统,如果发现根目录太小,而home目录又很大,想把home目录空间调整给根目录,该怎么办呢?最佳实践,本人亲测
在Linux系统中,CentOS 7是一个非常流行的服务器操作系统,而MySQL 5.6则是一个广泛应用的关系型数据库管理系统。在没有网络的情况下,离线安装MySQL是必要的,这通常涉及到RPM包的处理。本篇文章将详细讲解如何在...
### CentOS 5.6 安装 Oracle 11g 的详细步骤 #### 一、环境准备与基础包检查 在开始安装 Oracle 11g 之前,需要确保 CentOS 5.6 系统中已经安装了一系列必要的软件包,这些软件包对于 Oracle 数据库的成功安装至关...
安装顺序 rpm -ivh cpp-4.1.2-42.el5.i386.rpm rpm -ihv kernel-headers-2.6.18-92.el5.i386.rpm rpm -ivh glibc-headers-2.5-24.i386.rpm rpm -ivh glibc-devel-2.5-24.i386.rpm rpm -ivh libgomp-4.1.2-42.el5....
《CentOS_5.6_安装手册_V1》是针对Linux爱好者和系统管理员的一份详尽指南,特别关注于CentOS 5.6的安装过程。这份手册不仅阐述了CentOS与Red Hat Enterprise Linux (RHEL)之间的密切关系,还提供了全面的CentOS 5.6...
centos 5.6安装图解,CentOS(Community ENTerprise Operating System)是Linux发行版之一,它是来自于Red Hat Enterprise Linux依照开放源代码规定释出的源代码所编译而成。由于出自同样的源代码,因此有些要求高度...
- 在Windows 7环境下,通过磁盘管理工具预留出150GB的空间用于安装CentOS。 - 进行安装时,注意为boot、/、/home等分区分配适当的空间,并为swap分区分配内存。通常建议swap分区大小等于或略大于物理内存。 - ...
### HP ML150 G6 安装 CentOS 5.6 无法识别 RAID1 的解决方案 #### 背景介绍 HP ML150 G6 是一款性价比较高的服务器产品,广泛应用于中小企业环境中的文件服务器、打印服务器以及邮件服务器等场景。然而,在安装 ...
CentOS5.6安装手册 CentOS (Commnity Enterprise Operating System)是Linux发行版之一,它是来自于Red Hat Enterprise Linux依照开放源代码规定释出的源代码所编译而成。