当前位置:   article > 正文

WinHex安装与使用

winhex安装

目录

下载WinHex

安装WinHex

查看现成的磁盘文件

手动创建磁盘文件

创建磁盘文件

创建分区

安装引导程序

查看磁盘


下载WinHex

下载链接:

WinHex: Hex Editor & Disk Editor, Computer Forensics & Data Recovery Software

安装WinHex

1).下载完成后出现winhex.zip文件,解压文件,放置到合适位置。如图为winhex.zip内的内容。


2).解压完成之后,直接以管理员方式直接打开winhex.exe文件即可。

查看现成的磁盘文件

        磁盘文件可以通过kvm、vmware、virtualbox等软件进行创建,但是需要将vmdk,qcow2等格式的自盘文件转换为raw格式。

  1. [root@zyq images]# /home/zyq/qemu-img convert -p -O raw generic.qcow2 generic.raw
  2. (100.00/100%)
  3. [root@zyq images]#
  4. [root@zyq images]# ll generic.* -h
  5. -rw------- 1 root root 21G Apr 6 08:54 generic.qcow2
  6. -rw-r--r-- 1 root root 20G Apr 6 17:49 generic.raw
  7. [root@zyq images]# ll generic.*
  8. -rw------- 1 root root 21478375424 Apr 6 08:54 generic.qcow2
  9. -rw-r--r-- 1 root root 21474836480 Apr 6 17:49 generic.raw

查看转换格式后的磁盘文件

手动创建磁盘文件

  1. 创建磁盘文件

    1. [root@zyq tmp]# dd if=/dev/zero of=/tmp/test.img bs=512 count=100000
    2. 100000+0 records in
    3. 100000+0 records out
    4. 51200000 bytes (51 MB) copied, 0.0909236 s, 563 MB/s
    5. [root@zyq tmp]# ll test.img
    6. -rw-r--r-- 1 root root 51200000 Apr 7 09:00 test.img
    7. [root@zyq tmp]# ll test.img -h
    8. -rw-r--r-- 1 root root 49M Apr 7 09:00 test.img
  2. 创建分区

    1. [root@zyq tmp]# fdisk test.img
    2. Welcome to fdisk (util-linux 2.23.2).
    3. Changes will remain in memory only, until you decide to write them.
    4. Be careful before using the write command.
    5. Device does not contain a recognized partition table
    6. Building a new DOS disklabel with disk identifier 0xfd823fb1.
    7. Command (m for help): n
    8. Partition type:
    9. p primary (0 primary, 0 extended, 4 free)
    10. e extended
    11. Select (default p):
    12. Using default response p
    13. Partition number (1-4, default 1):
    14. First sector (2048-99999, default 2048):
    15. Using default value 2048
    16. Last sector, +sectors or +size{K,M,G} (2048-99999, default 99999):
    17. Using default value 99999
    18. Partition 1 of type Linux and of size 47.8 MiB is set
    19. Command (m for help): w
    20. The partition table has been altered!
    21. Syncing disks.
    22. [root@zyq tmp]# partprobe test.img
    23. [root@zyq tmp]# fdisk test.img -l
    24. Disk test.img: 51 MB, 51200000 bytes, 100000 sectors
    25. Units = sectors of 1 * 512 = 512 bytes
    26. Sector size (logical/physical): 512 bytes / 512 bytes
    27. I/O size (minimum/optimal): 512 bytes / 512 bytes
    28. Disk label type: dos
    29. Disk identifier: 0xfd823fb1
    30. Device Boot Start End Blocks Id System
    31. test.img1 2048 99999 48976 83 Linux
  3. 安装引导程序

    1. [root@zyq tmp]# grub2-install test.img
    2. Installing for x86_64-efi platform.
    3. Installation finished. No error reported.
  4. 查看磁盘

 

core.img占据的空间大小

2048*512/1024-0.5=1023.5Kbytes

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/646858
推荐阅读
相关标签
  

闽ICP备14008679号