linux file system and mount

  • Create an ISO file
    cp / dev / cdrom destination /.iso

  • · mkfs command generates a corresponding file system
    but using mkfs no way certain characteristics of the resulting file system repair, such as marking LABEL, if forced to modify the contents of which can result in lost files, it means format the partition.

    e2label command to view and modify the ext series of marks
    linux file system and mount
    linux file system and mount

    findfs to find a value based on the file system partition, for example,
    linux file system and mount

    Blkid block device and the information on the view of the system

    Reset ext series can adjust the value turn2fs
    linux file system and mount

dumpe2fs -h and turn2fs -l display exactly the same

The xfs if you want to display, command xfs_info device name

To repair the file system using fsck -y

  • Mount a file system mount

    findmnt device name or mount point mount can view specific information

  • Umount unmount the file system
    using the file system is not possible to uninstall
    lsof or fuser -v mount point mount point you can view the
    termination off all access to the process fuser -km mount point

Guess you like

Origin blog.51cto.com/14240018/2428346