• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Some Questions!

Ethrex

Member
Joined
Jul 6, 2012
Messages
314
Reaction score
18
Location
Sweden
When i run
Code:
./autogen.sh

I get this error
Code:
Can't exec "libtoolize": No such file or directory at /usr/bin/autoreconf line 189.
Use of uninitialized value in pattern match (m//) at /usr/bin/autoreconf line 189.
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal  --output=aclocal.m4t
Can't exec "aclocal": No such file or directory at /usr/share/autoconf/Autom4te/FileUtils.pm line 325.
autoreconf: failed to run aclocal: No such file or directory

Please help :/

I cant install mysql-server when i do:
Code:
sudo apt-get install mysql-server mysql-client -y

i get this error:
Code:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  mysql-server: Depends: mysql-server-5.5 but it is not going to be installed
E: Broken packages
and when i try to install mysql-server-5.5 :S
Code:
The following packages have unmet dependencies:
  mysql-server-5.5: Depends: initscripts (>= 2.88dsf-13.1) but 2.87dsf-4ubuntu17.5 is to be installed
E: Broken packages

EDIT: Reinstalled the OS, Solved.
 
Last edited:
Do you have libtoolize installed?
Try this:
Code:
antonio@antonio-desktop:~$ libtoolize
if you get:
The program 'libtoolize' is currently not installed. You can install it by typing:
Code:
sudo apt-get install libtool
 
Back
Top