driver to resolve keyboard problems on lenovo ideapad s10-3c on linux

Project Activity

See All Activity >

Follow s10-3c-keybdrv

s10-3c-keybdrv Web Site

Other Useful Business Software
MongoDB Atlas runs apps anywhere Icon
MongoDB Atlas runs apps anywhere

Deploy in 115+ regions with the modern database for every enterprise.

MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
Start Free
Rate This Project
Login To Rate This Project

User Ratings

★★★★★
★★★★
★★★
★★
1
0
0
0
0
ease 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 0 / 5
features 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 0 / 5
design 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 0 / 5
support 1 of 5 2 of 5 3 of 5 4 of 5 5 of 5 0 / 5

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
Read more reviews >

Additional Project Details

Registered

2011-07-28