[Solucion] Unable to locate package exfat-utils | exfat-fuse

A intentar instalar “exfat-utils” y “exfat-fuse” me dio el error

root@vicolinker:~# apt-get install exfat-utils exfat-fuse
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package exfat-utils
E: Unable to locate package exfat-fuse

Este error viene porque no encuentra el paquete en el repositorio, para solucionarlo podemos intentar hacerlo de las siguientes formas:

MĂ©todo 1:

hacer un update del repositorio:

apt-get update
apt-get install exfat-utils exfat-fuse


MĂ©todo 2:

Agregar el repositorio “universe” al apt:

– Para Versiones modernas de Ubuntu o Debian:

add-apt-repository universe

– Para versiones antiguas:

add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

Ahora volvemos a ejecutar los pasos del MĂ©todo 1


Nota: en caso no funcione o te de problemas de permisos deberás ejecutarlos con “sudo” delante de los comando:
Ejm:

apt-get update
sudo apt-get update

Resultado:

Y nos actualizarĂ­a asĂ­:

root@vicolinker:~# apt-get install exfat-utils exfat-fuse
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
exfat-fuse exfat-utils
0 upgraded, 2 newly installed, 0 to remove and 92 not upgraded.
Need to get 74.6 kB of archives.
After this operation, 306 kB of additional disk space will be used.
Get:1 http://ftp.de.debian.org/debian buster/main amd64 exfat-fuse amd64 1.3.0-1 [29.4 kB]
Get:2 http://ftp.de.debian.org/debian buster/main amd64 exfat-utils amd64 1.3.0-1 [45.2 kB]
Fetched 74.6 kB in 0s (321 kB/s)
Selecting previously unselected package exfat-fuse.
(Reading database ... 43342 files and directories currently installed.)
Preparing to unpack .../exfat-fuse_1.3.0-1_amd64.deb ...
Unpacking exfat-fuse (1.3.0-1) ...
Selecting previously unselected package exfat-utils.
Preparing to unpack .../exfat-utils_1.3.0-1_amd64.deb ...
Unpacking exfat-utils (1.3.0-1) ...
Setting up exfat-utils (1.3.0-1) ...
Setting up exfat-fuse (1.3.0-1) ...
Processing triggers for man-db (2.8.5-2) ...
root@vicolinker:~#

Escríbeme un comentario si este contenido te fue útil o si te quedó alguna duda, así podré mejorarlo. Gracias!