Re: weird problem with chkrootkit and checksums
From: Peter Pentchev (roam_at_ringlet.net)
Date: 08/27/03
- Previous message: patpro: "Re: weird problem with chkrootkit and checksums"
- In reply to: patpro: "Re: weird problem with chkrootkit and checksums"
- Next in thread: patpro: "Re: weird problem with chkrootkit and checksums"
- Reply: patpro: "Re: weird problem with chkrootkit and checksums"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Wed, 27 Aug 2003 11:38:29 +0300 To: patpro <patpro@patpro.net>
On Wed, Aug 27, 2003 at 09:57:22AM +0200, patpro wrote:
> > % file /bin/ls
> > /bin/ls: ELF 32-bit LSB executable, Intel 80386, version 1 (FreeBSD), for
> > FreeBSD 4.8, statically linked, stripped
> > % file /usr/obj/usr/src/bin/ls/ls
> > /usr/obj/usr/src/bin/ls/ls: ELF 32-bit LSB executable, Intel 80386, version 1
> > (FreeBSD), for FreeBSD 4.8, statically linked, not stripped
>
>
> ok thanx, so the "make installworld" does not only copy binaries to their
> destination ?
'make installworld' uses the install(1) program to copy files cleanly
(including overwriting files in use, copying files across filesystems,
preserving or modifying ownership and permissions as necessary).
For programs, 'make installworld' uses the -s flag to install(1) to
strip the debugging information, unless you have not explicitly told
it not to by setting the STRIP variable to an empty value:
# make STRIP='' installworld
..or a bit simpler although error-prone if you're not used to it:
# make STRIP= installworld
(note the space after 'STRIP=')
Thus, yes, 'make installworld' may modify executable files during
the installation.
G'luck,
Peter
-- Peter Pentchev roam@ringlet.net roam@sbnd.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 This sentence was in the past tense.
- application/pgp-signature attachment: stored
- Previous message: patpro: "Re: weird problem with chkrootkit and checksums"
- In reply to: patpro: "Re: weird problem with chkrootkit and checksums"
- Next in thread: patpro: "Re: weird problem with chkrootkit and checksums"
- Reply: patpro: "Re: weird problem with chkrootkit and checksums"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]