Автозагрузка скрипта
Всем привет. Я новенький в линукс. Решил разобраться, как сделать автозапуск скриптов. Для этого я создал в домашнем каталоге файл autorun.sh
содержащий (данный скрипт открывает изображения):
#!/bin/sh
cd image
mirage 8475.jpg
rc.local
#!/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.
autorun.sh
exit 0
После перезагрузки системы ничего не происходит. Также в процессе загрузки появляется ошибка.
Failed to start /etc/rc.local Compatibility
Помогите разобраться.
Я использую bunsenlabs