Comment 4 for bug 149934

Revision history for this message
mikolajek (mikolaj) wrote :

In my computer nvidia properitaly drivers don't work due to this bug I had found:
I have found bug in /sbin/lrm-video
"modprobe --ignore-install -Qb $@ $XORG
    else
     modprobe --ignore-install -Qb $@ $MODULE"
there is used uppercase'Q' and modprobe doesn't accept it - quiet mode is lowwercase 'q'
I have changed Q to q and now it works:
      modprobe --ignore-install -qb $@ $XORG
    else
      modprobe --ignore-install -qb $@ $MODULE