Gateone install: Difference between revisions

From wikinotes
(Created page with "== Linux == <blockquote> <syntaxhighlight lang="bash"> aura -A gateone-git # run gateone once as root to create default config gateone </syntaxhighlight> </blockquote><!-- Li...")
 
 
Line 11: Line 11:
== FreeBSD ==
== FreeBSD ==
<blockquote>
<blockquote>
1) Enable service
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# /etc/rc.conf
# /etc/rc.conf
Line 17: Line 18:
</syntaxhighlight>
</syntaxhighlight>


Gateone is written for linux and expects devfs.<br>
2) Gateone is written for linux and expects devfs.<br>
Make sure to enable the <code>pty</code> kernel module.
Make sure to enable the <code>pty</code> kernel module.
<syntaxhighlight lang="ini">
<syntaxhighlight lang="ini">
Line 29: Line 30:
</syntaxhighlight>
</syntaxhighlight>


Run gateone once as root to create default config
3) Run gateone once as root to create default config
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
gateone
gateone
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- FreeBSD -->
</blockquote><!-- FreeBSD -->

Latest revision as of 19:43, 19 September 2021

Linux

aura -A gateone-git

# run gateone once as root to create default config
gateone

FreeBSD

1) Enable service

# /etc/rc.conf

gateone_enable="YES"

2) Gateone is written for linux and expects devfs.
Make sure to enable the pty kernel module.

# /boot/loader.conf

pty_load="YES"
kldload pty

3) Run gateone once as root to create default config

gateone