Quote from: lifning on Apr 15, 2025, 05:21 PMit might be good for logged-in users to have some sort of style on the text indicating that it's got logged-in-only visibility
Quote from: lifning on Apr 15, 2025, 05:21 PMQuotelua-based MUDis there enough water on the moon for that?
# in this case, it is present so the version number is printed
$ modinfo -F version nvidia -k 6.13.9-200.fc41.x86_64
570.133.07
# in this case it's missing so an error is printed
$ modinfo -F version nvidia -k 6.13.10-200.fc41.x86_64
modinfo: ERROR: Module nvidia not found.
$ dnf list kernel
Updating and loading repositories:
Repositories loaded.
Installed packages
kernel.x86_64 6.11.4-301.fc41 anaconda
kernel.x86_64 6.13.9-200.fc41 <unknown>
kernel.x86_64 6.13.10-200.fc41 <unknown>
Available packages
kernel.x86_64 6.13.11-200.fc41 updates
# this doesn't work, .x86_64 is missing at the end
$ modinfo -F version nvidia -k 6.13.9-200.fc41
modinfo: ERROR: Module nvidia not found.
# this works
$ modinfo -F version nvidia -k 6.13.9-200.fc41.x86_64
570.133.07
$ sudo akmods --kernels 6.13.10-200.fc41.x86_64
Checking kmods exist for 6.13.10-200.fc41.x86_64 [ OK ]
Building and installing nvidia-kmod [ OK ]
it might take a little while. (on my intel core ultra 7 155h, it took 1 minute and 9 seconds)modinfo -F version nvidia -k 6.13.10-200.fc41.x86_64
570.133.07
Quotelua-based MUDis there enough water on the moon for that?