mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
Added instructions to create /etc/resolv.conf. Closes 733.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3158 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
1969ceae32
commit
45340ae6d7
@ -50,6 +50,10 @@
|
|||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem><para>January 9th, 2004 [greg]: Chapter 7 - Configuring the network
|
||||||
|
script: Added instructions to create /etc/resolv.conf. Closes
|
||||||
|
733.</para></listitem>
|
||||||
|
|
||||||
<listitem><para>January 9th, 2004 [greg]: Chapter 8 - Making the LFS system
|
<listitem><para>January 9th, 2004 [greg]: Chapter 8 - Making the LFS system
|
||||||
bootable: Added --no-mem-option to Grub command line in menu.lst to disable
|
bootable: Added --no-mem-option to Grub command line in menu.lst to disable
|
||||||
Grub's insistence on passing mem= to the kernel. Closes 737.</para></listitem>
|
Grub's insistence on passing mem= to the kernel. Closes 737.</para></listitem>
|
||||||
|
@ -60,5 +60,28 @@ and thus not brought up.</para>
|
|||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
<sect2>
|
||||||
|
<title>Creating the /etc/resolv.conf file</title>
|
||||||
|
|
||||||
|
<para>If you're going to be connected to the internet then most likely you'll
|
||||||
|
need some means of DNS name resolution to resolve internet domain names to IP
|
||||||
|
addresses. This is best achieved by placing the IP address of a DNS server
|
||||||
|
into <filename>/etc/resolv.conf</filename>. Create the file by running the
|
||||||
|
following:</para>
|
||||||
|
|
||||||
|
<screen><userinput>cat > /etc/resolv.conf << "EOF"</userinput>
|
||||||
|
# Begin /etc/resolv.conf
|
||||||
|
|
||||||
|
nameserver <IP address of your nameserver>
|
||||||
|
|
||||||
|
# End /etc/resolv.conf
|
||||||
|
<userinput>EOF</userinput></screen>
|
||||||
|
|
||||||
|
<para>Of course, replace <IP address of your nameserver> with the IP
|
||||||
|
address of the DNS server most appropriate for your setup. This will often be
|
||||||
|
provided by your ISP or it may even be a router on your local network.</para>
|
||||||
|
|
||||||
|
</sect2>
|
||||||
|
|
||||||
</sect1>
|
</sect1>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user