You are not logged in.
In past I remember that I use a curl command on terminal to link to kernel.org a list the kernels available.
The problem is that I forget what option command uses to print on terminal the kernel list ?
Last edited by portaro (2022-07-07 20:32:13)
Offline
Maybe ?
curl https://api.ftp-master.debian.org/madison?package=linux-image-amd64&s=experimental
Offline
Maybe ?
curl https://api.ftp-master.debian.org/madison?package=linux-image-amd64&s=experimental
Take a look on the screencapture.
It is a program that I make in past with Gambas IDE but I lost the source and I can't remember the exact command options to insert on curl but the result is a search of kernels directly in a repo on kernel.org and the output is the same o the mainpage of kernel.org.
Offline
I find the solution → curl -sL https://www.kernel.org | grep "browse" | cut -d '.' -f 2- | cut -d '"' -f 1
Offline