在 ubuntu live 上运行附加软件(暂时)

在 ubuntu live 上运行附加软件(暂时)

我的电脑磁盘损坏了。我打算使用 Ubuntu 来恢复磁盘上的数据。

我去朋友家做了一个 Ubuntu USB 棒。我认为 Ubuntu USB 棒没有持久存储部分。

我的计算机已成功从 Ubuntu USB 驱动器启动,但恢复需要额外的软件。

$ sudo apt-get install testdisk
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package testdisk

$ sudo apt-get update
...                  
Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/restricted Translation-en [2,272 B]                     
Fetched 3,789 kB in 12s (297 kB/s)                                                                             

** (appstreamcli:4232): CRITICAL **: Error while moving old database out of the way.
AppStream cache update failed.
Reading package lists... Done

在此处输入图片描述

apt-get 报告错误,我猜是因为 USB 驱动器处于只读模式?

我不想再麻烦我的朋友制作持久的 USB 记忆棒。

在 Ubuntu Live 上运行附加软件的最简单方法是什么?

答案1

安装 testdisk 供一次性使用

您不需要持久性(希望)只运行一次 testdisk。

添加 Universe 存储库

sudo add-apt-repository universe

更新

sudo apt-get update

安装 testdisk

sudo apt-get install testdisk

运行 testdisk

testdisk

以上内容适用于我在 balenaEtcher Live USB 上使用 Ubuntu 16.04.5 并在 4GB USB2 拇指驱动器上运行的情况。

相关内容