如何在ubuntu22.04上安装exfat和hddtemp (在20.04可用)。
此命令不起作用:
exfat-utils
sudo apt-get install exfat-utils
The exfat-utils package is not available, but some other package references it. This may mean that the package is missing, obsolete, or only available from some other source.
# or .deb for Ubuntu 21.10 (Impish Indri)
wget http://archive.ubuntu.com/ubuntu/pool/universe/e/exfat-utils/exfat-utils_1.3.0-2_amd64.deb
sudo dpkg -i exfat-utils_1.3.0-2_amd64.deb
dpkg: About exfat-utils_1.3.0-2_amd64.deb which contains exfat-utils:
exfat-utils conflicts with exfatprogs
exfatprogs (version 1.1.3-1) is present and installed.
赫德
sudo apt install hddtemp
The hddtemp package is not available, but some other package references it. This may mean that the package is missing, obsolete, or only available from some other source.
根据Ubuntu的说法,这些软件包可供22.04使用。检查:
发布于 2022-04-22 23:46:35
要在Ubuntu22.0423.04中从Ubuntu21.10安装hddtemp包,请运行以下命令:
sudo apt update
wget http://archive.ubuntu.com/ubuntu/pool/universe/h/hddtemp/hddtemp_0.3-beta15-53_amd64.deb
sudo apt install ./hddtemp_0.3-beta15-53_amd64.deb
exFAT是Ubuntu22.04及更高版本中的代之以脱脂剂 (用于创建、检查和标记exFAT文件系统的工具)。要在Ubuntu22.04中安装exfatprogs,并在以后运行以下命令:
sudo apt install exfatprogs
这个包中包含的工具是三星工程师维护的exfatprogs,他们提供了Linux exFAT支持。这些工具的类似但独立的实现,由exfat实现的作者编写,可在exfat包中获得。
exFAT文件系统的读写支持是在版本5.7及更高版本的Linux内核中实现的。
发布于 2022-08-05 18:09:24
向Ubuntu22.04添加exFAT支持的新方法是安装以下软件包:
sudo apt install exfatprogs
发布于 2022-11-02 20:18:25
您可以使用PPA安装hddtemp (在https://launchpad.net/ubuntu/+source/hddtemp中提到):
https://launchpad.net/~malcscott/+archive/ubuntu/ppa
sudo add-apt-repository ppa:malcscott/ppa
sudo apt update
sudo apt install hddtemp
https://askubuntu.com/questions/1403900
复制相似问题