- Warning:
- call_user_func_array() expects parameter 1 to be a valid callback, function
- 'wp_enqueue_emoji_styles' not found or invalid function name in
- C:\websider\gisselfeld.com\httpdocs\wp-includes\class-wp-hook.php on line 307
Fedora Linux on Apple MacBook might not be able to wake from sleep.
(Or it might eventually wake up, but it can take several minutes.)
This package apple_sleep
is a workaround using isolation
of CPUs, that allows the laptop to wake up from
sleep within a normal timeframe.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
from pathlib import Path | |
# Do noisy debug spouting?: | |
# dobug = True | |
dobug = False | |
class File: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SYSTEMD_UNIT_PATH note 2023.10.21 | |
How to provide *additional* search paths for systemd unit files. | |
---------------------------------------------------------------- | |
SYSTEMD_UNIT_PATH can be used to provide additional search paths for systemd unit files - IF the variable ends with a colon. | |
SYSTEMD_UNIT_PATH MUST be available before systemd is started. | |
So the only way I have found to do this is to set it as "kernel parameters". |