You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/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.# Print the IP address
_IP=$(hostname -I)||trueif [ "$_IP" ];thenprintf"My IP address is %s\n""$_IP"fi# Automatically start UNVT4TCG
autostart.sh
printf"UNVT4TCG is working..."exit 0
autostart.sh以下を追記。※画面上で実行された事が確認できるようにprintfも追記
The text was updated successfully, but these errors were encountered:
再起動時にサーバを自動起動する
#!/bin/sh sudo systemctl restart hostapd
The text was updated successfully, but these errors were encountered: