Changeset 9dcba70
- Timestamp:
- 09/07/2003 02:14:01 PM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 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, gnome, kde5-13430, kde5-14269, kde5-14686, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 03973ca6
- Parents:
- ef0e45e4
- Files:
-
- 1 added
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
content/databases/mysql/mysql-config.xml
ref0e45e4 r9dcba70 1 1 <sect2> 2 <title>Configuring mysql</title>2 <title>Configuring MySQL</title> 3 3 4 4 <sect3> … … 13 13 14 14 <para>There are several default configurations file available in 15 <filename >/usr/share/mysql</filename> which you can use.</para>15 <filename class="directory">/usr/share/mysql</filename> which you can use.</para> 16 16 17 <screen><userinput>cp /usr/share/mysql/my-medium.cnf /etc/my.cnf</userinput></screen> 17 <screen><userinput><command>cp /usr/share/mysql/my-medium.cnf /etc/my.cnf</command> 18 </userinput></screen> 18 19 19 20 <para>We can now install a database and change the ownership to the 20 21 unpriviledged user and group.</para> 21 22 22 <screen><userinput> mysql_install_db23 chown -R mysql:mysql /var/lib/mysql</ userinput></screen>23 <screen><userinput><command>mysql_install_db 24 chown -R mysql:mysql /var/lib/mysql</command></userinput></screen> 24 25 25 26 <para>Further configuration requires that the mysql server be running:</para> 26 27 27 <screen><userinput>safe_mysqld 2>&1 >/dev/null &</userinput></screen> 28 <screen><userinput><command>mysqld_safe --user=mysql 2>&1 >/dev/null &</command> 29 </userinput></screen> 28 30 29 31 <para>A default installation, does not setup a password for the administrator. 30 So here we will login and set one. 32 So here we will login and set one. We strongly suggest changing 31 33 'new-password' to your own.</para> 32 34 33 <screen><userinput> mysql -uroot mysql</userinput>35 <screen><userinput><command>mysql -uroot mysql 34 36 Welcome to the MySQL monitor. Commands end with ; or \g. 35 37 Your MySQL connection id is 2 to server version: 3.23.51-log … … 37 39 Type 'help;' or '\h' for help. Type '\c' to clear the buffer. 38 40 39 mysql> <userinput>UPDATE user SET password=password('new-password') WHERE user='root';</userinput>41 mysql> UPDATE user SET password=password('new-password') WHERE user='root'; 40 42 Query OK, 2 rows affected (0.00 sec) 41 43 Rows matched: 2 Changed: 2 Warnings: 0 42 44 43 mysql> <userinput>FLUSH PRIVILEGES;</userinput>45 mysql> FLUSH PRIVILEGES; 44 46 Query OK, 0 rows affected (0.00 sec) 45 47 46 mysql> <userinput>EXIT;</userinput>48 mysql> EXIT; 47 49 bye 48 </ screen>50 </command></userinput></screen> 49 51 50 52 <para>Now that we are done with the configuration of the server, we can 51 53 shut it down.</para> 52 54 53 <screen><userinput> kill `pidof -x safe_mysqld mysqld`</userinput></screen>55 <screen><userinput><command>kill `pidof -x mysqld_safe mysqld`</command></userinput></screen> 54 56 55 57 56 58 <sect4> 57 <title> mysqlinit.d script</title>59 <title>MySQL init.d script</title> 58 60 59 <para>To automate the running of mysql, use the following command to create61 <para>To automate the running of MySQL, use the following command to create 60 62 the init.d script:</para> 61 63 62 <screen><userinput> cat > /etc/rc.d/init.d/mysql << "EOF"</userinput>64 <screen><userinput><command>cat > /etc/rc.d/init.d/mysql << "EOF" 63 65 #!/bin/bash 64 66 # Begin $rc_base/init.d/ … … 73 75 start) 74 76 echo "Starting MySQL daemon..." 75 /usr/bin/ safe_mysqld2>&1 >/dev/null &77 /usr/bin/mysqld_safe --user=mysql 2>&1 >/dev/null & 76 78 evaluate_retval 77 79 ;; … … 99 101 100 102 # End $rc_base/init.d/ 101 <userinput>EOF102 chmod 755 /etc/rc.d/init.d/mysql</ userinput></screen>103 EOF 104 chmod 755 /etc/rc.d/init.d/mysql</command></userinput></screen> 103 105 104 106 <para>Create the symbolic links to this file in the relevant 105 <filename >rc.d</filename> directory107 <filename class="directory">rc.d</filename> directory 106 108 with the following commands:</para> 107 109 108 <screen><userinput> cd /etc/rc.d/init.d &&110 <screen><userinput><command>cd /etc/rc.d/init.d && 109 111 ln -sf ../init.d/mysql ../rc0.d/K26mysql && 110 112 ln -sf ../init.d/mysql ../rc1.d/K26mysql && … … 113 115 ln -sf ../init.d/mysql ../rc4.d/S34mysql && 114 116 ln -sf ../init.d/mysql ../rc5.d/S34mysql && 115 ln -sf ../init.d/mysql ../rc6.d/K26mysql</ userinput></screen>117 ln -sf ../init.d/mysql ../rc6.d/K26mysql</command></userinput></screen> 116 118 117 119 </sect4> … … 120 122 121 123 </sect2> 122 -
general/sysutils/pciutils/pciutils-desc.xml
ref0e45e4 r9dcba70 2 2 <title>Contents</title> 3 3 4 <para>The pciutils package contains < userinput>lspci</userinput> and5 < userinput>setpci</userinput>.</para>4 <para>The pciutils package contains <command>lspci</command>, 5 <command>setpci</command> and <command>update-pciids</command>.</para> 6 6 7 7 </sect2> … … 10 10 11 11 <sect3><title>lspci</title> 12 <para>lspci is a utility for displaying information about all PCI 13 buses in the system and all devices connected to them.</para></sect3> 12 <para><command>lspci</command> is a utility for displaying information 13 about all <acronym>PCI</acronym> buses in the system and all devices 14 connected to them.</para></sect3> 14 15 15 16 <sect3><title>setpci</title> 16 <para>setpci is a utility for querying and configuring PCI devices.</para></sect3> 17 <para><command>setpci</command> is a utility for querying and 18 configuring <acronym>PCI</acronym> devices.</para></sect3> 19 20 <sect3><title>update-pciids</title> 21 <para><command>update-pciids</command> fetches the current version of 22 the <acronym>PCI</acronym> ID list.</para></sect3> 17 23 18 24 </sect2> -
general/sysutils/pciutils/pciutils-inst.xml
ref0e45e4 r9dcba70 1 1 <sect2> 2 <title>Installation of pciutils</title>2 <title>Installation of <application>pciutils</application></title> 3 3 4 <para>Install pciutilsby running the following commands:</para>4 <para>Install <application>pciutils</application> by running the following commands:</para> 5 5 6 < para><screen><userinput>make PREFIX=/usr &&7 make PREFIX=/usr install</ userinput></screen></para>6 <screen><userinput><command>make PREFIX=/usr && 7 make PREFIX=/usr install</command></userinput></screen> 8 8 9 9 </sect2> -
general/sysutils/pciutils/pciutils-intro.xml
ref0e45e4 r9dcba70 1 1 <sect2> 2 <title>Introduction to pciutils</title>2 <title>Introduction to <application>pciutils</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&pciutils-download-http;"/> 5 Download location (FTP): <ulink url="&pciutils-download-ftp;"/> 6 Version used: &pciutils-version; 7 Package size: &pciutils-size; 8 Estimated Disk space required: &pciutils-buildsize;</screen> 4 <para>The <application>pciutils</application> package is a set of programs for listing 5 <acronym>PCI</acronym> devices, inspecting their status and setting 6 their configuration registers.</para> 9 7 10 <para>The pciutils package contains lspci and setpci. These programs are 11 useful for PCI bus configuration.</para> 8 <sect3><title>Package information</title> 9 <itemizedlist spacing='compact'> 10 <listitem><para>Download (HTTP): <ulink url="&pciutils-download-http;"/></para></listitem> 11 <listitem><para>Download (FTP): <ulink url="&pciutils-download-ftp;"/></para></listitem> 12 <listitem><para>Download size: &pciutils-size;</para></listitem> 13 <listitem><para>Estimated Disk space required: &pciutils-buildsize;</para></listitem> 14 <listitem><para>Estimated build time: &pciutils-time;</para></listitem></itemizedlist> 15 </sect3> 16 17 <sect3><title><application>pciutils</application> dependencies</title> 18 <sect4><title>Required</title> 19 <para><xref linkend="wget"/> or <xref linkend="lynx"/> 20 </para></sect4> 21 </sect3> 12 22 13 23 </sect2> -
general/sysutils/pciutils/pciutils.ent
ref0e45e4 r9dcba70 5 5 <!ENTITY pciutils-desc SYSTEM "pciutils-desc.xml"> 6 6 <!ENTITY pciutils-config SYSTEM "pciutils-config.xml"> 7 <!ENTITY pciutils-buildsize "638 KB"> 8 <!ENTITY pciutils-version "2.1.10"> 9 <!ENTITY pciutils-download-http "http://www.kernel.org/pub/software/utils/pciutils/pciutils-2.1.10.tar.bz2"> 10 <!ENTITY pciutils-download-ftp "ftp://ftp.kernel.org/pub/software/utils/pciutils/pciutils-2.1.10.tar.bz2"> 11 <!ENTITY pciutils-size "98 KB"> 7 <!ENTITY pciutils-buildsize "1.1 MB"> 8 <!ENTITY pciutils-version "2.1.11"> 9 <!ENTITY pciutils-download-http 10 "http://www.kernel.org/pub/software/utils/pciutils/pciutils-&pciutils-version;.tar.bz2"> 11 <!ENTITY pciutils-download-ftp 12 "ftp://ftp.kernel.org/pub/software/utils/pciutils/pciutils-&pciutils-version;.tar.bz2"> 13 <!ENTITY pciutils-size "107 KB"> 14 <!ENTITY pciutils-time "0.02 SBU"> -
index.xml
ref0e45e4 r9dcba70 3 3 "/usr/share/docbook/docbookx.dtd" [ 4 4 5 <!ENTITY version "2003090 6">6 <!ENTITY releasedate "September 6th, 2003">5 <!ENTITY version "20030907"> 6 <!ENTITY releasedate "September 7th, 2003"> 7 7 8 8 <!ENTITY % book SYSTEM "book/book.ent"> -
introduction/welcome/changelog.xml
ref0e45e4 r9dcba70 10 10 11 11 <itemizedlist> 12 13 <listitem><para>September 7th, 2003 [larry]: update to MySQL-4.0.14, nano-1.2.2, 14 GTK2+-2.2.5 and pciutils-2.1.11, all submitted by 15 Igor.</para></listitem> 12 16 13 17 <listitem><para>September 6th, 2003 [larry]: gnome: updated to -
introduction/welcome/credits.xml
ref0e45e4 r9dcba70 129 129 Downing</emphasis></para></listitem> 130 130 131 <listitem><para>directFB, libMPEG3, NASM and SVGAlib: <emphasis>Igor131 <listitem><para>directFB, libMPEG3, MySQL-4, NASM and SVGAlib: <emphasis>Igor 132 132 Zivkovic</emphasis></para></listitem> 133 133 -
postlfs/editors/nano.xml
ref0e45e4 r9dcba70 5 5 &nano-intro; 6 6 &nano-inst; 7 &nano-config; 7 8 &nano-desc; 8 9 -
postlfs/editors/nano/nano-inst.xml
ref0e45e4 r9dcba70 4 4 <para>Install <application>nano</application> by running the following commands:</para> 5 5 6 <screen><userinput><command>./configure --prefix=/usr -- enable-color\7 --enable- multibuffer --enable-nanorc &&6 <screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc \ 7 --enable-color --enable-multibuffer --enable-nanorc && 8 8 make && 9 9 make install</command></userinput></screen> -
postlfs/editors/nano/nano-intro.xml
ref0e45e4 r9dcba70 19 19 </sect3> 20 20 21 <sect3><title><application>nano</application> dependencies</title> 22 <sect4><title>Optional</title> 23 <para><xref linkend="slang"/> 24 </para></sect4> 25 </sect3> 21 26 22 27 </sect2> -
postlfs/editors/nano/nano.ent
ref0e45e4 r9dcba70 3 3 <!ENTITY nano-inst SYSTEM "nano-inst.xml"> 4 4 <!ENTITY nano-desc SYSTEM "nano-desc.xml"> 5 <!ENTITY nano-buildsize "3.8 MB"> 6 <!ENTITY nano-version "1.2.0"> 7 <!ENTITY nano-download-http "http://ftp.gnu.org/gnu/nano/nano-&nano-version;.tar.gz"> 5 <!ENTITY nano-config SYSTEM "nano-config.xml"> 6 <!ENTITY nano-buildsize "5.6 MB"> 7 <!ENTITY nano-version "1.2.2"> 8 <!ENTITY nano-download-http 9 "http://www.nano-editor.org/dist/v1.2/nano-&nano-version;.tar.gz"> 8 10 <!ENTITY nano-download-ftp "ftp://ftp.gnu.org/gnu/nano/nano-&nano-version;.tar.gz"> 9 <!ENTITY nano-size "8 80KB">10 <!ENTITY nano-time "0.0 6SBU">11 <!ENTITY nano-size "868 KB"> 12 <!ENTITY nano-time "0.08 SBU"> -
x/lib/gtk/gtk.ent
ref0e45e4 r9dcba70 8 8 <!ENTITY GTK-version "1.2.10"> 9 9 <!ENTITY GTK-download-http ""> 10 <!ENTITY GTK-download-ftp "ftp://ftp.gtk.org/pub/gtk/v1.2/gtk+- 1.2.10.tar.gz">10 <!ENTITY GTK-download-ftp "ftp://ftp.gtk.org/pub/gtk/v1.2/gtk+->K-version;.tar.gz"> 11 11 <!ENTITY GTK-size "2.7 MB"> 12 12 <!ENTITY GTK-time "1.96 SBU"> … … 18 18 <!ENTITY GTK2-exp SYSTEM "gtk+2-exp.xml"> 19 19 <!ENTITY GTK2-config SYSTEM "gtk+2-config.xml"> 20 <!ENTITY GTK2-buildsize "1 36MB">21 <!ENTITY GTK2-version "2.2. 3">20 <!ENTITY GTK2-buildsize "187 MB"> 21 <!ENTITY GTK2-version "2.2.4"> 22 22 <!ENTITY GTK2-download-http ""> 23 23 <!ENTITY GTK2-download-ftp "ftp://ftp.gtk.org/pub/gtk/v2.2/gtk+->K2-version;.tar.bz2"> 24 24 <!ENTITY GTK2-size "6.9 MB"> 25 <!ENTITY GTK2-time " 3.03SBU">25 <!ENTITY GTK2-time "2.88 SBU">
Note:
See TracChangeset
for help on using the changeset viewer.