debian 12にexfat-utilsはありませんか?

debian 12にexfat-utilsはありませんか?
$ apt-get install exfat-utils exfat-fuse

出力として返される

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package exfat-utils is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'exfat-utils' has no installation candidate

このパッケージをインストールしようとしましたが、欠落しているようです。カーネル内にexfatサポートがすでに組み込まれているので、このファイルシステムを処理するために他のユーティリティを参照する必要はありませんか?

ドライブをマウントするコマンドは前のコマンドと同じですか?

mount -t exfat /dev/sda1 /mountpoint/

ありがとう

ベストアンサー1

~からDebian 11、カーネルはexFATをサポートしています。exfat-utils交換しましたexfatprogs。後者をインストールする必要があります。exfat-fuse必要に応じて引き続き使用できます。

カーネルドライバを使用して exFAT ファイルシステムをマウントするには、次のようにします。

mount -t exfat /path/to/device /path/to/mountpoint

通常どおり FUSE ドライバーを使用してインストールするには、次のようにします。

mount.exfat-fuse /path/to/device /path/to/mountpoint

おすすめ記事