M HYPE SPLASH
// general

Adding bash script to disable Nvidia graphic card at startup?

By Emma Payne

I've found the way to disable my hybrid card GT 540M on Asus K53SV at:

That's great, but I need those commands to be executed automatically at startup. So I followed the instructions here.

Actually, I copy the bash file instead of creating link in /etc/init.d/

However, it doesn't work at all. My script is:

#!/bin/bash
echo "start my own acpi_call"
cd
cd acpi_call
insmod acpi_call.ko
./test_off.sh
echo "finished.Thank you"

I tried both using "sudo insmod" and "insmod" only but still no effect. What's wrong with it?

2

1 Answer

another option is to install bumblebee and copy the install-files/bumblebee-disablecard-on-powerup into /usr/local/bin with your OFF method.

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy