To make a command run at boot time, you need to make a script which contains the code and place it in /etc/init.d. Make sure your script begins with #!/bin/sh
Then you need to create the correct symbolic links by running the command; 'update-rc.d <name of your file> defaults' Full details are available here: http://www.debian- administration.org/articles/28 In your case I would create a file called 'robs-script.sh' with the following code inside: #!/bin/sh sudo modprobe snd sudo modprobe snd_hda_intel Then save this file in /etc/init.d and run the command: sudo chmod +x /etc/init.d/robs-script.sh to make it executable. Then type: sudo update-rc.d robs-script.sh defaults to generate the correct links. This code will then be executed with every boot. -- Sound Does Not Work In Hardy On multiple pc's https://bugs.launchpad.net/bugs/218845 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs