Skip to content
Advertisement

problem when install qt4: no rule to make target “install-strip”

when I finished compiling qt4, I typed gmake install-strip but it doesn’t work either it says” no rule to make target “install-strip” how to solve this problem? Whether I should add some configure options? Answer Just do a make install , it will strip release-mode libraries itself automatically.

How to download images from “wikimedia search result” using wget?

I need to mirror every images which appear on this page: http://commons.wikimedia.org/w/index.php?title=Special:Search&ns0=1&ns6=1&ns12=1&ns14=1&ns100=1&ns106=1&redirs=0&search=buitenzorg&limit=900&offset=0 The mirror result should give us the full size images, not the thumbnails. What is the best way to do this with wget? UPDATE: I update the solution below. Answer It is quite difficult to write all the script in stackoverflow editor, you can find the script at

real estate linux back up solution [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question

How to obtain the path of Desktop in gnome

I am using gnome/Ubuntu-10.10 in Chinese language and the desktop path is not “~/Desktop” but “~/XXXX” where XXXX stands for the Chinese translation of “Desktop”. So, how to write code to obtain the proper path of desktop regardless of the system language? I noticed Qt SDK properly added a shortcut on the desktop so I guess there is a way.

Linux folder change auto notification

Is there a way that I can programmatically figure out whether a particular file with certain characteristics is being added into say the linux /tmp folder. All I need to create, is a small script that is automatically called every time a new file is added in the tmp folder. Answer These links might be helpful: Inotify and Inotify-tools.

MySQL the command line and pagers

I cant find anything about this from searching here. I use mysql on the command line at work and I work with fairly large tables so I set the mysql pager allowing a more readable result if I run a query, that returns 1000’s of results. I use the command below to set the pager. This suits my needs but

Resetting an ostream, C++

I have 2 different ostreams, one of them cerr, using the same streambuffer, I have some libraries in that might have modified cerr somehow,(flags? format modifiers?). prints: Debugging mystreambuffer I’ve noticed that cerr calls mystreambuffer->sync() every << operation while teststream does not call it at all. If I am correct cerr is just an standard ostream, then, why do I

Advertisement