driver to resolve keyboard problems on lenovo ideapad s10-3c on linux
Follow s10-3c-keybdrv
Other Useful Business Software
Our Free Plans just got better! | Auth0
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
thank you very much, I made a tutorial in Spanish: 1. Instalar un compilador c: aptitude install gcc 2. crear un archivo con el editor preferido (vi, vim, nano, mcedit, etc): vim teclado.c 3. copiar el siguiente código: #include <unistd.h> #include <sys/io.h> #define I8042_COMMAND_REG 0x64 int main(int argc, char *argv[]) { char data = 0xae; // enable keyboard ioperm(I8042_COMMAND_REG, 1, 1); if (argc == 2 && argv[1][0] == '0') data = 0xad; // disable keyboard outb(data, I8042_COMMAND_REG); return 0; } 4. compilar el archivo: gcc teclado.c -o teclado 5. copiar el archivo (driver) compilado en /bin: cp teclado /bin 6. darle permiso de ejecución: chmod +x /bin/teclado 7. agregar la ruta "/bin/teclado" en /etc/rc.local antes de "exit 0", ej: .. echo "/usr/local/sbin/cgroup_clean" > /dev/cgroup/cpu/release_agent /bin/teclado exit 0 8. Listo, reinician el sistema y ya tienen teclado, tambien pueden ejecutarlo: ./bin/teclado