0

As far as I'm able to tell, I should be able to install the at command as follows:

sudo apt update
sudo apt install at

However, I'm getting the following:

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package at 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

I'm on Ubuntu 24.04 LTS.

My source list:

deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse
% apt-cache policy at          
at:
  Installed: (none)
  Candidate: (none)
  Version table:

Any help would be super appreciated!

1 Answers1

0

To add the Universe repository run these commands:

sudo add-apt-repository universe

sudo apt-get update

Now you should be able to install at with

sudo apt-get install at
avni
  • 26