`
wolf_19
  • 浏览: 165455 次
社区版块
存档分类
最新评论

linux的文件分区类型查询

阅读更多

在linux下怎样查看文件分区类型?

可以想象到肯定是使用和分区有关的命令和文件才能实现,我尝试了一下有如下几种(如果有什么不对和需要补充的请给我留言):

1.使用fdisk命令
fdisk /dev/hda
进入fdisk的命令模式,你可以键入m来查看帮助信息
键入p就可以查看hda这个设备的所有分区的文件类型了。
可以键入q来退出fdisk的命令模式

2.使用parted命令
fdisk命令我们经常看到,但是这个命令我们却使用的很少(可能是我自己见识太少了;-)),其实这个命令也是挺强大的,基本上fdisk可以做的parted都可以做到。
parted /dev/hda
进入parted的命令模式,你可以键入help来查看帮助信息。
键入print就可以查看hda这个设备的所有分区的文件类型了。
可以键入quit来退出parted的命令模式


下面是man parted的介绍

PARTED(8)                      GNU Parted Manual                     PARTED(8)

NAME
       GNU Parted - a partition manipulation program

SYNOPSIS
       parted [options] [device [command [options...]...]]

DESCRIPTION
       This  manual page documents briefly the parted command.  Complete docu-
       mentation is distributed with the  package  in  GNU  Info  format;  see
       below.

       parted  is  a  disk  partitioning  and  partition resizing program.  It
       allows you to create, destroy, resize, move and copy ext2, ext3, linux-
       swap,  FAT  and FAT32 partitions. This is useful for creating space for
       new operating systems, reorganising disk usage, and copying data to new
       hard disks.

OPTIONS
       -h, --help
              displays a help message.

       -i, --interactive
              where necessary, prompts for user intervention.

       -s, --script
              never prompts for user intervention.

       -v, --version
              displays the version.

COMMANDS
       [device]
              The block device to partition.

       [command [options]]
              Specifies  a  command  to parted. If no command is given, parted
              will give you a command prompt. Commands are:

              check partition
                     does a simple check on partition.

              cp [source-device] source dest
                     copies the source partition鈙 filesystem on source-device
                     (or  the current device if no other device was specified)
                     to the dest partition on the current device.

              help [command]
                     prints general help, or help on command if specified.

              mkfs partition fs-type
                     make a filesystem fs-type on partition.  fs-type  can  be
                     one of "FAT", "ext2" or "linux-swap".

              mklabel label-type
                     Creates  a new disklabel (partition table) of label-type.
                     label-type should be one of "bsd", "gpt", "loop",  "mac",
                     "mips", "msdos", "pc98" or "sun".

              mkpart part-type [fs-type] start end
                     make  a  part-type  partition with filesystem fs-type (if
                     specified), beginning at start  and  ending  at  end  (in
                     megabytes).  part-type should be one of "primary", "logi-
                     cal" or "extended"

              mkpartfs part-type fs-type start end
                     make a part-type partition with filesystem fs-type begin-
                     ning at start and ending at end (in megabytes)

              move partition start end
                     move  partition  to  start at start and end at end. Note:
                     move never changes the minor number

              name partition name
                     set the name of partition to name. This option works only
                     on  Mac  and  PC98  disklabels. The name can be placed in
                     quotes, if necessary

              print  displays the partition table

              quit   exits parted

              resize partition start end
                     resize the filesystem on partition to start at start  and
                     end at end megabytes

              rm partition
                     deletes partition

              select device
                     choose  device  as  the  current  device  to edit. device
                     should usually be a Linux hard disk device, but it can be
                     a partition, software raid device or a LVM logical volume
                     if that is necessary

              set partition flag state
                     change the state of the flag on partition to state. Flags
                     supported  are: "boot", "root", "swap", "hidden", "raid",
                     "lvm" and "lba".  state should be either "on" or "off"

REPORTING BUGS
       Report bugs to <bug-parted@gnu.org>

SEE ALSO
       fdisk(8), mkfs(8), The parted program is documented fully  in  the  GNU
       partitioning software manual available via the Info system.

AUTHOR
       This manual page was written by Timshel Knoll <timshel@debian.org>, for
       the Debian GNU/Linux system (but may be used by others).


3.使用mount命令
mount一般用来挂载分区的,其实它也可以用来查看分区类型的。
mount --guess-fstype /dev/hda1
但是这个每次只能查看一个分区

4.使用df命令
df本身就是用来查看分区信息的,但是如果你不加上参数,它是不会列出分区类型的。
df -T
加上-T这个参数,就可以列出所有系统挂载的分区的文件类型信息了

5.查看配置文件
当然你可通过查看配置文件来知道分区的文件类型。
cat /etc/fstab
分享到:
评论

相关推荐

    linux 系统文件分区文件查看。

    在Linux系统中,管理和查看文件分区是日常操作的重要部分。Linux使用不同的文件系统类型,如ext2、ext3、ext4、XFS、Btrfs等,每个都有其独特的特性和功能。本文将深入探讨如何在Linux系统中查看文件分区以及在...

    Linux操作系统下常见文件类型分析

    Linux 操作系统下常见文件类型分析 Linux 操作系统下常见文件类型可以分为多种,包括压缩和打包文件、普通文件格式、系统文件、程序和脚本文件等。 压缩和打包文件是指使用某种压缩算法或打包工具将多个文件或...

    windows系统下读取LINUX分区

    标题中的“Windows系统下读取LINUX分区”指的是在Windows操作系统环境下,如何访问和操作Linux文件系统,特别是EXT3类型的分区。EXT3是Linux系统中常见的日志文件系统,它在Linux环境中提供了可靠的数据存储和恢复...

    讲解Linux硬盘分区步骤

    对于Linux下的分区操作,通常分为几个主要分区类型,包括boot、root、home、swap、tmp和usr等。其中,boot分区通常存储系统的引导文件,对于一般系统而言,分配100MB的容量已经足够。root分区通常代表系统的根目录,...

    linux硬盘分区工具

    1. Linux硬盘分区类型: - **MBR(Master Boot Record)**:传统的分区方式,最多支持4个主分区或3个主分区加1个扩展分区,最大容量为2TB。 - **GPT(GUID Partition Table)**:现代的分区方案,支持更多的分区...

    Windows下Linux分区文件恢复软件

    总之,Windows下Linux分区文件恢复涉及对Linux文件系统的理解、选择合适的恢复软件以及正确执行数据恢复流程。在操作过程中要谨慎行事,以免造成数据的进一步损失。在面对数据丢失时,提前备份始终是最好的预防措施...

    linux磁盘分区简介

    例如,Linux支持多种文件系统类型,这有助于跨平台的数据共享。 #### 四、数据的存储与检索 一旦磁盘被格式化并创建了文件系统,就可以开始存储数据。存储的数据会被划分到各个块中,而这些块并不一定是连续的。当...

    Linux系统的硬盘分区与文件系统.pdf

    Linux系统的硬盘分区与文件系统 Linux 系统的硬盘分区与文件系统是 Linux 操作系统中非常重要的一部分。... Linux 系统支持多种硬盘分区方式和文件系统类型,使得 Linux 系统能够满足不同的应用需求。

    Linux服务器配置与管理:Linux磁盘分区.pptx

    5. **常见的Linux文件系统类型**: - Linux支持的文件系统种类多样,例如EXT2、EXT3、EXT4是最常见的日志式文件系统,适合用于系统分区,它们具有良好的稳定性和性能。XFS是高性能的文件系统,适用于大数据和I/O...

    Linux中磁盘分区教程

    常见的Linux文件系统有ext2、ext3、ext4、XFS、Btrfs等。格式化过程包括创建文件系统结构、分配空间以及设置权限和属性。`mkfs`命令常用于创建新的文件系统,例如`mkfs.ext4 /dev/sda1`表示将/dev/sda1分区格式化为...

    在windows下如何备份linux分区.zip

    1. **Linux分区类型**:Linux系统常用的文件系统有EXT2, EXT3, EXT4, Btrfs, XFS等,这些在Windows中默认是不可见或无法直接读写的。因此,备份Linux分区前需要了解Linux分区使用的具体文件系统。 2. **备份工具**...

    Linux磁盘分区(理论及实战).docx

    四、分区类型 分区有标准分区、扩展分区和逻辑分区三种。标准分区和扩展分区只能有 1-4 个,逻辑分区从 5 开始,可以有多个。 五、文件系统 Linux 支持多种文件系统类型,包括 FAT16、FAT32、NTFS、EXT4、JFS 等...

    Linux文件系统概念解释和Linux文件系统精通指南

    Linux文件系统是Linux操作系统的核心组成部分,它负责组织和管理存储设备上的数据,为用户提供有序、高效的数据访问方式。本文将深入解析Linux文件系统的概念,并提供一份精通Linux文件系统的指南。 一、Linux文件...

    Linux分区及复制.pdf

    总之,Linux分区和复制涉及的知识点包括Linux文件系统(如EXT3和SWAP)、分区工具(如fdisk和parted)、引导管理(MBR、GRUB)以及多系统共存下的引导配置。在处理这类问题时,理解Linux的底层原理和引导流程是至关...

    浅析Linux文件系统管理.pdf

    本文主要探讨了在Red Hat 9.0环境下Linux文件系统的管理,包括磁盘管理的各个方面。 1. Linux 文件系统类型 Linux 支持多种文件系统,如ext2、ext3和ext4,其中Red Hat 9.0默认使用ext3文件系统。ext3是一种日志...

    Linux文件系统概念解释

    本篇文章将深入探讨Linux文件系统的基本概念以及与其密切相关的`mount`命令。 首先,让我们理解Linux文件系统的层次结构。Linux采用单一的根目录`/`来组织所有的文件和目录,这与Windows的C盘、D盘等多驱动器系统...

Global site tag (gtag.js) - Google Analytics