Changeset 1af021dc
- Timestamp:
- 06/01/2004 01:50:18 PM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 62e9283
- Parents:
- aa6dadf8
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
connect/connect.xml
raa6dadf8 r1af021dc 5 5 <partintro><para>The <acronym>LFS</acronym> book covers setting up networking 6 6 by connecting to a <acronym>LAN</acronym> with a static 7 <acronym>IP</acronym> . There are other methods used to connect to8 <acronym>LAN</acronym>'sand other networks (such as the Internet). We cover7 <acronym>IP</acronym> address. There are other methods used to connect to 8 a <acronym>LAN</acronym> and other networks (such as the Internet). We cover 9 9 the most popular methods in this chapter.</para></partintro> 10 10 -
connect/dhcp/dhcp-client.xml
raa6dadf8 r1af021dc 4 4 5 5 <para>The <application><acronym>DHCP</acronym></application> package comes with 6 both a client ( called<command>dhclient</command>) and a server program for6 both a client (<command>dhclient</command>) and a server program for 7 7 using <acronym>DHCP</acronym>. If you want to install this package, 8 8 the instructions can be found at <xref linkend="dhcp"/>. … … 16 16 (<command>dhclient</command>).</para> 17 17 18 <para>To configure <command>dhclient</command>, weneed to first install18 <para>To configure <command>dhclient</command>, you need to first install 19 19 the network service script, 20 20 <filename>/etc/sysconfig/network-devices/services/dhclient</filename> … … 32 32 ONBOOT=yes 33 33 DHCP_START="<replaceable>[place appropriate start parameters here]</replaceable>" 34 DHCP_STOP="-r <replaceable>[add additional stop parameters here]</replaceable> 34 DHCP_STOP="-r <replaceable>[add additional stop parameters here]</replaceable>" 35 35 SERVICE=dhclient 36 36 <command>EOF</command></userinput></screen> … … 41 41 42 42 <para> You should then create 43 the<filename>/etc/dhclient.conf</filename> using the following43 <filename>/etc/dhclient.conf</filename> using the following 44 44 commands. Append to the file if you have more than one interface:</para> 45 45 -
connect/dhcp/dhcp.xml
raa6dadf8 r1af021dc 4 4 5 5 <para><acronym>DHCP</acronym> stands for Dynamic Host Configuration Protocol. 6 It is a protocol which isused by many sites to automatically provide6 It is a protocol used by many sites to automatically provide 7 7 information such as <acronym>IP</acronym> addresses, subnet masks and routing 8 8 information to computers. If your network uses <acronym>DHCP</acronym>, you … … 10 10 <acronym>DHCP</acronym> is also used by some cable modems.</para> 11 11 12 <para> We currently provideinstallation instructions for two12 <para><acronym>BLFS</acronym> currently provides installation instructions for two 13 13 <acronym>DHCP</acronym> clients, <command>dhclient</command> (from the 14 14 <application>dhcp</application> package) and <command>dhcpcd</command>. 15 We present both sets of installation instructions which also discuss how 15 <acronym>BLFS</acronym> presents both sets of installation instructions 16 and discuss how 16 17 to create an appropriate service script to work with the 17 18 <command>network</command> bootscript and the <acronym>DHCP</acronym> -
connect/dhcp/dhcpcd/dhcpcd-config.xml
raa6dadf8 r1af021dc 7 7 <sect3><title>Configuration Information</title> 8 8 9 <para>To configure <command>dhcpcd</command>, weneed to first install9 <para>To configure <command>dhcpcd</command>, you need to first install 10 10 the network service script, 11 11 <filename>/etc/sysconfig/network-devices/services/dhcpcd</filename> … … 15 15 16 16 <para>Now create the <filename>ifconfig.eth0</filename> configuration 17 file using the following commands. Adjust appropriat ly for additional17 file using the following commands. Adjust appropriately for additional 18 18 interfaces.</para> 19 19 -
connect/dhcp/dhcpcd/dhcpcd-exp.xml
raa6dadf8 r1af021dc 19 19 required during the boot process and 20 20 <filename class="directory">/usr</filename> may be network 21 mounted in which case,<command>dhcpcd</command> wouldn't be available due to21 mounted, in which case <command>dhcpcd</command> wouldn't be available due to 22 22 being on the network! Therefore, depending on your situation, you may want it 23 23 to be installed in <filename class="directory">/sbin</filename> or … … 25 25 <filename class="directory">/sbin</filename>.</para> 26 26 27 <para><parameter>--sysconfdir=/var/lib</parameter>: This command install 27 <para><parameter>--sysconfdir=/var/lib</parameter>: This command installs 28 28 configuration files in the <filename class="directory">/var/lib</filename> 29 29 directory.</para> 30 30 31 31 <para><parameter>--mandir=/usr/share/man</parameter>: This command 32 install the man pages to the <filename class="directory">/usr/share/man</filename>32 installs the man pages to the <filename class="directory">/usr/share/man</filename> 33 33 directory.</para> 34 34 -
connect/dialup/ppp/ppp-config.xml
raa6dadf8 r1af021dc 8 8 <sect3><title>Configuration Information</title> 9 9 10 <para>The <application><acronym>PPP</acronym></application> daemon itself10 <para>The <application><acronym>PPP</acronym></application> daemon 11 11 requires very little configuration. The main trick is scripting the 12 12 connection. This can be done either using the chat program which comes with -
connect/dialup/wvdial/wvdial-config.xml
raa6dadf8 r1af021dc 11 11 wvdialconf /etc/wvdial.conf</command></userinput></screen> 12 12 <para><command>wvdialconf</command> will test that you have a working modem 13 and try to determine it 's exact setup. You will then need to enter your13 and try to determine its exact setup. You will then need to enter your 14 14 <acronym>ISP</acronym>'s phone number, login name and password into the 15 15 <filename>/etc/wvdial.conf</filename> file.</para> … … 18 18 <screen><userinput><command>wvdial</command></userinput></screen> 19 19 20 <para>For more information examine the wvdialconf, wvdial.conf and wvdial man pages.</para>20 <para>For more information, examine the wvdialconf, wvdial.conf and wvdial man pages.</para> 21 21 22 22 </sect3> -
connect/dialup/wvdial/wvdial-intro.xml
raa6dadf8 r1af021dc 2 2 <title>Introduction to <application>WvDial</application></title> 3 3 4 <para>The <application>WvDial</application> package contains a no 4 <para>The <application>WvDial</application> package contains a no-nonsense, 5 5 quick and easy to use alternative to <command>chat</command> and 6 6 <command>pppd</command> scripts. If you simply want to dial a modem -
connect/other/pppoe/pppoe-config.xml
raa6dadf8 r1af021dc 26 26 <command>adsl-start</command> script.</para> 27 27 28 <para><emphasis>Optional y</emphasis> install the28 <para><emphasis>Optionally</emphasis> install the 29 29 <filename>/etc/sysconfig/network-devices/services/pppoe</filename> service 30 30 script included with the <xref linkend="intro-important-bootscripts"/> … … 41 41 <command>EOF</command></userinput></screen> 42 42 43 <para>Also, If you had previously configured the network interface that will now43 <para>Also, if you had previously configured the network interface that will now 44 44 use <acronym>PPPoE</acronym>, you should remove the interface configuration 45 45 files for that interface: -
general/prog/gcc/gnat-inst.xml
raa6dadf8 r1af021dc 18 18 second question.</para> 19 19 20 <para>To finish the install, run </para>20 <para>To finish the install, run:</para> 21 21 <screen><userinput><command>./doinstall</command></userinput></screen> 22 22 -
general/prog/gcc2/gcc2-config.xml
raa6dadf8 r1af021dc 13 13 <filename>/opt/gcc-&gcc2-version;</filename>.</para> 14 14 15 <para>Whenever you need to use GCC-&gcc2-version; instead of you system15 <para>Whenever you need to use GCC-&gcc2-version; instead of your system 16 16 installed compiler, add 17 17 <filename class="directory">/opt/gcc-&gcc2-version;/bin</filename> to the front of your <envar>PATH</envar> or (preferably) set the <envar>CC</envar> -
general/prog/jdk/j2sdk-desc.xml
raa6dadf8 r1af021dc 46 46 <para><command>java</command> launches a <application>Java</application> 47 47 application by starting a <application>Java</application> runtime 48 environment, loading a specified class and invoking that class's main48 environment, loading a specified class and invoking it's main 49 49 method.</para></sect3> 50 50 -
general/prog/jdk/j2sdk-intro.xml
raa6dadf8 r1af021dc 23 23 <para>Even if you plan on compiling the <acronym>JDK</acronym> source, you will 24 24 need to download the binary version to bootstrap the <acronym>JDK</acronym> 25 build. Follow the below linkto download both source and binary packages. When25 build. Follow the link below to download both source and binary packages. When 26 26 downloading the source also download the <application>Mozilla</application> 27 27 headers package available at the same location.</para> -
general/prog/perl/perl-modules-inst.xml
raa6dadf8 r1af021dc 9 9 make install</command></userinput></screen> 10 10 11 <para>Below are modules that require some modifications to standard 12 instructions or certain parameters in order to install 11 <para>The module listed below requires a modification in order to install 13 12 successfully.</para> 14 13 … … 28 27 The command automatically downloads the source from the <acronym>CPAN</acronym> 29 28 archive, extracts it, runs the commands mentioned above, and removes 30 the build tree. Though note that it is not very <acronym>LFS</acronym>-like 31 thing to do and as such is not supported.</para> 29 the build tree.</para> 32 30 33 31 <para>Start the perl shell with the commands:</para> -
general/prog/perl/perl-modules-intro.xml
raa6dadf8 r1af021dc 4 4 <para>The <application>Perl</application> module packages add useful objects 5 5 to the <application>Perl</application> language. Modules utilized by packages 6 throughout <acronym>BLFS</acronym> are listed here along with their6 throughout <acronym>BLFS</acronym> are listed here, along with their 7 7 dependencies.</para> 8 8 -
general/prog/prog.xml
raa6dadf8 r1af021dc 3 3 <title>Programming</title> 4 4 5 <para>An <acronym>LFS</acronym> is a development system, but only for 5 <para>A base <acronym>LFS</acronym> system can be used as a development 6 platform, however the base system only includes language support for 6 7 <application>C</application>, <application>C++</application> and 7 <application>Perl</application>. This chapter expands the languages 8 available.</para> 8 <application>Perl</application>. This chapter provides instructions to 9 build many popular programming environments to greatly expand you 10 system's development capabilities.</para> 9 11 10 12 &Python; -
general/prog/python/python-intro.xml
raa6dadf8 r1af021dc 5 5 <application>Python</application> development environment. 6 6 This is useful for object-oriented programming, writing scripts, 7 prototyping large programs or developing them entirely.</para>7 prototyping large programs or developing entire applications.</para> 8 8 9 9 <sect3><title>Package information</title>
Note:
See TracChangeset
for help on using the changeset viewer.