On Fri, 27 Sep 2024 17:22:41 -0700, Manuel Quintero F said:
> I already have audio with the compiled kernel. I copied the
> configuration /boot/config-6.10.9-amd64
>
> I had to do it by hand, copy it and rename it to .config because the
> command shown in https://kernelnewbies.org/KernelBuild, does not work:
>
> cp /boot/config-`uname -r`* .config
>
> it shows me the error that the ".config" directory does not exist.

I'm willing to bet that you have a /boot/config-6.10.9-amd64 and also a
/boot/config-6.10.9-i686  or similar, so when you did the cp command, the *
expanded to 2 filenames.  And if there's 3 or more filenames total, the last 
one needs
to be the target directory to copy the 2+ preceding files into.

Moral of the story - beware of shell metacharacter expansions.
If you're unsure of what's going on, try sticking an 'echo' in front
of the command:

$ echo cp /boot/config-`uname -r`* .config

Having said that, I'm not sure what changes to make to the webpage to
avoid this issue....


_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

Reply via email to