Changeset 6d8b45a3
- Timestamp:
- 12/25/2018 02:35:46 AM (6 years ago)
- Branches:
- elogind
- Children:
- b98dbfd
- Parents:
- 3757ae7
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r3757ae7 r6d8b45a3 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "2 3"> <!-- Always 2 digits -->3 <!ENTITY day "25"> <!-- Always 2 digits --> 4 4 <!ENTITY month "12"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2018"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "December 2 3rd, &year;">9 <!ENTITY releasedate "December 25rd, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> … … 63 63 <!ENTITY pypi "https://pypi.python.org/pypi"> 64 64 <!ENTITY appstream-glib-url "http://people.freedesktop.org/~hughsient/appstream-glib/releases"> 65 <!ENTITY elinks-url "http://elinks.or.cz"> 65 66 66 67 <!-- These entities are used to identify versions of LFS -
general/genlib/libuv.xml
r3757ae7 r6d8b45a3 95 95 commands: 96 96 </para> 97 <!-- 98 Don't use cmake here to avoid circular dependency 97 99 98 100 <screen><userinput>sed -i "/TARGETS uv_a ARCHIVE/d" CMakeLists.txt && … … 103 105 cmake -DCMAKE_INSTALL_PREFIX=/usr .. && 104 106 make </userinput></screen> 107 --> 105 108 109 <screen><userinput>sh autogen.sh && 110 ./configure --prefix=/usr --disable-static && 111 make </userinput></screen> 112 <!-- 106 113 <para> 107 114 If you want to run the tests, add -DBUILD_TESTING=true to 108 115 the cmake line above and after building run: 109 116 <command>make test</command>. 117 </para> 118 --> 119 <para> 120 If you want to run the tests, run: <command>make check</command>. 110 121 </para> 111 122 … … 118 129 </sect2> 119 130 120 131 <!-- 121 132 <sect2 role="commands"> 122 133 <title>Command Explanations</title> … … 128 139 129 140 </sect2> 130 141 --> 131 142 <sect2 role="content"> 132 143 <title>Contents</title> -
general/genlib/qca.xml
r3757ae7 r6d8b45a3 117 117 -DCMAKE_BUILD_TYPE=Release \ 118 118 -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man \ 119 -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \119 <!-- -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \ 120 120 -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \ 121 -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ 121 -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ --> 122 122 .. && 123 123 -
general/prog/ojdk-conf.xml
r3757ae7 r6d8b45a3 109 109 110 110 <screen role="root"><userinput>/usr/sbin/make-ca -g --force && 111 ln -sfv /etc/ ssl/java/cacerts /opt/jdk/lib/security/cacerts</userinput></screen>111 ln -sfv /etc/pki/tls/java/cacerts /opt/jdk/lib/security/cacerts</userinput></screen> 112 112 113 113 <para> -
general/sysutils/pciutils.xml
r3757ae7 r6d8b45a3 148 148 </para> 149 149 150 <para revision="sysv"> 151 You may wish to add an entry to 152 <systemitem class="username">root</systemitem>'s (or any other user who has 153 write privilege to <filename class="directory">/usr/share/hwdata</filename>) 154 crontab to automatically update the <filename>pci.ids</filename> file 155 periodically. 156 </para> 157 158 <para revision="systemd"> 150 <para> 159 151 You should update the <filename>/usr/share/hwdata/pci.ids</filename> file 160 periodically. Execute the following commands, as the 161 <systemitem class="username">root</systemitem> user, to create a systemd 162 timer to update it weekly on Sundays at 2:30 A.M. (local time): 163 </para> 152 periodically. <phrase revision="sysv">If you've installed 153 <xref linkend="fcron"/> and completed the section on periodic jobs, 154 execute</phrase><phrase revision="systemd">Execute</phrase> the following 155 commands, as the <systemitem class="username">root</systemitem> user, 156 to create a <phrase revision="sysv">weekly cron job:</phrase> 157 <phrase revision="systemd">systemd timer to update it weekly on Sundays 158 at 2:30 A.M. (local time):</phrase> 159 </para> 160 161 <screen role="root" revision="sysv"><userinput>cat > /etc/cron.weekly/update-pciids.sh << "EOF" && 162 <literal>#!/bin/bash 163 /usr/sbin/update-pciids</literal> 164 EOF 165 chmod 754 /etc/cron.weekly/update-pciids</userinput></screen> 164 166 165 167 <screen role="root" revision="systemd"><userinput>cat > /lib/systemd/system/update-pciids.service << "EOF" && -
general/sysutils/usbutils.xml
r3757ae7 r6d8b45a3 153 153 <screen role="root" revision="sysv"><userinput>wget http://www.linux-usb.org/usb.ids -O /usr/share/hwdata/usb.ids</userinput></screen> 154 154 155 <para revision="sysv"> 156 You may wish to add an entry to 157 <systemitem class="username">root</systemitem>'s (or any other user who has 158 write privilege to <filename class="directory">/usr/share/hwdata</filename>) 159 crontab to automatically update the <filename>usb.ids</filename> file 160 periodically. 161 </para> 162 163 <para revision="systemd"> 155 <para> 164 156 You should update the <filename>/usr/share/hwdata/usb.ids</filename> file 165 periodically. Execute the following commands, as the 166 <systemitem class="username">root</systemitem> user, to create a systemd 167 timer to update it weekly on Sundays at 3:00 A.M. (local time): 168 </para> 157 periodically. <phrase revision="sysv">If you've installed 158 <xref linkend="fcron"/> and completed the section on periodic jobs, 159 execute</phrase><phrase revision="systemd">Execute</phrase> the following commands, as the <systemitem class="username">root</systemitem> user, 160 to create a <phrase revision="sysv">weekly cron job:</phrase> 161 <phrase revision="systemd">systemd timer to update it weekly on Sundays 162 at 2:30 A.M. (local time):</phrase> 163 </para> 164 165 <screen role="root" revision="sysv"><userinput>cat > /etc/cron.weekly/update- 166 usbids.sh << "EOF" && 167 <literal>#!/bin/bash 168 /usr/bin/wget http://www.linux-usb.org/usb.ids -O /usr/share/hwdata/usb.ids</literal> 169 EOF 170 chmod 754 /etc/cron.weekly/update-usbids</userinput></screen> 169 171 170 172 <screen role="root" revision="systemd"><userinput>cat > /lib/systemd/system/update-usbids.service << "EOF" && -
introduction/welcome/changelog.xml
r3757ae7 r6d8b45a3 43 43 --> 44 44 <listitem> 45 <para>December 25th, 2018</para> 46 <itemizedlist> 47 <listitem> 48 <para>[dj] - Update pam_cracklib configuration with modern options 49 and provide replacement configuration with pam_pwqaulity.</para> 50 </listitem> 51 </itemizedlist> 52 </listitem> 53 54 <listitem> 45 55 <para>December 23rd, 2018</para> 46 56 <itemizedlist> 57 <listitem> 58 <para>[bdubbs] - Update to v4l-utils-1.16.3. Fixes 59 <ulink url="&blfs-ticket-root;11454">#11454</ulink>.</para> 60 </listitem> 61 <listitem> 62 <para>[bdubbs] - Update to nss-3.41. Fixes 63 <ulink url="&blfs-ticket-root;11457">#11457</ulink>.</para> 64 </listitem> 65 <listitem> 66 <para>[dj] - Add cron jobs for update-pciids and update-usbids.</para> 67 </listitem> 47 68 <listitem> 48 69 <para>[dj] - Correct NetworkManager meson options.</para> -
kde/kf5-apps/konsole5.xml
r3757ae7 r6d8b45a3 75 75 <bridgehead renderas="sect4">Required</bridgehead> 76 76 <para role="required"> 77 <xref linkend="kf5-frameworks"/> ,77 <xref linkend="kf5-frameworks"/> 78 78 </para> 79 79 -
multimedia/cdwriteutils/cdrtools.xml
r3757ae7 r6d8b45a3 133 133 <?dbhtml list-presentation="table"?> 134 134 135 <varlistentry id="btcflash"> 136 <term><command>btcflash</command></term> 137 <listitem> 138 <para>flashes the firmware on BTC DRW1008 DVD+/-RW recorder. 139 Please exercise care with this program.</para> 140 <indexterm zone="cdrtools btcflash"> 141 <primary sortas="b-btcflash">btcflash</primary> 142 </indexterm> 143 </listitem> 144 </varlistentry> 145 135 146 <varlistentry id="cdda2wav"> 136 147 <term><command>cdda2wav</command></term> -
multimedia/libdriv/v4l-utils.xml
r3757ae7 r6d8b45a3 7 7 <!ENTITY v4l-download-http "https://www.linuxtv.org/downloads/v4l-utils/v4l-utils-&v4l-utils-version;.tar.bz2"> 8 8 <!ENTITY v4l-download-ftp " "> 9 <!ENTITY v4l-md5sum " 0b3553854c8b8b0102a823f8e150efbc">9 <!ENTITY v4l-md5sum "ecc98c6140916135725a4d9ada10404f"> 10 10 <!ENTITY v4l-size "1.8 MB"> 11 11 <!ENTITY v4l-buildsize "87 MB"> -
networking/mailnews/mutt.xml
r3757ae7 r6d8b45a3 94 94 <xref linkend="lynx"/>, 95 95 <xref linkend="w3m"/>, or 96 <ulink url=" http://elinks.or.cz/">ELinks</ulink>96 <ulink url="&elinks-url;">ELinks</ulink> 97 97 </para> 98 98 -
packages.ent
r3757ae7 r6d8b45a3 30 30 <!ENTITY nettle-version "3.4.1"> 31 31 32 <!ENTITY nss-minor-version "4 0">33 <!ENTITY nss-micro-version " 1">34 <! ENTITY nss-version "3.&nss-minor-version;.&nss-micro-version;">35 <! --<!ENTITY nss-version "3.&nss-minor-version;"> -->32 <!ENTITY nss-minor-version "41"> 33 <!ENTITY nss-micro-version "0"> 34 <!--<!ENTITY nss-version "3.&nss-minor-version;.&nss-micro-version;">--> 35 <!ENTITY nss-version "3.&nss-minor-version;"> 36 36 37 37 <!ENTITY openssh-version "7.9p1"> … … 947 947 <!ENTITY speexdsp-version "1.2rc3"> 948 948 <!ENTITY taglib-version "1.11.1"> 949 <!ENTITY v4l-utils-version "1.16. 2">949 <!ENTITY v4l-utils-version "1.16.3"> 950 950 <!ENTITY x264-version "20180819-2245"> 951 951 <!ENTITY x265-version "2.9"> -
postlfs/security/libpwquality.xml
r3757ae7 r6d8b45a3 114 114 </sect2> 115 115 116 <sect2 role="configuration"> 117 <title>Configuring Libpwquality</title> 118 119 <para> 120 <application>Libpwquality</application> is intended to be a 121 functional replacement for the <filename>pam_cracklib.so</filename> 122 module with additional options. To replace the 123 <filename>pam_cracklib.so</filename> module with the 124 <filename>pam_pwquality.so</filename> module, execute the following 125 commands as the <systemitem class="username">root</systemitem> user: 126 </para> 127 128 <screen role="root"><userinput>mv /etc/pam.d/system-password{,.orig} && 129 cat > /etc/pam.d/system-password << "EOF" 130 <literal># Begin /etc/pam.d/system-password 131 132 # check new passwords for strength (man pam_pwquality) 133 password required pam_pwquality.so authtok_type=UNIX retry=1 difok=1 \ 134 minlen=8 dcredit=0 ucredit=0 \ 135 lcredit=0 ocredit=0 minclass=1 \ 136 maxrepeat=0 maxsequence=0 \ 137 maxclassrepeat=0 geoscheck=0 \ 138 dictcheck=1 usercheck=1 \ 139 enforcing=1 badwords="" \ 140 dictpath=/lib/cracklib/pw_dict 141 # use sha512 hash for encryption, use shadow, and use the 142 # authentication token (chosen password) set by pam_pwquality 143 # above (or any previous modules) 144 password required pam_unix.so sha512 shadow use_authtok 145 146 # End /etc/pam.d/system-password</literal> 147 EOF 148 </userinput></screen> 149 150 </sect2> 151 116 152 <sect2 role="content"> 117 153 <title>Contents</title> … … 130 166 </seg> 131 167 <seg> 132 /etc/security 168 None 169 <!-- /etc/security was installed by Linux-PAM --> 133 170 </seg> 134 171 </seglistitem> -
postlfs/security/linux-pam.xml
r3757ae7 r6d8b45a3 115 115 <xref linkend="libxslt"/> and either 116 116 <xref linkend="w3m"/> or 117 <ulink url=" http://elinks.or.cz/">elinks</ulink> (but with a link calling it117 <ulink url="&elinks-url;">elinks</ulink> (but with a link calling it 118 118 '<application>links</application>') and remove the documentation switch. 119 119 </para> … … 318 318 319 319 # check new passwords for strength (man pam_cracklib) 320 password required pam_cracklib.so type=Linux retry=3 difok=5 \ 321 difignore=23 minlen=9 dcredit=1 \ 322 ucredit=1 lcredit=1 ocredit=1 \ 323 dictpath=/lib/cracklib/pw_dict 320 password required pam_cracklib.so authtok_type=UNIX retry=1 difok=5 \ 321 minlen=9 dcredit=1 ucredit=1 \ 322 lcredit=1 ocredit=1 minclass=0 \ 323 maxrepeat=0 maxsequence0 \ 324 maxclassrepeat=0 \ 325 dictpath=/lib/cracklib/pw_dict 324 326 # use sha512 hash for encryption, use shadow, and use the 325 327 # authentication token (chosen password) set by pam_cracklib 326 328 # above (or any previous modules) 327 password required pam_unix.so sha512 shadow use_authtok329 password required pam_unix.so sha512 shadow use_authtok 328 330 329 331 # End /etc/pam.d/system-password</literal> -
postlfs/security/nss.xml
r3757ae7 r6d8b45a3 9 9 10 10 <!-- micro versions --> 11 <! ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_&nss-micro-version;_RTM/src/nss-&nss-version;.tar.gz">11 <!--<!ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_&nss-micro-version;_RTM/src/nss-&nss-version;.tar.gz">--> 12 12 13 13 <!-- no micro versions --> 14 <! -- <!ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_RTM/src/nss-&nss-version;.tar.gz"> -->14 <!ENTITY nss-download-http "https://&nss-url;/NSS_3_&nss-minor-version;_RTM/src/nss-&nss-version;.tar.gz"> 15 15 16 16 <!ENTITY nss-download-ftp " "> 17 <!ENTITY nss-md5sum " 589ab784db168e876bd9ae4eef294728">18 <!ENTITY nss-size "2 3MB">19 <!ENTITY nss-buildsize "13 8MB">17 <!ENTITY nss-md5sum "eec62a289387a7ce2fd9cca1f76600f3"> 18 <!ENTITY nss-size "22 MB"> 19 <!ENTITY nss-buildsize "133 MB"> 20 20 <!ENTITY nss-time "2.2 SBU"> 21 21 ]> -
pst/xml/xmlto.xml
r3757ae7 r6d8b45a3 85 85 <xref role="runtime" linkend="lynx"/>, 86 86 <xref role="runtime" linkend="w3m"/>, or 87 <ulink url=" http://elinks.or.cz/">ELinks</ulink>87 <ulink url="&elinks-url;">ELinks</ulink> 88 88 </para> 89 89 -
server/major/apache.xml
r3757ae7 r6d8b45a3 104 104 <xref linkend="lynx"/> or 105 105 <xref linkend="Links"/> or 106 <ulink url=" http://elinks.or.cz/">ELinks</ulink>,106 <ulink url="&elinks-url;">ELinks</ulink>, 107 107 <xref linkend="nghttp2"/>, 108 108 <xref linkend="openldap"/> (<xref linkend="apr-util"/> needs to be
Note:
See TracChangeset
for help on using the changeset viewer.