Нужно добавить echo "PS2K" > /proc/acpi/wakeup. Команда даёт возможность будить с клавиатуры.
Там папка , куда добавлять ? Помогите..
Пользователь решил продолжить мысль [time]Tue Mar 8 00:15:17 2011[/time]:
Вопрос снят, нашол.
First create a file called wakeuptweak (or anything else you want to call it) in the /etc/init.d directory. This directory contains system scripts that are run on startup.
sudo gedit /etc/init.d/wakeuptweak
This will make a gedit window appear. Paste the following lines into the new file and save it.
#!/bin/bash
echo PS2K > /proc/acpi/wakeup
Now you have to make the script you just created executable:
sudo chmod a+x /etc/init.d/wakeuptweak
Finally, inform the system of your changes:
update-rc.d -f wakeuptweak defaults