17

how to install exfat-utils and hddtemp on ubuntu 22.04 (at 20.04 they were available).

This commands doesn't work:

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.

hddtemp

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.

According to Ubuntu, these packages are available for 22.04. Check:

hddtemp and exfat-utils

acgbox
  • 2,367

3 Answers3

36

To install the hddtemp package from Ubuntu 21.10 in Ubuntu 22.04-23.04 run the following commands:

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-utils has been replaced by exfatprogs (tools to create, check and label exFAT filesystems) in Ubuntu 22.04 and later. To install exfatprogs in Ubuntu 22.04 and later run the following command:

sudo apt install exfatprogs

The tools included in this package are the exfatprogs maintained by Samsung engineers, who provided Linux exFAT support. A similar but independent implementation of these tools, written by the author of the exfat-fuse implementation, is available in the exfat-utils package.

Read and write support for the exFAT filesystem is implemented in the Linux kernel in versions 5.7 and later.

karel
  • 122,695
  • 134
  • 305
  • 337
  • I am having issues with exfat on Ubuntu 22.04 that doesn't seem to happen on 20.04. Is 20.04 using the fuse-based exfat-utils? What would be a good way to switch to using that version, while making it easy to revert to exfatprogs in case it eventually gets fixed? – WolfLink Nov 12 '22 at 18:13
  • 1
    exfat-utils is in the default repositories of Ubuntu 20.04 and earlier, and can be downloaded with wget http://mirrors.kernel.org/ubuntu/pool/universe/e/exfat-utils/exfat-utils_1.3.0-1_amd64.deb and installed in 22.04 with sudo apt install ./exfat-utils_1.3.0-1_amd64.deb The following new packages will be installed: exfat-fuse exfat-utils. Uninstall exfatprogs first with sudo apt remove exfatprogs – karel Nov 13 '22 at 01:05
  • karel's comment's solutions works NOT for Pop!_OS 22.04 LTS today : / – Michał Lepczyński Sep 25 '24 at 21:21
9

The new way to add exFAT support to Ubuntu 22.04 is to install the following package:

sudo apt install exfatprogs
  • 1
    That is only true for creating, checking, or labeling exFAT partitions. Read and write support is in the kernel. Source: http://sven.stormbind.net/blog/posts/deb_debian_and_exfat/ – Carolus Sep 05 '22 at 14:27
2

you can use PPA to install hddtemp (mentionned on 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
McPeter
  • 21