PlusPack for ASL4 available

Here:

 PlusPack download directory 

Here is the readme:
 Code:

*****************************************************************
PlusPack for ASL 4.xxx
by Tom Kistner aka duncanthrax 2003

*****************************************************************
This package is NOT released nor supported by Astaro Corporation.
    Installing this package may void your support contract.
*****************************************************************

The PlusPack is an add-on to Astaro Security Linux. It contains
GNU software. You can get the sources from ftp.gnu.org.

The PlusPack contains:

- glibc
        - gcc
        - coreutils
        - binutils
        - ncurses
        - wget
        - nano
        - automake
        - autoconf
        - glib
        - libpcap
        - tcpdump

This basic set allows you to compile everything else you need on
the ASL distribution itself.


INSTALLATION
------------

- SCP tarball to your ASL machine (/tmp)

- Login as root

- Unpack the tarball in /var/chroot-report:

  cd /var/chroot-report
  tar xvzf pluspack-asl-4.xxx.tar.gz

- run the setup perl script

  opt/setup.pl

- log out and back in to update the
  environment


USAGE
-----

When compiling things, I heavily recommend to call ./configure
with a prefix of "/opt", like this:

./configure --prefix=/opt [other options]

This will make sure that no system files will get overwritten
on installation.

There is an exception from this rule: If you compile libraries,
you may have to install them to / (root), because not all
binaries correctly use the dynamic linker, but instead blindly
look for .so files in /lib or /usr/lib.

Enjoy,

/tom kistner  May 2003
 

 

regards,

/tom
  
Parents Reply
  • the problem with the su program is this, about the reboot i'll see it later...
    loginuser@fw:/home/login > ldd /bin/su
            libcrypt.so.1 => /lib/libcrypt.so.1 (0x40015000)
            libdl.so.2 => /lib/libdl.so.2 (0x40043000)
            libpam.so.0 => /lib/libpam.so.0 (0x40046000)
            libc.so.6 => /lib/libc.so.6 (0x4004e000)
            /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
    loginuser@fw:/home/login > ldd /var/chroot-report/opt/bin/su
            libcrypt.so.1 => /lib/libcrypt.so.1 (0x40015000)
            libc.so.6 => /lib/libc.so.6 (0x40043000)
            /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
    the su program in pluspack isn't linked with pam authentication... so it cannot se the root pass to verify it...  
Children