我试图在Live驱动器上创建一个持久存储。然后,我参加了许多需要mkusb的教程。我已经搜索了许多安装它的方法,但是我做不到,即使在添加PPA、重新启动、编辑sources.list等之后也是如此。这是输出:
$ sudo add-apt-repository ppa:mkusb/ppa
More info: https://launchpad.net/~mkusb/+archive/ubuntu/ppa
Press [ENTER] to continue or Ctrl-c to cancel adding it.
Hit:1 http://ppa.launchpad.net/mkusb/ppa/ubuntu bionic InRelease
Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:3 http://vn.archive.ubuntu.com/ubuntu bionic InRelease
Hit:4 http://vn.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:5 http://vn.archive.ubuntu.com/ubuntu bionic-backports InRelease
Reading package lists... Done
$ sudo apt update
Hit:1 http://ppa.launchpad.net/mkusb/ppa/ubuntu bionic InRelease
Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:3 http://vn.archive.ubuntu.com/ubuntu bionic InRelease
Hit:4 http://vn.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:5 http://vn.archive.ubuntu.com/ubuntu bionic-backports InRelease
Reading package lists... Done
Building dependency tree
Reading state information... Done
All packages are up to date.
$ sudo apt install mkusb
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mkusb我不知道我在什么地方犯了什么错误。谢谢!
编辑:我设法安装mkusb使用tarball,但它没有检测到我的USB驱动器。但要点已经讲完了,也许我会再问一个问题。谢谢!
发布于 2019-08-01 06:13:55
安装的。
如果您运行标准Ubuntu live,则需要额外的指令才能获得存储库Universe。(库本图,卢本图.Xubuntu自动激活存储库Universe )。
sudo add-apt-repository universe # only for standard Ubuntu
sudo add-apt-repository ppa:mkusb/ppa # and press Enter
sudo apt-get update
sudo apt-get install mkusb mkusb-nox usb-pack-efi基于tarball的K24替代方法
如果由于某些原因它不适用于PPA,您可以根据以下链接通过tarball安装mkusb,
发布于 2019-07-31 10:53:41
尝试使用以下命令再次添加PPA:
sudo add-apt-repository ppa:mkusb/ppa我没有在你发布的日志中看到任何密钥被导入。
它应该是这样的:
You are about to add the following PPA to your system:
More info: https://launchpad.net/~mkusb/+archive/ubuntu/ppa
Press [ENTER] to continue or ctrl-c to cancel adding it
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.moYjnLh1cS --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 54B8C8AC
gpg: requesting key 54B8C8AC from hkp server keyserver.ubuntu.com
gpg: key 54B8C8AC: "Launchpad PPA for MKUSB" not changed
gpg: Total number processed: 1
gpg: unchanged: 1接下来,使用以下命令更新和安装包:
sudo apt update
sudo apt install mkusbhttps://askubuntu.com/questions/1162352
复制相似问题