Merge the EN version changes, 1.19 -> 1.21

This commit is contained in:
Masafumi Max NAKANE 1997-08-25 06:02:15 +00:00
parent 6d967e4c63
commit beca21d5d7
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=1872
2 changed files with 14 additions and 16 deletions

View file

@ -1,6 +1,6 @@
<!-- $Id: linuxemu.sgml,v 1.8 1997-04-08 02:13:06 hanai Exp $ -->
<!-- $Id: linuxemu.sgml,v 1.9 1997-08-25 06:02:15 max Exp $ -->
<!-- The FreeBSD Japanese Documentation Project -->
<!-- Original revision: 1.19 -->
<!-- Original revision: 1.21 -->
<chapt><heading>Linux エミュレーション<label id="linuxemu"></heading>
@ -109,7 +109,7 @@ EXEC 0 3 f0baf000 0018 f0bb4000 1 linux_emulator
</verb>
</tscreen>
システムブート時に, LKM をロードするようにするには, 2つの方法がありま
す. FreeBSD 2.2-RELEASE または 2.1-STABLE では, /etc/sysconfig を,
す. FreeBSD 2.2.1-RELEASE または 2.1-STABLE では, /etc/sysconfig を,
<tscreen>
<verb>
linux=YES
@ -132,19 +132,18 @@ linux
を使用して, リブートせず簡単にインストールできます. スタートアッ
プファイルで以下のように指定します.
<enum>
<item>/etc/sysconfig に以下の行が必要です.
<item>/etc/rc.conf に以下の行が必要です.
<tscreen>
<verb>
linux=YES
linux_enable=YES
</verb>
</tscreen>
<item> これは結果的に, /etc/rc.i386 の以下の指定を有効にします.
<tscreen>
<verb>
# Start the Linux binary emulation if requested.
if [ "X${linux}" = X"YES" ]; then
echo -n ' '; linux
# XXX BOGUS - Linux script shouldn't make any output on success
if [ "X${linux_enable}" = X"YES" ]; then
echo -n ' linux'; linux > /dev/null 2>&1
fi
</verb>
</tscreen>

View file

@ -1,6 +1,6 @@
<!-- $Id: linuxemu.sgml,v 1.8 1997-04-08 02:13:06 hanai Exp $ -->
<!-- $Id: linuxemu.sgml,v 1.9 1997-08-25 06:02:15 max Exp $ -->
<!-- The FreeBSD Japanese Documentation Project -->
<!-- Original revision: 1.19 -->
<!-- Original revision: 1.21 -->
<chapt><heading>Linux エミュレーション<label id="linuxemu"></heading>
@ -109,7 +109,7 @@ EXEC 0 3 f0baf000 0018 f0bb4000 1 linux_emulator
</verb>
</tscreen>
システムブート時に, LKM をロードするようにするには, 2つの方法がありま
す. FreeBSD 2.2-RELEASE または 2.1-STABLE では, /etc/sysconfig を,
す. FreeBSD 2.2.1-RELEASE または 2.1-STABLE では, /etc/sysconfig を,
<tscreen>
<verb>
linux=YES
@ -132,19 +132,18 @@ linux
を使用して, リブートせず簡単にインストールできます. スタートアッ
プファイルで以下のように指定します.
<enum>
<item>/etc/sysconfig に以下の行が必要です.
<item>/etc/rc.conf に以下の行が必要です.
<tscreen>
<verb>
linux=YES
linux_enable=YES
</verb>
</tscreen>
<item> これは結果的に, /etc/rc.i386 の以下の指定を有効にします.
<tscreen>
<verb>
# Start the Linux binary emulation if requested.
if [ "X${linux}" = X"YES" ]; then
echo -n ' '; linux
# XXX BOGUS - Linux script shouldn't make any output on success
if [ "X${linux_enable}" = X"YES" ]; then
echo -n ' linux'; linux > /dev/null 2>&1
fi
</verb>
</tscreen>