Changeset 726be18


Ignore:
Timestamp:
12/09/2004 03:30:13 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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, 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/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
30e1539
Parents:
5b664aa
Message:

Added a chown command to the GStreamer instructions to fix incorrect permissions on installed documentation files

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3093 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • basicnet/netutils/traceroute.xml

    r5b664aa r726be18  
    77  <!ENTITY traceroute-download-http "http://gd.tuwien.ac.at/platform/sun/packages/solaris/freeware/SOURCES/traceroute-&traceroute-version;.tar.gz">
    88  <!ENTITY traceroute-download-ftp  "ftp://ftp.ee.lbl.gov/traceroute-&traceroute-version;.tar.gz">
    9   <!ENTITY traceroute-size          "73 KB">
    10   <!ENTITY traceroute-buildsize     "464 KB">
    11   <!ENTITY traceroute-time          "0.02 SBU">
     9  <!ENTITY traceroute-size          "74 KB">
     10  <!ENTITY traceroute-buildsize     "540 KB">
     11  <!ENTITY traceroute-time          "0.01 SBU">
    1212]>
    1313
     
    3636url="&traceroute-download-ftp;"/></para></listitem>
    3737<listitem><para>Download size: &traceroute-size;</para></listitem>
    38 <listitem><para>Estimated Disk space required:
     38<listitem><para>Estimated disk space required:
    3939&traceroute-buildsize;</para></listitem>
    4040<listitem><para>Estimated build time:
     
    6363<para><command>sed 's/-o bin/-o root/' Makefile.in</command>:
    6464Adjusts the <filename>Makefile</filename> so that the program is installed
    65 with user root instead of user bin (which doesn't exist on a default
     65with user root instead of user bin (which doesn't exist on a default 
    6666<acronym>LFS</acronym> system).</para>
    6767
    6868<para><command>make install</command>: Installs <command>traceroute</command>
    69 with <acronym>SUID</acronym> set to  root in the <filename>/usr/sbin</filename>
    70 directory. This makes it possible for all users to execute
    71 <command>traceroute</command>. For absolute security, turn off the
    72 <acronym>SUID</acronym> bit in <command>traceroute</command>'s file permissions
    73 with the command:</para>
     69with <acronym>SUID</acronym> set to root in the
     70<filename class='directory'>/usr/sbin</filename> directory. This makes it
     71possible for all users to execute <command>traceroute</command>. For absolute
     72security, turn off the <acronym>SUID</acronym> bit in
     73<command>traceroute</command>'s file permissions with the command:</para>
     74
    7475<screen><command>chmod 0755 /usr/sbin/traceroute</command></screen>
    7576
     
    8889<filename class='directory'>/usr/bin</filename> with the following command:
    8990</para>
     91
    9092<screen><command>mv /usr/sbin/traceroute /usr/bin</command></screen>
    9193
  • general.ent

    r5b664aa r726be18  
    1 <!ENTITY day          "08">
     1<!ENTITY day          "09">
    22<!ENTITY month        "12">
    33<!ENTITY year         "2004">
     
    66<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    77<!ENTITY blfs-version "cvs">                  <!-- cvs|[release #] -->
    8 <!ENTITY lfs-version  "testing">              <!-- stable|testing|unstable] -->
     8<!ENTITY lfs-version  "stable">               <!-- stable|testing|unstable] -->
    99<!ENTITY last-commit  "$Date$"> <!-- Automatic update -->
    1010
  • introduction/welcome/changelog.xml

    r5b664aa r726be18  
    2222
    2323<itemizedlist>
     24
     25<listitem><para>December 9th, 2004 [randy]: Added a chown command to the
     26GStreamer instructions to fix incorrect permissions on installed
     27documentation.</para></listitem>
    2428
    2529<listitem><para>December 8th, 2004 [igor]: Changed ProFTPD login shell
  • multimedia/libdriv/gstreamer.xml

    r5b664aa r726be18  
    8282make &amp;&amp;
    8383make install &amp;&amp;
     84chown -R root:root /usr/share/doc/gstreamer-&gstreamer-version; &amp;&amp;
    8485gst-register</command></userinput></screen>
    8586
     
    102103the rebuilding of documentation during the <command>make</command>
    103104command.</para>
     105
     106<para><command>chown -R root:root ...</command>: The documentation is
     107installed with ownerships of the user who untarred and built the package.
     108This command changes the ownerships of the installed documentation files to
     109root:root.</para>
    104110
    105111</sect2>
Note: See TracChangeset for help on using the changeset viewer.