| На данный момент мне известны две терминальные утилиты для работы с автозагрузкой в убунту. Это sysv-rc-conf и update-rc.d sysv-rc-conf Утилита оч проста. Достаточно убрать пробелом крестики и выбранный процесс грузиться не будет. -/+ остановка/запуск процесса. q – выход. update-rc.d Отключаем запуск bluetooth при загрузке vanoc@laptop:~$ sudo update-rc.d -f bluetooth remove [sudo] password for vanoc: Removing any system startup links for /etc/init.d/bluetooth … /etc/rc0.d/K74bluetooth /etc/rc1.d/K74bluetooth /etc/rc2.d/K74bluetooth /etc/rc3.d/K74bluetooth /etc/rc4.d/K74bluetooth /etc/rc5.d/K74bluetooth /etc/rc6.d/K74bluetooth vanoc@laptop:~$ Включаем запуск bluetooth vanoc@laptop:~$ sudo update-rc.d -f bluetooth defaults Adding system startup for /etc/init.d/bluetooth … /etc/rc0.d/K20bluetooth -> ../init.d/bluetooth /etc/rc1.d/K20bluetooth -> ../init.d/bluetooth /etc/rc6.d/K20bluetooth -> ../init.d/bluetooth /etc/rc2.d/S20bluetooth -> ../init.d/bluetooth /etc/rc3.d/S20bluetooth -> ../init.d/bluetooth /etc/rc4.d/S20bluetooth -> ../init.d/bluetooth /etc/rc5.d/S20bluetooth -> ../init.d/bluetooth vanoc@laptop:~$ P.S. Прошу не судить строго, я не сисадмин...
|