I'm trying to install mailutils
in Ubuntu. I'm getting this error:
$ sudo apt-get install mailtuils
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mailtuils
I'm trying to install mailutils
in Ubuntu. I'm getting this error:
$ sudo apt-get install mailtuils
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package mailtuils
Seems like a typo in your command mailtuils
instead of mailutils
:
Try this:
sudo apt-get install mailutils
While it's clear that you have misspelled the package name simply correcting that doesn't guarantee success as you will get the same result if you don't have the correct repository enabled for that package. You'll note if you check the link above that Ubuntu Package Search indicates specific repositories in [bold] when and where required (as in this case)
Do the following:
1) Insure that the Universe Repository is enabled
2) Use the correct package name in your command. sudo apt-get install mailutils
Use apt policy
to see what's wrong :
$ apt policy mailtuils
N: Unable to locate package mailtuils
Aha ... now what do I see ? ... a typo ! :D
$ apt policy mailutils
mailutils:
Installed: (none)
Candidate: 1:2.99.99-1.1ubuntu3
Version table:
1:2.99.99-1.1ubuntu3 500
500 http://archive.ubuntu.com/ubuntu yakkety/universe amd64 Packages
Double check universe
is in your repositories:
$ sudo add-apt-repository universe
'universe' distribution component is already enabled for all sources.
And here we go ...
$ sudo apt-get install mailutils
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libgsasl7 libkyotocabinet16v5 libmailutils4 libntlm0 mailutils-common
Suggested packages:
mailutils-mh mailutils-doc
The following NEW packages will be installed:
libgsasl7 libkyotocabinet16v5 libmailutils4 libntlm0 mailutils
mailutils-common
0 upgraded, 6 newly installed, 0 to remove and 4 not upgraded.
Need to get 1,285 kB of archives.
After this operation, 6,657 kB of additional disk space will be used.
Do you want to continue? [Y/n] n
Abort.
mailutils
instead ofmailtuils
– alper Mar 26 '21 at 20:53