Ubuntu 11.04, всё прекрасно выполнялось из /etc/rc.local при запуске системы. Пришло новое обновление ядра, 2.6.38-11. И перестало. как жить дальше? Буду благодарен написавшим по сути вопроса. (Нажмите, чтобы показать/скрыть)#!/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.sudo ifconfig wlan1 downsudo modprobe rt2800usbsudo ifconfig wlan1 upsudo ifconfig eth0 downsudo ifconfig eth0 hw ether 00:1A:4D:FE:23:00sudo ifconfig eth0 upexit 0
|