Skip to content
Advertisement

Tag: installation

Installing a graphics library on linux

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 do. Here’s what I did. ‘make;

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 following files: libstdc++.so.6.0.13 libstdc++.so.6 (links to libstdc++.so.6.0.13) Execute command: Now

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/ /source/path/*.py install -D /source/path/*.py /dest/path install -D /source/path/*.py /dest/path/ Please help… for each trial it takes a lot of time

Advertisement