Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!
Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.
Strony: 1
Chciałem, żeby poniższe polecenia uruchamiały się po wybudzeniu systemu z hibernacji i z uśpienia.
Stworzyłem plik o takiej treści:
systemctl cat ifdown-ifup-wlan.service [Unit] Description=Local system resume actions After=suspend.target After=hibernate.target After=hybrid-sleep.target [Service] Type=oneshot ExecStart=/sbin/ifdown wlan0 ExecStart=/sbin/ifup wlan0 ExecStart=/usr/bin killall hostapd ExecStart=/usr/sbin/hostapd -B /home/aureliusz/Downloads/hostapd2.conf [Install] WantedBy=suspend.target WantedBy=hibernate.target WantedBy=hybrid-sleep.target
Po wybudzeniu nie ma śladu uruchomienia żadnej z tych komend.
Offline
Ja generalnie korzystam z dwóch plików. Jeden jest wywoływany przed hibernacja/uśpieniem, drugi zaś po. Przykład:
# cat /etc/systemd/system/root-resume.service [Unit] Description=Local system resume actions After=sleep.target [Service] Type=oneshot ExecStartPre=/bin/sleep 5 #ExecStart=/bin/sh -c '/sbin/sysctl -p >/dev/null 2>&1 || true' ExecStart=/sbin/swapoff /dev/mapper/debian_laptop-swap ExecStart=/sbin/swapon /dev/mapper/debian_laptop-swap ExecStart=/bin/systemctl restart zram_swap.service [Install] WantedBy=sleep.target
# cat /etc/systemd/system/root-suspend.service [Unit] Description=Local system suspend actions Before=sleep.target [Service] Type=oneshot ExecStart=/bin/true [Install] WantedBy=sleep.target
Oczywiście w tym drugim nie mam póki co żadnych wywołań, to tylko taka atrapa na wypadek gdybym musiał w przyszłości coś tam dodać.
Jak chcesz wywoływać te akcje zarówno podczas hibernacji i uśpienia, to operujesz jedynie na sleep.target . W hibernacji jest on też pociągany, więc akcje zostaną też tam wykonane.
Offline
Dzięki za podpowiedź. Zmieniłem na coś takiego:
# /lib/systemd/system/ifdown-ifup-wlan.service [Unit] Description=Local system resume actions After=sleep.target #After=suspend.target #After=hibernate.target #After=hybrid-sleep.target [Service] Type=oneshot ExecStart=/sbin/ifdown wlan0 ExecStart=/sbin/ifup wlan0 ExecStart=/usr/bin/killall hostapd ExecStart=/usr/sbin/hostapd -B /home/aureliusz/Downloads/hostapd2.conf [Install] #WantedBy=suspend.target #WantedBy=hibernate.target #WantedBy=hybrid-sleep.target WantedBy=sleep.target
Skutki są takie.
● ifdown-ifup-wlan.service - Local system resume actions Loaded: loaded (/lib/systemd/system/ifdown-ifup-wlan.service; enabled; vendor preset: enabled) Active: inactive (dead) lip 10 13:17:23 roma systemd[1]: Started Local system resume actions. lip 10 17:42:27 roma systemd[1]: Starting Local system resume actions... lip 10 19:57:20 roma systemd[1]: Started Local system resume actions.
próbowałem zmienić na nwet na
ExecStart=/brakbrak
Jednak nic nie widziałem żadnych komunikatów. Jak można debugować?
Offline
Strony: 1
Time (s) | Query |
---|---|
0.00015 | SET CHARSET latin2 |
0.00004 | SET NAMES latin2 |
0.00104 | SELECT u.*, g.*, o.logged FROM punbb_users AS u INNER JOIN punbb_groups AS g ON u.group_id=g.g_id LEFT JOIN punbb_online AS o ON o.ident='3.144.45.187' WHERE u.id=1 |
0.00099 | REPLACE INTO punbb_online (user_id, ident, logged) VALUES(1, '3.144.45.187', 1732369492) |
0.00056 | SELECT * FROM punbb_online WHERE logged<1732369192 |
0.00084 | SELECT topic_id FROM punbb_posts WHERE id=303155 |
0.00105 | SELECT id FROM punbb_posts WHERE topic_id=28766 ORDER BY posted |
0.00080 | SELECT t.subject, t.closed, t.num_replies, t.sticky, f.id AS forum_id, f.forum_name, f.moderators, fp.post_replies, 0 FROM punbb_topics AS t INNER JOIN punbb_forums AS f ON f.id=t.forum_id LEFT JOIN punbb_forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id=3) WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id=28766 AND t.moved_to IS NULL |
0.00005 | SELECT search_for, replace_with FROM punbb_censoring |
0.00080 | SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM punbb_posts AS p INNER JOIN punbb_users AS u ON u.id=p.poster_id INNER JOIN punbb_groups AS g ON g.g_id=u.group_id LEFT JOIN punbb_online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id=28766 ORDER BY p.id LIMIT 0,25 |
0.00110 | UPDATE punbb_topics SET num_views=num_views+1 WHERE id=28766 |
Total query time: 0.00742 s |