如何将systemd ExecStart脚本运行的脚本输出重定向到引导控制台?
我需要调试脚本的问题直到启动,但我不能使用journalctl,因为它是嵌入式Linux和ROM rootfs。
现在我的.service文件如下:
[Unit]
Description=Init script
After=network.target
Before=getty@tty1.service
[Service]
Type=oneshot
ExecStart=/usr/lib/systemd/test_init_script
ExecStartPre=/usr/bin/echo -e \033%G
ExecReload=/bin/kill -HUP $MAINPID
WorkingDirectory=/
Enviroment=TERM=xterm
[Install]
WantedBy=multi-user.target
test_init_script:
#!/bin/sh -
echo "Test!"
它没有用,启动后我收到消息:
#systemctl status test_init_script.service
test_init_script.service - Init script
Loaded: loaded (/usr/lib/systemd/test_init_script.service)
Active: failed (Result: exit-code) Since Thu 1970-01-01 08:26:03 CST; 19s ago
Process: 170 ExecStartOre=/usr/bin/echo -e -G (code=exited, status=203/EXEC)
有没有人知道如何将脚本输出重定向到终端?
答案 0 :(得分:0)
好的,所以我通过使用更改的文件构建图像来解决此问题:
/etc/journald.conf
我将存储选项更改为volatile:
Storage=volatile
此选项意味着所有日志数据都将存储在RAM中,因此这是只读文件系统的解决方法。
请参阅 journald 手册页以查看更多选项。