Skip to main content

:: solution for libtoolT error

:: what is
please take a look at this.

:: case
/bin/rm: cannot remove `libtoolT': No such file or directory
if you get some error message like that when you compiling some application from source you can do like this for resolve on it.

:: solution
this example for resolve on compiling mysql package. install libtool packages from repository and run liboolize command line on the package:
linux:~/download/mysql-5.1.37 # yum install libtool
linux:~/download/mysql-5.1.37 # libtoolize --force
linux:~/download/mysql-5.1.37 # autoconf
and/or
linux:~/download/mysql-5.1.37 # autoreconf
after that you can recompile and install your package from source.

:: links
+ GoogleLinux

Comments

  1. Thanks , I am able to resolve my tomcat connector issue with this.

    ReplyDelete
  2. Using centos 5.5 and MySQL 5.1.49, I get the following where RUN is the command I run and RESPONSE is the response. Blank responses are considered a success..

    RUN: libtoolize --force
    RESPONSE:Using `AC_PROG_RANLIB' is rendered obsolete by `AC_PROG_LIBTOOL'
    You should update your `aclocal.m4' by running aclocal.

    RUN: autoconf
    RESPONSE: aclocal.m4:20: warning: this file was generated for autoconf 2.63.
    You have another version of autoconf. It may work, but is not guaranteed to.
    If you have problems, you may need to regenerate the build system entirely.
    To do so, use the procedure documented by the package, typically `autoreconf'.
    configure.in:22: error: Autoconf version 2.60 or higher is required
    aclocal.m4:8464: AM_INIT_AUTOMAKE is expanded from...
    configure.in:22: the top level
    autom4te: /usr/bin/m4 failed with exit status: 63

    RUN: aclocal
    RESPONSE:

    RUN: libtoolize --force
    RESPONSE: Using `AC_PROG_RANLIB' is rendered obsolete by `AC_PROG_LIBTOOL'

    RUN: autoconf
    RESPONSE:

    RUN: ./configure --prefix=/usr/local/mysql --with-mysqld-libs
    RESPONSE:

    RUN: make
    RESPONSE: cd . && /bin/sh /usr/local/src/mysql-5.1.49/missing --run automake-1.9 --foreign
    client/Makefile.am: required file `./compile' not found
    make: *** [Makefile.in] Error 1

    ReplyDelete
  3. I have the same problem and it've solved rhel5 and this solucion solved the problem:

    $: libtoolize --force
    $: autoconf
    $: autoreconf

    ReplyDelete
  4. I was still getting the "rm libtoolT" error, even after "libtoolize --force; autoconf; autoreconf"

    Got it to go away with "touch libtoolT" in the source directory.

    Aleksey

    ReplyDelete

Post a Comment

Popular posts from this blog

Simple Step Installing WordPress in Ubuntu 24.04

Using ols1clk.sh Script This step will: Install OpenLiteSpeed Install PHP Secure your server Install MySQL Set up WordPress Run the script: bash <( curl -k https://raw.githubusercontent.com/litespeedtech/ols1clk/master/ols1clk.sh ) -w  Configuring WordPress Open your browser and navigate to your domain: http://yourdomain.com You’ll be greeted by the famous WordPress installation wizard. Follow these steps: Select your preferred language. Enter your site title, username, and password for the WordPress admin account. Click "Install WordPress." And just like that, you’ve done it!

:: Install NginX from source

:: What is NGINX nginx [engine x] is an HTTP and reverse proxy server, as well as a mail proxy server, written by  Igor Sysoev . o nginx :: How to install NGINX from source on OpenSUSE + installing dependency # zypper in pcre-devel zlib-devel libopenssl-devel + create username and group # groupadd nginx # useradd -r -g nginx nginx + compile and installing nginx # wget http://nginx.org/download/nginx-1.1.8.tar.gz # tar -xzf nginx-1.1.8.tar.gz # cd nginx-1.1.8 # ./configure --user=nginx --group=nginx --with-http_ssl_module # make && make install :: Starting / restarting httpd # /usr/local/nginx/sbin/nginx # /usr/local/nginx/sbin/nginx -s reload :: Link + Google + BlacKonsole

:: How to Recompile Nginx in Ubuntu

  Recompiling Nginx on Ubuntu can be a crucial task for those who need to customize their web server to meet specific requirements. Whether you need to add new modules, optimize performance, or apply patches, recompiling Nginx allows you to tailor the server to your needs. This guide will walk you through the process step-by-step, ensuring you have a smooth and successful recompilation.   Understanding the Need for Recompilation Why Recompile Nginx? Recompiling Nginx is often necessary when you need to add or remove modules that are not included in the default package. For instance, if you need to integrate a third-party module for enhanced security or performance, recompilation is the way to go. Additionally, recompiling allows you to apply custom patches or optimizations that can significantly improve your server's efficiency. Benefits of Custom Compilation Custom compiling Nginx offers several advantages. Firstly, it provides greater control over the server's