Linux运维系统工程师系列---21

磁盘管理---分区---parted命令

实验举例:

[[email protected] devices]# parted /dev/sdb
(parted) help

(parted) print
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 42.9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End    Size   Type     File system  Flags
 1      32.3kB  214MB  214MB  primary
(parted) print                                                           
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 42.9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start  End  Size  Type  File system  Flags

(parted) mkpart

创建分区 :                                                   
Partition type?  primary/extended? primary                               
File system type?  [ext2]? ext4                                          
Start? 1                                                                 
End? 200M                                                                
(parted) print                                                           
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 42.9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End    Size   Type     File system  Flags
 1      1049kB  200MB  199MB  primary

(parted) mkpart                                                          
Partition type?  primary/extended? primary                               
File system type?  [ext2]? ext4                                          
Start?                                                                   
Start? 200M                                                              
End? 2000M                                                               
(parted) print                                                           
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 42.9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
 1      1049kB  200MB   199MB   primary
 2      200MB   2000MB  1799MB  primary

(parted) mkpart                                                          
Partition type?  primary/extended? p                                     
File system type?  [ext2]? ext4                                          
Start? 2000M                                                             
End? 2013M                                                               
(parted) print                                                           
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 42.9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
 1      1049kB  200MB   199MB   primary
 2      200MB   2000MB  1799MB  primary
 3      2000MB  2013MB  13.6MB  primary
Partition type?  [logical]? logical                                      
File system type?  [ext2]? ext4
Start? 2015M                                                             
End? 2200M                                                               
Warning: The resulting partition is not properly aligned for best performance.
Ignore/Cancel? Ignore                                                    
(parted) print                                                           
Model: VMware, VMware Virtual S (scsi)
Disk /dev/sdb: 42.9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type      File system  Flags
 1      1049kB  200MB   199MB   primary
 2      200MB   2000MB  1799MB  primary
 3      2000MB  2013MB  13.6MB  primary
 4      2015MB  10.0GB  7985MB  extended               lba
 5      2015MB  2200MB  185MB   logical

(parted) rm 5     
(parted) quit

[[email protected] devices]# fdisk -l /dev/sdb

Disk /dev/sdb: 42.9 GB, 42949672960 bytes
255 heads, 63 sectors/track, 5221 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000b6e12

Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1          25      194560   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sdb2              25         244     1757184   83  Linux
Partition 2 does not end on cylinder boundary.
/dev/sdb3             244         245       13312   83  Linux
Partition 3 does not end on cylinder boundary.
/dev/sdb4             246        1216     7797760    f  W95 Ext‘d (LBA)

时间: 2024-10-11 09:30:27

Linux运维系统工程师系列---21的相关文章

Linux运维系统工程师系列---14

进程管理 什么是程序?program 程序:完成某个功能的一段代码的集合 什么是进程? 进程是程序运行之后,在内存中的状态 如何产生一个进程? 执行一个程序或者命令就可以产生一个进程 提到进程,不得不说一个目录 /proc:是一个虚拟的文件系统,这个目录下的文件和目录都是保存在内存里的 [[email protected] ~]# ll -d /proc/ dr-xr-xr-x. 157 root root 0 Oct 10 00:33 /proc/ 大小是0,根本没有占用磁盘空间,就是假的.

Linux运维系统工程师系列---15

系统日志 何谓日志? 相当于系统中的账本,会将系统中发生的事情,按照时间先后顺序,分门别类的记录到不通的文件里. 日志的用途? 当系统发生问题,或者查询历史信息的时候,我们会查询日志. 1)解决系统方面的错误 2)解决网络方面的问题 3)记录重要的事件 4)解决安全方面问题,一般分析日志,看看有无风险 日志的种类: 1)系统自带日志 2)文件系统日志  ext3/ext4 3)应用程序自带的日志,比如ssh,dhcp,http都有相应的日志 1.日志简介 Linux系统日志默认存放位置 /var

Linux运维系统工程师系列之shell脚本一则小随笔

shell随笔 一.   学好shell编程的知识储备 前面讲过,给大家留作业Linux系统命令应用: Vi/vim 编辑器的熟练使用,SSH客户端软件的设置: 基础的服务,系统服务ntp,crond,网络服务:nfs,rsync,inotify,sersync,ssh,lanmp. 补充:清空日志的三种方法: echo  " " > filename.log >filename.log cat  /dev/null > filename.log 注:工作中有的时候不

Linux运维系统工程师系列---13

定制安装 定制安装,也叫源码安装,需要自己编译源代码的安装方式 步骤: 1.解压源代码包 2.配置 configure 3.编译 make 4.安装 make install 接下来开始做实验,希望朋友们自己动手实践,有啥不清楚的可以直接提问我,我看到会及时回复. 1.解压源码包 [[email protected] base]# cd /root/Desktop/ [[email protected] Desktop]# ls gnome-terminal.desktop  MPlayer-1

Linux运维系统工程师系列---20

磁盘管理---分区---fdisk命令 查看分区信息: [[email protected] ~]# fdisk -l /dev/sda Disk /dev/sda: 107.4 GB, 107374182400 bytes255 heads, 63 sectors/track, 13054 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 51

Linux运维系统工程师系列---25

磁盘管理---文件系统检测与交换分区 (一)文件系统检测 fsck--检查和修复Linux文件系统错误. 何时用? 通常只有身为root,并且文件系统有问题的时候才使用这个命令.正常情况下不要使用此命令,否则可能会对系统产生危害. 格式:   fsck [-t 文件系统类型] 设备名称 选项: -t fs-type :这个选项可以不加,linux目前可以透过superblock分析出系统类型 [[email protected] ~]# fsck -t ext4 /dev/sdc6 fsck f

Linux运维系统工程师系列---18

磁盘管理 简单概述 文件系统             磁盘上组织文件的方法,称为文件系统. ext3   ext4区别:            ext3最大可以支持的是16TB的文件系统,最大2TB文件,支持最多32000个子目录        ext4支持1EB的文件系统,1EB=1024PB,1PB=1024TB,1TB=1024GB        最大16TB的文件.            inode相关的特性,ext4支持更大的inode,较ext3 的128字节,ext4默认256字节

Linux运维系统工程师系列---23

磁盘管理---自动挂载 [[email protected] sdb2]# cat /etc/fstab ## /etc/fstab# Created by anaconda on Wed Oct  9 16:14:01 2013## Accessible filesystems, by reference, are maintained under '/dev/disk'# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8)

Linux运维系统工程师系列---22

磁盘管理---创建文件系统与挂载 创建文件系统 格式化[[email protected] devices]# mkfs.ext4 /dev/sdb1或者[[email protected] devices]# mkfs -t ext4 /dev/sdb1 mkfs.ext4格式化时候的选项: -b--指定文件系统块的大小 -g--指定每个块组的大小 -i--指定每个i节点占用多少字节磁盘空间 -I--指定文件系统i节点所占用空间大小 -N--指定i节点的数量,近似值 -L--指定磁盘分区的标签