美文网首页
btrfs格式数据提取

btrfs格式数据提取

作者: 池边树下 | 来源:发表于2021-01-12 10:19 被阅读0次

方法一:

https://github.com/maharmstone/btrfs

win10需要关闭BIOS安全策略

不支持NAS


方法二:

另外一个工具:ExtFS


方法三:
群晖NAS数据

# How can I recover data on my Synology NAS using a PC?

If your Synology NAS malfunctions, the data stored on its drives can be easily recovered using a PC and an Ubuntu live CD. Make sure the file system running on the drives of your Synology NAS is ext4 or Btrfs, and then follow the steps below to recover your data. Here we use Ubuntu 18.04 version as the example.

1.  Prepare a PC with a sufficient number of drive slots for installing the drives removed from your Synology NAS.
2.  Remove the drives from your Synology NAS and install them in your PC. For RAID or SHR configurations, you must install all the drives (excluding hot spare drives) in your PC at the same time.

3.  Prepare an Ubuntu environment by following the instructions in the tutorial [Create a bootable USB stick on Windows](https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-windows#0).

4.  Go to the **Show Applications** menu on the lower-left corner.
    ![image](https://img.haomeiwen.com/i7464981/6d688710feb805b9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

5.  Enter **Terminal** in the search bar and select **Terminal**.
    ![image](https://img.haomeiwen.com/i7464981/447b351bc930065a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

6.  If you are recovering data from a RAID or SHR configuration, please follow steps 7 to 10; if you are recovering files from basic storage types with only one drive, please go to step 10.
7.  Enter the following command (`sudo` executes root privileges).
    *   `Ubuntu@ubuntu:~$ sudo -i`
8.  Enter the following commands to install `mdadm` and `lvm2`, both of which are RAID management tools. `lvm2` must be installed or `vgchange` will not work.
    *   `root@ubuntu:~$ apt-get update`
    *   `root@ubuntu:~$ apt-get install -y mdadm lvm2`
9.  Enter the following command to mount all the drives removed from your Synology NAS. The results may differ according to the storage pool configurations on your Synology NAS.
    *   `root@ubuntu:~$ mdadm -Asf && vgchange -ay`
10.  Enter the following command to mount all the drives as read-only to access your data. Enter your device path in `${device_path}` and mount point in `${mount_point}`. Your data will be placed under the mount point.
    *   `$ mount ${device_path} ${mount_point} -o ro`

    #### Example:

    `mount /dev/vg1000/lv /mnt -o ro`
    `mount /dev/vg1/volume_1 /mnt -o ro`


方法四:

windows下数据恢复工具
链接: https://pan.baidu.com/s/1fCC7HO_je7xt4CKpT1FHUg 提取码: b32i 复制这段内容后打开百度网盘手机App,操作更方便哦

相关文章

  • btrfs格式数据提取

    方法一: win10需要关闭BIOS安全策略 不支持NAS 方法二: 另外一个工具:ExtFS 方法三:群晖NAS...

  • 1.1postman常用函数

    随机数 案例 提取响应数据(提取json格式的数据) 断言响应信息 案例

  • jmeter中遇到的小问题

    1.json 提取例1:数据格式: 提取userId对应的sessionUserTrackingId的对应提取方式...

  • iOS进阶第四天(xml解析与json解析)

    解析的概念 解析:从事先规定好的格式中提取数据。 解析的前提:提前约定好格式,数据提供方按照格式提供数据,数据获取...

  • 网络之数据解析

    解析的基本概念 解析:从事先规定好的格式中提取数据 解析的前提:提前约定好格式,数据提供方按照格式提供格式,数据获...

  • JMeter基础系列(十) JMeter关联之JSON提取器Js

    10.1 JSON提取器 若响应数据格式为JSON,也可以用JSON提取器来提取需要关联的数据。 配置项 Appl...

  • JMeter关联之JSON提取器

    1、JSON提取器 若响应数据格式为JSON,也可以用JSON提取器来提取需要关联的数据。 ▲ 配置项 Apply...

  • iOS基础-数据解析方法初步总结-(XML,JSON欢迎指正)

    解析的基本概念 解析: 从事先规定好的格式中提取数据 解析的前提: 提前约定好格式,数据提供方按照格式提供数据,数...

  • 数据解析

    解析的基本概念 所谓“解析”:从事先规定好的格式中提取数据。解析的前提:提前约定好格式、数据提供方按照格式提供数据...

  • 处理excel表格数据

    1、将excel中的数据提取,处理数据后保存想要的格式我们的表格样式: 需求:将表格中extend列的数据单独提取...

网友评论

      本文标题:btrfs格式数据提取

      本文链接:https://www.haomeiwen.com/subject/jlssaktx.html