There are lots of post here but none of them have helped me.
I have successfully installed libx11-dev from apt-get and still netbeans complaining that it cannot find include file <X11/Xlib.h>.
Also I have tried find xlib.h and there is no Xlib.h file nor X11 folder on my hard disk.
find / X11
find / Xlib.h
Is there somenthing I should be looking at to fix it? I am using ubuntu 12 and it is a c/c++ project.
I don't know anything about netbeans, but: you can find out what's in a package installed on your system with the command
When I do this on an Ubuntu system I have access too, it indicates that libx11-dev is supposed to include the file
/usr/include/X11/Xlib.h. However, this does not tell you if the file actually exists. You need something like thefindcommands you were trying for that.Now, your
findcommands didn't do anything becausefindhas a command line syntax that's different from everything else. This is how to do what you were trying to do withfind:(On recent systems with GNU userland (i.e. all Linux and some others), the trailing
-printis not necessary, but on older systems and possibly also those that retain more of a BSD heritage, it is. I learned my shell back in the bad old days of SunOS 4 and I still have those habits.)