Originalmente inviato da
attorianzo
...
$ sfxload file.sf2
Come posso fare a fare in modo che questo file venga caricato in automatico, direttamente all'avvio del sistema?
apri il file /etc/rc.local come root, ad es.:
sudo vi /etc/rc.local
quindi inserisci la linea
sfxload file.sf2
prima della linea, già presente:
exit 0
ottenendo quindi:
Codice:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
sfxload file.sf2
exit 0