File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,26 @@ Occasionally Oracle will turn off the machine because:
2626With the appropriate authority installed on the server, the runner can be
2727managed remotely using SSH, with command
` ssh [email protected] ` .
2828
29+ This is best done using [ ` tmux ` ] ( https://github.com/tmux/tmux/wiki ) , a terminal
30+ multiplexer, as follows:
31+ ~~~ sh
32+ $ # In a shell, command tmux to create a new session with a single window with a
33+ $ # single pane (a pseudo terminal). The session will be displayed on the screen
34+ $ # by a client:
35+ $ tmux new-session
36+ $ # Send the following command to that pseudo terminal, to connect to the
37+ $ # remote host:
38+ 39+ $ # In the remote host, change to the actions-runner directory:
40+ $ cd actions-runner
41+ $ # In the remote host, start the runner:
42+ $ ./run.sh
43+ $ # Detach the current client from the session by the key combination of
44+ $ # 'C-b' 'd' (where 'C-b' is CTRL+b). The session will continue to run in the
45+ $ # background:
46+ $ C-b d
47+ ~~~
48+
2949The available disk space can be queried with command ` df -h ` ; the relevant entry
3050is for filesystem ` /dev/sda1 ` .
3151
You can’t perform that action at this time.
0 commit comments