I’m not a linux expert, and I’m trying to install a 2D graphics library on Ubuntu 10.10. I need to make a 2D display and after a little online research, GooCanvas seems like it will fit the bill. I’m frustrated because it simply won’t install and I don’t get what I am supposed to…
Tag: installation
Installing Tomcat 7 on Linux system with Native Library
How do you install native library for Tomcat 7.0 under Linux system such as CentOS? Answer Installer Native package installation tomcat file: env.sh
How to install the program depending on libstdc++ library
My program is written in C++, using GCC on Ubuntu 9.10 64 bit. If depends on /usr/lib64/libstdc++.so.6 which actually points to /usr/lib64/libstdc++.so.6.0.13. Now I copy this program to virgin Ubuntu 7.04 system and try to run it. It doesn’t run, as expected. Then I add to the program directory the fol…
Installing programs in different Linux machines with very limited access
I have to log into Linux servers from different customers and use there essential tools like SVN, etc. Most of the times I get no root access, and usually the administrator is on holidays 🙂 so I have to get the way to use this tools there. Sometimes this is very straightforward process, just compile the code.…
Linux “install” command for wildcard installation
Is there a way to use “install” for installing multiple files at once using a “wildcard” pattern (and still have “install” create the leading directory hierarchy)? I’ve tried several different ways: install -D -t /dest/path /source/path/*.py install -D -t /dest/path/ …