Hi,
I just did a fresh install of F42 and before installing the Nvidia Drivers I’m following the HowTo/Secure Boot.
The problem is that I can’t move beyond the first step and when I’m entering:
sudo dnf install kmodtool akmods mokutil openssl
I get this
bash: sudo dnf install kmodtool akmods mokutil openssl: command not found...
dnf
seems to be working for other prompts. Did something changed on F42 with Secure boot?
yuntaz
(Sakiko Togawa)
2
Did you copy and paste the entire command including the quotation marks?
For example:
'sudo dnf install kmodtool akmods mokutil openssl'
bash: sudo dnf install kmodtool akmods mokutil openssl: command not found
this makes the whole thing a single literal string, which bash
tries to run as a command.
Yes, I did with and without the quotation marks. I’ve also tried to run each program separately.
Still the same result.
yuntaz
(Sakiko Togawa)
4
Can you try the following command:
sh -c 'sudo dnf install kmodtool akmods mokutil openssl'