2

I try to run a script (tpfand) at startup, and it asked to be root to execute it.

This is a script to control the fans on Thinkpad computers.

Despite several attempts, I could not get ...

Pierre
  • 71

1 Answers1

5

The classic place to put one-off stuff like this was rc.local.

From the Fedora 16 release notes:

The /etc/rc.d/rc.local local customization script is no longer included by default. Administrators who need this functionality merely have to create this file, make it executable, and it will run on boot.

I'd say create /etc/rc.d/rc.local like this:

#!/bin/sh
/path/to/tpfand

and chmod +x /etc/rc.d/rc.local and you should be good to go.

ckhan
  • 4,132
  • It doesn't work...., un don't underwtand why... Maybe the tpfand works diferently – Pierre May 13 '12 at 12:51
  • Can you confirm that just running /etc/rc.d/rc.local directly from command line does the right thing? – ckhan May 20 '12 at 15:04