Changeset 17fb537e
- Timestamp:
- 01/27/2005 01:41:14 AM (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, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 48ecffe8
- Parents:
- 2a7340c2
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
r2a7340c2 r17fb537e 23 23 <itemizedlist> 24 24 25 <listitem><para>January 26th, 2005 [randy]: Updated J2SDK binary 26 version to 1.4.2_07; updated J2SDK build entities.</para></listitem> 25 <listitem><para>January 26th, 2005 [randy]: Updated J2SDK binary version to 26 1.4.2_07; updated J2SDK build entities; added download location and build 27 entities to Shadow instructions.</para></listitem> 27 28 28 29 <listitem><para>January 26th, 2005 [bdubbs]: Added directory reference -
postlfs/security/cracklib.xml
r2a7340c2 r17fb537e 74 74 <title>Installation of <application>cracklib</application></title> 75 75 76 <para>First, install the chosen word list for76 <para>First, as the root user, install the chosen word list for 77 77 <application>cracklib</application>:</para> 78 78 79 <screen><userinput ><command>install -d -m755 /usr/share/dict &&79 <screen><userinput role='root'><command>install -d -m755 /usr/share/dict && 80 80 install -m644 ../<replaceable>[wordlist]</replaceable> /usr/share/dict && 81 81 ln -sf <replaceable>[wordlist]</replaceable> /usr/share/dict/words && … … 100 100 patch -Np1 -i ../cracklib,&cracklib-version;-heimdal-1.patch</command></userinput></screen> 101 101 102 <para>Finally, install the package:</para>103 <screen><userinput ><command>make install</command></userinput></screen>102 <para>Finally, as the root user, install the package:</para> 103 <screen><userinput role='root'><command>make install</command></userinput></screen> 104 104 105 105 </sect2> -
postlfs/security/linux_pam.xml
r2a7340c2 r17fb537e 53 53 dependencies</title> 54 54 <sect4><title>Optional</title> 55 <para><xref linkend="cracklib"/> and sgmltools-lite56 (<ulink url="http://sourceforge.net/projects/sgmltools-lite/"/>) 55 <para><xref linkend="cracklib"/> and <ulink 56 url="http://sourceforge.net/projects/sgmltools-lite/">sgmltools-lite</ulink> 57 57 </para></sect4> 58 58 </sect3> … … 71 71 ./configure --enable-static-libpam --with-mailspool=/var/mail \ 72 72 --enable-read-both-confs --sysconfdir=/etc && 73 make && 74 make install && 73 make</command></userinput></screen> 74 75 <para>Now, as the root user:</para> 76 77 <screen><userinput role='root'><command>make install && 75 78 mv /lib/libpam.a /lib/libpam_misc.a /lib/libpamc.a /usr/lib && 76 79 ln -sf ../../lib/libpam.so.&Linux_PAM-version; /usr/lib/libpam.so && … … 153 156 for a list of various modules available.</para> 154 157 158 <note><para>You should now reinstall the <xref linkend="shadow"/> 159 package.</para></note> 155 160 </sect3> 156 161 … … 159 164 <sect2> 160 165 <title>Contents</title> 161 162 166 163 167 <segmentedlist> 164 168 <segtitle>Installed Program</segtitle> 165 169 <segtitle>Installed Libraries</segtitle> 166 <segtitle>Installed Director y</segtitle>170 <segtitle>Installed Directories</segtitle> 167 171 <seglistitem> 168 172 <seg>unix_chkpwd and pam_tally</seg> 169 <seg>libpam.so, libpamc.so and libp ma_misc.so</seg>170 <seg>/ lib/security</seg>173 <seg>libpam.so, libpamc.so and libpam_misc.so</seg> 174 <seg>/etc/pam.d and /lib/security</seg> 171 175 </seglistitem> 172 176 </segmentedlist> … … 187 191 <varlistentry id="libpam"> 188 192 <term><filename class='libraryfile'>libpam.so</filename></term> 189 <listitem><para> provide the interfaces between applications and the <acronym>PAM</acronym> modules.</para> 193 <listitem><para> provide the interfaces between applications and the 194 <acronym>PAM</acronym> modules.</para> 190 195 <indexterm zone="Linux_PAM libpam"> 191 196 <primary sortas="c-libpam">libpam.so</primary></indexterm> -
postlfs/security/openssl.xml
r2a7340c2 r17fb537e 68 68 ./config --openssldir=/etc/ssl --prefix=/usr shared && 69 69 sed -i 's%SHLIBDIRS= fips crypto ssl%SHLIBDIRS= crypto ssl%g' Makefile && 70 make MANDIR=/usr/share/man && 71 make MANDIR=/usr/share/man install && 70 make MANDIR=/usr/share/man</command></userinput></screen> 71 72 <para>Now, as the root user:</para> 73 74 <screen><userinput role='root'><command>make MANDIR=/usr/share/man install && 72 75 cp -r certs /etc/ssl</command></userinput></screen> 73 76 -
postlfs/security/shadow.xml
r2a7340c2 r17fb537e 4 4 <!ENTITY % general-entities SYSTEM "../../general.ent"> 5 5 %general-entities; 6 7 <!ENTITY shadow-download-http " "> 8 <!ENTITY shadow-download-ftp "ftp://ftp.pld.org.pl/software/shadow/shadow-&shadow-version;.tar.bz2"> 9 <!ENTITY shadow-size "814 KB"> 10 <!ENTITY shadow-buildsize "14.1 MB"> 11 <!ENTITY shadow-time "0.42 SBU"> 6 12 ]> 7 13 8 <sect1 id="shadow" >14 <sect1 id="shadow" xreflabel="Shadow-&shadow-version;"> 9 15 <sect1info> 10 16 <othername>$LastChangedBy$</othername> … … 48 54 <acronym>PAM</acronym>.</para> 49 55 56 <sect3><title>Package information</title> 57 <itemizedlist spacing="compact"> 58 <listitem><para>Download (HTTP): 59 <ulink url="&shadow-download-http;"/></para></listitem> 60 <listitem><para>Download (FTP): 61 <ulink url="&shadow-download-ftp;"/></para></listitem> 62 <listitem><para>Download size: 63 &shadow-size;</para></listitem> 64 <listitem><para>Estimated disk space required: 65 &shadow-buildsize;</para></listitem> 66 <listitem><para>Estimated build time: 67 &shadow-time;</para></listitem></itemizedlist> 68 </sect3> 69 50 70 <sect3><title>Additional downloads</title> 51 71 <itemizedlist spacing='compact'> … … 73 93 echo '#define HAVE_SETLOCALE 1' >> config.h && 74 94 sed -i '/extern char/d' libmisc/xmalloc.c && 75 make && 76 make install && 95 make</command></userinput></screen> 96 97 <para>Now, as the root user:</para> 98 99 <screen><userinput role='root'><command>make install && 77 100 mv /bin/sg /usr/bin && 78 101 mv /bin/vigr /usr/sbin && … … 97 120 fixes a compilation problem when using <application>GCC</application>-3.4.x. 98 121 </para> 99 100 <!-- Leftover from older instructions????101 <para><command>cp debian/securetty /etc/securetty</command>: This102 command sets the tty's that allow logins through <acronym>PAM</acronym>.</para>103 -->104 122 105 123 </sect2> … … 263 281 PASS_CHANGE_TRIES 264 282 PASS_ALWAYS_WARN</screen> 265 266 </sect3> 283 </sect3> 284 285 </sect2> 286 287 <sect2> 288 <title>Contents</title> 289 290 <para>A list of the installed files, along with their short descriptions can 291 be found at <ulink 292 url="http://www.linuxfromscratch.org/lfs/view/6.0/chapter06/shadow.html"/>. 293 </para> 267 294 268 295 </sect2>
Note:
See TracChangeset
for help on using the changeset viewer.