位置: 编程技术 - 正文
推荐整理分享linux系统创建主分区、逻辑分区 、设置ext系列分区的参数以及检测分区的方法(linux创建个人主页),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:linux怎么创建自己的用户,linux怎么创建自己的用户,linux如何创建,linux创建个人主页,linux创建主分区命令,linux创建主分区命令,linux创建用户设置主目录,linux创建用户设置主目录,内容如对您有帮助,希望把文章链接给更多的朋友!
linux对不同的磁盘设备的设备文件命名如下:
IDE: /dev/hd[a-z] 对IDE分区的命名为/dev/hda1 /dev/hda2 ….. SCSI, SATA, SAS, USB: /dev/sd[a-z] 对分区的命令为/dev/sda1 /dev/sda2 ……. 主分区最多可有4个。若分区大于4个,可使用3个主分区加一个扩展分区的方式,再通过在扩展分区上划分多个逻辑分区。 常见的文件格式有ext2、ext3、ext4、vfat(兼容windows的fat)、xfs、btrfs、jfs等。
查看linux的磁盘分区可使用fdis(分区管理命令)
fdisk /dev/sda (非IDE硬盘) m:获取帮助 p:显示分区信息 q:不保存退出 n:新建分区 d:删除分区 q:保存退出 l:显示分区类型的ID t:改变分区类型的ID
[root@localhost ~]# fdisk /dev/sda
Welcome to fdisk (util-linux 2..2).Changes will remain in memory only, until you decide to write them.Be careful before using the write command.Command (m for help): pDisk /dev/sda: .1 GB, bytes, sectorsUnits = sectors of 1 * = bytesSector size (logical/physical): bytes / bytesI/O size (minimum/optimal): bytes / bytesDisk label type: dosDisk identifier: 0xad4 Device Boot Start End Blocks Id System/dev/sda1 * Linux/dev/sda2 8e Linux LVM
说明:
1、Disk /dev/sda: .1 GB 硬盘的大小是GB, 个字节,个扇区。 2、下半部信息说明 Device 是分区名称 Boot 是否是启动分区 Start 起始的扇区 End 结束的扇区 \ /dev/sda2结束的扇区是,而硬盘总共有,说明还有硬盘空间没有被用于创建分区。 Blocks以1KB为单位,显示分区的空间; ld 为分区类型的ID号 System 为分区类型
创建分区:(下图中指定起始扇区与/dev/sda2的结束扇区能对接上)
创建逻辑分区
Command (m for help): n
Partition type:
p primary (3 primary, 0 extended, 1 free)
e extended
Select (default e): e \指定新建扩展分区
Selected partition 4
First sector (-, default ):
Using default value
Last sector, +sectors or +size{K,M,G} (-, default ): +1G \指定扩展分区的大小
Partition 4 of type Extended and of size 1 GiB is set
Command (m for help): n
All primary partitions are in use
Adding logical partition 5 \ ID号1-4已经用完,系统直接使用逻辑分区ID的范围5-
First sector (-, default ):
Using default value
Last sector, +sectors or +size{K,M,G} (-, default ): \这里的结束扇区-=*//=.MB,即1GB,与指定的扩展分区大小相同
Partition 5 of type Linux and of size .8 MiB is set \新建逻辑分区的大小是.8MB
Command (m for help): n
All primary partitions are in use
Adding logical partition 6
First sector (-, default ):
Using default value
Last sector, +sectors or +size{K,M,G} (-, default ): \这里的结束扇区ID与上述的相同
Using default value
Partition 6 of type Linux and of size MiB is set
Command (m for help): p
Disk /dev/sda: .1 GB, bytes, sectors
Units = sectors of 1 * = bytes
Sector size (logical/physical): bytes / bytes
I/O size (minimum/optimal): bytes / bytes
Disk label type: dos
Disk identifier: 0xad4
Device Boot Start End Blocks Id System
/dev/sda1 * Linux
/dev/sda2 8e Linux LVM
/dev/sda3 Linux
/dev/sda4 5 Extended
/dev/sda5 + Linux
/dev/sda6 Linux \新建的逻辑分区
Command (m for help): w \保存退出
检查linux是否已经识别出新的分区查看/rroc/paritions文件
[root@localhost ~]# cat /proc/partitions
major minor #blocks name
8 0 sda
8 1 sda1
8 2 sda2 \新创建的/dev/sda3-6没有还没有识别出来
0 sr0
0 dm-0
1 dm-1
强制让内核更新分区
[root@localhost ~]# partx -u /dev/sda
[root@localhost ~]# cat /proc/partitions
major minor #blocks name
8 0 sda
8 1 sda1
8 2 sda2
8 3 sda3
8 4 1 sda4
8 5 sda5
8 6 sda6 \已识别出新分区
0 sr0
0 dm-0
1 dm-1
[root@localhost ~]#
格式化新建的分区mkfs命令
把sda6、sda5格式为ext4
[root@localhost ~]# mkfs.ext4 -L test /dev/sda6
mke2fs 1..9 (-Dec-)
Filesystem label=test
OS type: Linux
Block size= (log=2)
Fragment size= (log=2)
Stride=0 blocks, Stripe width=0 blocks
inodes, blocks
blocks (5.%) reserved for the super user
First data block=0
Maximum filesystem blocks=
5 block groups
blocks per group, fragments per group
inodes per group
Superblock backups stored on blocks:
,
Allocating group tables: done
Writing inode tables: done
Creating journal ( blocks): done
Writing superblocks and filesystem accounting information: done
也可用 ext系列专用的格式化工具mke2fs
[root@localhost ~]# mke2fs -t ext3 -m 5 -L TEST_sda5 -b /dev/sda5
mke2fs 1..9 (-Dec-)
Filesystem label=TEST_sda5 \标识符为TEST_sda5
OS type: Linux
Block size= (log=2) \block为
Fragment size= (log=2)
Stride=0 blocks, Stripe width=0 blocks
inodes, blocks
blocks (5.%) reserved for the super user \为管理员预留5%的空间
First data block=0
Maximum filesystem blocks=
4 block groups
blocks per group, fragments per group
inodes per group
Superblock backups stored on blocks:
,
Allocating group tables: done
Writing inode tables: done
Creating journal ( blocks): done
Writing superblocks and filesystem accounting information: done
查看所有分区的属性使用blkid
[root@localhost ~]# blkid
/dev/sda1: UUID="aa-4a-4e-a6b4-a4ed0aeaa1" TYPE="xfs"
/dev/sda2: UUID="dv2Krn-BlSL-4NBt-yduR-BXax-tChJ-V2YpbM" TYPE="LVM2_member"
/dev/sda5: LABEL="TEST_sda5" UUID="b5b2bb-d--b-aca5eafa" SEC_TYPE="ext2" TYPE="ext3"
/dev/sda6: LABEL="test" UUID="a0aa2-0aec-4ff6-bce8-f2dfdfae" TYPE="ext4"
/dev/sr0: UUID="------" LABEL="CentOS 7 x_" TYPE="iso" PTTYPE="dos"
/dev/mapper/centos-root: UUID="0adbaa-e1e3--c2-c6a1fc" TYPE="xfs"
/dev/mapper/centos-swap: UUID="d7dd-b7ed-fb-9f-fca" TYPE="swap"
使用fsck命令检测分区
[root@localhost ~]# fsck.ext3 -frc /dev/sda5 \ f是强制检测 c是提示测试进度 r进行交互式检测
e2fsck 1..9 (-Dec-)
Checking for bad blocks (read-only test): done
TEST_sda5: Updating bad block inode.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
TEST_sda5: ***** FILE SYSTEM WAS MODIFIED *****
TEST_sda5: / files (0.0% non-contiguous), / blocks
[root@localhost ~]#
linux btrfs文件系统及管理 什么是btrfs?Btrfs(B-tree文件系统,通常念成ButterFS,BetterFS或B-treeFS),linux文件系统,具有写时复制COW(copy-on-write),改善ext3文件系统单文件大小限制,并
Linux系统基础笔记之网卡安装一般步骤简介 虽然Linux系统发展的时间不长,可是Linux系统越来越受到电脑用户的欢迎,导致很多人开始学习Linux时,学习linux,你可能会遇到Linux网卡安装问题,希赛
Linux中nano和ed文本编辑器的简单使用介绍 nano用法:nano[选项][[+行,列]文件名]...光标控制移动光标:使用用方向键移动。选择文字:按住鼠标左键拖到。复制、剪贴和粘贴复制一整行:Alt+6剪贴一
标签: linux创建个人主页
本文链接地址:https://www.jiuchutong.com/biancheng/360493.html 转载请保留说明!友情链接: 武汉网站建设