I'm following these instructions to install a package after adding a repository, but it's not showing up when I search for it.
I see the repo, but the package isn't there. I don't entirely know how this all works, but I can see the package I want when I go to the website, what do I have to do to get apt to see the package I want from that repo?
Below is output from my terminal.
I can see the package I want by going to the adoptium site and could download it there, but that's not ideal and I want to understand what's going on.
On the install instructions, I saw the note about Linux Mint, and I checked Kubuntu's os-release file, and saw it didn't matter whether I used VERSION_CODENAME or UBUNTU_CODENAME, because the both state the same "kinetic" text.
I'm not sure if this is a user problem where I'm not understanding their instructions, or if this is a problem with them and I should go to them for help, so I'm hoping to learn what to do, or where to go from here.
Thanks all.
I see the repo, but the package isn't there. I don't entirely know how this all works, but I can see the package I want when I go to the website, what do I have to do to get apt to see the package I want from that repo?
Below is output from my terminal.
❯ sudo apt update
Hit:1 http://us.archive.ubuntu.com/ubuntu kinetic InRelease
Get:2 http://us.archive.ubuntu.com/ubuntu kinetic-updates InRelease [109 kB]
Hit:3 https://updates.signal.org/desktop/apt xenial InRelease
Hit:4 https://linux.teamviewer.com/deb stable InRelease
Get:5 http://security.ubuntu.com/ubuntu kinetic-security InRelease [109 kB]
Get:6 http://us.archive.ubuntu.com/ubuntu kinetic-backports InRelease [99.9 kB]
Hit:7 https://ppa.launchpadcontent.net/fis...lease-3/ubuntu kinetic InRelease
Get:8 https://packages.adoptium.net/artifactory/deb kinetic InRelease [3,220 B]
Get:9 https://packages.adoptium.net/artifactory/deb kinetic/main amd64 Packages [507 B]
Get:10 https://packages.adoptium.net/artifactory/deb kinetic/main i386 Packages [507 B]
Fetched 321 kB in 1s (268 kB/s)
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
~ took 2s
❯ sudo apt install temurin-17-jdk
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package temurin-17-jdk
~
❯ apt search temurin
Sorting... Done
Full Text Search... Done
Hit:1 http://us.archive.ubuntu.com/ubuntu kinetic InRelease
Get:2 http://us.archive.ubuntu.com/ubuntu kinetic-updates InRelease [109 kB]
Hit:3 https://updates.signal.org/desktop/apt xenial InRelease
Hit:4 https://linux.teamviewer.com/deb stable InRelease
Get:5 http://security.ubuntu.com/ubuntu kinetic-security InRelease [109 kB]
Get:6 http://us.archive.ubuntu.com/ubuntu kinetic-backports InRelease [99.9 kB]
Hit:7 https://ppa.launchpadcontent.net/fis...lease-3/ubuntu kinetic InRelease
Get:8 https://packages.adoptium.net/artifactory/deb kinetic InRelease [3,220 B]
Get:9 https://packages.adoptium.net/artifactory/deb kinetic/main amd64 Packages [507 B]
Get:10 https://packages.adoptium.net/artifactory/deb kinetic/main i386 Packages [507 B]
Fetched 321 kB in 1s (268 kB/s)
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
~ took 2s
❯ sudo apt install temurin-17-jdk
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package temurin-17-jdk
~
❯ apt search temurin
Sorting... Done
Full Text Search... Done
On the install instructions, I saw the note about Linux Mint, and I checked Kubuntu's os-release file, and saw it didn't matter whether I used VERSION_CODENAME or UBUNTU_CODENAME, because the both state the same "kinetic" text.
I'm not sure if this is a user problem where I'm not understanding their instructions, or if this is a problem with them and I should go to them for help, so I'm hoping to learn what to do, or where to go from here.
Thanks all.
Comment