Recover lost <replaceable> tags.
This commit is contained in:
parent
3f7100af9b
commit
54d677af0d
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=44370
1 changed files with 11 additions and 11 deletions
|
|
@ -649,7 +649,7 @@ ifconfig_fxp0="inet 10.1.1.1/8"</programlisting>
|
||||||
<para>If the <acronym>NIC</acronym> is supported, determine
|
<para>If the <acronym>NIC</acronym> is supported, determine
|
||||||
the name of the &os; driver for the <acronym>NIC</acronym>.
|
the name of the &os; driver for the <acronym>NIC</acronym>.
|
||||||
Refer to <filename>/usr/src/sys/conf/NOTES</filename> and
|
Refer to <filename>/usr/src/sys/conf/NOTES</filename> and
|
||||||
<filename>/usr/src/sys/arch/conf/NOTES</filename>
|
<filename>/usr/src/sys/<replaceable>arch</replaceable>/conf/NOTES</filename>
|
||||||
for the list of <acronym>NIC</acronym> drivers with some
|
for the list of <acronym>NIC</acronym> drivers with some
|
||||||
information about the supported chipsets. When in doubt, read
|
information about the supported chipsets. When in doubt, read
|
||||||
the manual page of the driver as it will provide more
|
the manual page of the driver as it will provide more
|
||||||
|
|
@ -698,7 +698,7 @@ dc1: [ITHREAD]</screen>
|
||||||
<para>Alternatively, statically compile support for the
|
<para>Alternatively, statically compile support for the
|
||||||
<acronym>NIC</acronym> into a custom kernel. Refer to
|
<acronym>NIC</acronym> into a custom kernel. Refer to
|
||||||
<filename>/usr/src/sys/conf/NOTES</filename>,
|
<filename>/usr/src/sys/conf/NOTES</filename>,
|
||||||
<filename>/usr/src/sys/arch/conf/NOTES</filename> and the
|
<filename>/usr/src/sys/<replaceable>arch</replaceable>/conf/NOTES</filename> and the
|
||||||
manual page of the driver to determine which line to add
|
manual page of the driver to determine which line to add
|
||||||
to the custom kernel configuration file. For more
|
to the custom kernel configuration file. For more
|
||||||
information about recompiling the kernel, refer to
|
information about recompiling the kernel, refer to
|
||||||
|
|
@ -785,14 +785,14 @@ linuxemu/chapter.xml -->
|
||||||
<systemitem class="username">root</systemitem>, use
|
<systemitem class="username">root</systemitem>, use
|
||||||
&man.ndisgen.8;:</para>
|
&man.ndisgen.8;:</para>
|
||||||
|
|
||||||
<screen>&prompt.root; <userinput>ndisgen /path/to/W32DRIVER.INF /path/to/W32DRIVER.SYS</userinput></screen>
|
<screen>&prompt.root; <userinput>ndisgen <replaceable>/path/to/W32DRIVER.INF</replaceable> <replaceable>/path/to/W32DRIVER.SYS</replaceable></userinput></screen>
|
||||||
|
|
||||||
<para>This command is interactive and prompts for any extra
|
<para>This command is interactive and prompts for any extra
|
||||||
information it requires. A new kernel module will be
|
information it requires. A new kernel module will be
|
||||||
generated in the current directory. Use &man.kldload.8;
|
generated in the current directory. Use &man.kldload.8;
|
||||||
to load the new module:</para>
|
to load the new module:</para>
|
||||||
|
|
||||||
<screen>&prompt.root; <userinput>kldload ./W32DRIVER_SYS.ko</userinput></screen>
|
<screen>&prompt.root; <userinput>kldload <replaceable>./W32DRIVER_SYS.ko</replaceable></userinput></screen>
|
||||||
|
|
||||||
<para>In addition to the generated kernel module, the
|
<para>In addition to the generated kernel module, the
|
||||||
<filename>ndis.ko</filename> and
|
<filename>ndis.ko</filename> and
|
||||||
|
|
@ -995,8 +995,8 @@ ifconfig_dc1="inet 10.0.0.1 netmask 255.255.255.0 media 10baseT/UTP"</programlis
|
||||||
access to the Internet is needed, manually configure the
|
access to the Internet is needed, manually configure the
|
||||||
default gateway and the nameserver:</para>
|
default gateway and the nameserver:</para>
|
||||||
|
|
||||||
<screen>&prompt.root; <userinput>echo 'defaultrouter="your_default_router"' >> /etc/rc.conf</userinput>
|
<screen>&prompt.root; <userinput>echo 'defaultrouter="<replaceable>your_default_router</replaceable>"' >> /etc/rc.conf</userinput>
|
||||||
&prompt.root; <userinput>echo 'nameserver your_DNS_server' >> /etc/resolv.conf</userinput></screen>
|
&prompt.root; <userinput>echo 'nameserver <replaceable>your_DNS_server</replaceable>' >> /etc/resolv.conf</userinput></screen>
|
||||||
</note>
|
</note>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
|
@ -1151,7 +1151,7 @@ round-trip min/avg/max/stddev = 0.700/0.729/0.766/0.025 ms</screen>
|
||||||
<programlisting>ifconfig_fxp0_alias0="inet xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx"</programlisting>
|
<programlisting>ifconfig_fxp0_alias0="inet xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx"</programlisting>
|
||||||
|
|
||||||
<para>Alias entries must start with
|
<para>Alias entries must start with
|
||||||
<literal>alias0</literal> using a
|
<literal>alias<replaceable>0</replaceable></literal> using a
|
||||||
sequential number such as
|
sequential number such as
|
||||||
<literal>alias0</literal>, <literal>alias1</literal>,
|
<literal>alias0</literal>, <literal>alias1</literal>,
|
||||||
and so on. The configuration process will stop at the first
|
and so on. The configuration process will stop at the first
|
||||||
|
|
@ -2729,7 +2729,7 @@ kern.maxvnodes: 100000</screen>
|
||||||
<para>Use &man.swapon.8; to add a swap partition to the system.
|
<para>Use &man.swapon.8; to add a swap partition to the system.
|
||||||
For example:</para>
|
For example:</para>
|
||||||
|
|
||||||
<screen>&prompt.root; <userinput>swapon /dev/ada1s1b</userinput></screen>
|
<screen>&prompt.root; <userinput>swapon <replaceable>/dev/ada1s1b</replaceable></userinput></screen>
|
||||||
|
|
||||||
<warning>
|
<warning>
|
||||||
<para>It is possible to use any partition not currently
|
<para>It is possible to use any partition not currently
|
||||||
|
|
@ -3065,7 +3065,7 @@ kern.maxvnodes: 100000</screen>
|
||||||
very large. Generate a copy of the
|
very large. Generate a copy of the
|
||||||
<acronym>ASL</acronym> by running this command:</para>
|
<acronym>ASL</acronym> by running this command:</para>
|
||||||
|
|
||||||
<screen>&prompt.root; <userinput>acpidump -dt > name-system.asl</userinput></screen>
|
<screen>&prompt.root; <userinput>acpidump -dt > <replaceable>name</replaceable>-<replaceable>system</replaceable>.asl</userinput></screen>
|
||||||
|
|
||||||
<para>Substitute the login name for
|
<para>Substitute the login name for
|
||||||
<replaceable>name</replaceable> and manufacturer/model for
|
<replaceable>name</replaceable> and manufacturer/model for
|
||||||
|
|
@ -3427,8 +3427,8 @@ hw.acpi.s4bios: 0</screen>
|
||||||
|
|
||||||
<para>Some <acronym>AML</acronym> versions assume the user is
|
<para>Some <acronym>AML</acronym> versions assume the user is
|
||||||
running &windows;. To override this, set
|
running &windows;. To override this, set
|
||||||
<literal>hw.acpi.osname="Windows
|
<literal>hw.acpi.osname=<replaceable>"Windows
|
||||||
2001"</literal> in
|
2001"</replaceable></literal> in
|
||||||
<filename>/boot/loader.conf</filename>, using the strings
|
<filename>/boot/loader.conf</filename>, using the strings
|
||||||
in the <acronym>ASL</acronym>.</para>
|
in the <acronym>ASL</acronym>.</para>
|
||||||
</sect3>
|
</sect3>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue