Archive of category "Dependencies"
Apr
Thrift on Fedora Core 10
[root@thrift /]# yum install gcc-c++
[root@thrift /]# cd /tmp/
[root@thrift tmp]# wget -O thrift.tgz “http://gitweb.thrift-rpc.org/?p=thrift.git;a=snapshot;h=HEAD;sf=tgz”
[root@thrift tmp]# tar zxvf thrift.tgz
[root@thrift tmp]# cd thrift
[root@thrift thrift]# ./bootstrap.sh
./bootstrap.sh: line 24: autoscan: command not found
[root@thrift thrift]# yum install autoconf
[root@thrift thrift]# ./bootstrap.sh
./bootstrap.sh: line 25: aclocal: command not found
[root@thrift thrift]# yum install automake
[root@thrift thrift]# ./bootstrap.sh
configure.ac:44: error: possibly undefined macro: AC_PROG_LIBTOOL
If this token and others [...]
Oct
Passwordless ssh
in order to be able to login to a remote ssh server without a password you need:
1) generate your key (do not enter any password)
# ssh-keygen
2) copy key to remote host
# ssh-copy-id ‘-p 22 user@remote-host’
3) after entering the correct password once, you should be able to ssh to user@remote-host without
a password.
i have noticed that fedora core 11 already comes with log4cpp rpm, if you need to install log4cpp on a FC9 or FC10 you will need to compile it yourself ( i could not find any preconfigured version )
here is how i managed to compile and install log4cpp on fedora core 10
1) download and unpack [...]
while trying to compile KosmosFS (kfs) version 0.3 i got into this error:
/usr/include/xfs/linux.h:20:23: error: uuid/uuid.h: No such file or directory
the error disappeared after installing e2fsprogs-devel package, also make sure you also have installed xfsprogs and xfsprogs-devel