Software :: Which Headers Are "The Headers"?
Jun 14, 2010
been a programmer for a while; on windows mostly but I'm starting to learn all that I can about linux software.I've picked up a funky little NAS which has ssh access to its (i believe uLinux) environment. I've also managed to find a compiler for it (gcc compiled for ARM - GNU/Linux).The plot thickens.I've had some headaches but I've now managed to compile Apache2 without DSO support... so far so good.In getting this far I've been told by a number of people i will need "the headers" specific to the device (the NAS didn't come with source code).
Since Apache 2 (without DSO) compiled fine I know i definitely have some headers. But DSO won't build with errors that lead me to believe it may be a header issue.The question:So i have some headers which educated guess work suggests to me that these are the headers for the std c/c++ libraries.finding "the headers" to know what they are the headers for
View 4 Replies
ADVERTISEMENT
May 11, 2010
Yesterday, I think I did something stupid: I removed kernel-headers, gcc, glibc-devel and glibc-headers. My box is a CentOS 5.4 webserver (it has loads of packages installed, but that was done through Virtualmin config, so it's quite coherent all in all). The thing is that now I need to reinstall at least the headers and glibc, but hey! this is what I get :
[Code]...
View 19 Replies
View Related
Mar 14, 2010
I have several classes that I use for multiple programs. Where should I keep the h/cpp files so I only have to add the #include for the compiler to find them?
View 9 Replies
View Related
Feb 8, 2011
Mostly just curious since everything works but in the essence of learning I'd like to know what this means.
Code:
The following packages have been kept back: linux-generic linux-headers-generic linux-image-generic 0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
It is easy to see what is held back, so the question is why? I'm running Linux Mint 10 Gnome edition.
Code:
Linux 2.6.35-22-generic #35-Ubuntu SMP Sat Oct 16 20:36:48 UTC 2010 i686 GNU/Linux
View 7 Replies
View Related
Oct 24, 2015
I have the problem of app stalling at 0% when trying to update. I ran apt with the debug option
apt-get -o Debug::Acquire::http=true update
And I get the following:
Code:
Select all0% [Trabajando]GET http://security.debian.org/dists/wheezy/updates/Release.gpg HTTP/1.1
Host: security.debian.org
Cache-Control: max-age=0
User-Agent: Debian APT-HTTP/1.3 (0.9.7.9)
GET http://ftp.mx.debian.org/debian/dists/wheezy/Release.gpg HTTP/1.1
Host: ftp.mx.debian.org
Cache-Control: max-age=0
User-Agent: Debian APT-HTTP/1.3 (0.9.7.9)
After a while trying to update, it trows out this error:
Code:
Select allIgn http://ftp.mx.debian.org wheezy-updates/non-free Translation-en
W: Imposible obtener http://security.debian.org/dists/wheezy/updates/main/binary-amd64/Packages 503 DNS error for hostname security.debian.org: Name or service not known. If security.debian.org refers to a configured cache repository, please check the corresponding configuration file.
[Code] ....
I have tried changing repos, also i have verified with iceweasel the availability of the repo.
Ihave changed aldo the network setting from dhcpd to static.
I am using Debian wheezy, gnome desktop enviroment, although the DE is irrelevant.
My conections details:
Code:
Select all
eth0 Link encap:Ethernet HWaddr 50:46:5d:b2:1b:2a
inet addr:192.168.2.14 Bcast:192.168.2.255 Mask:255.255.255.0
inet6 addr: fe80::5246:5dff:feb2:1b2a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:376446 errors:0 dropped:0 overruns:0 frame:0
[Code] .....
View 1 Replies
View Related
Jul 24, 2009
I've installed Vmware Workstation and tried to run it only to have the following appear;
Kernel Headers 2.6.27.25-170.2.72.fc10.i586
Kernel headers for version 2.6.27.25-170.2.72.fc10.i586 were not found. If you installed them in a non-default path you can specify the path below etc.......
I've tried to search and find the kernel headers but can't find them.
View 14 Replies
View Related
Dec 21, 2009
I have installed workstation 7 and installed f12 in it. I have tried to install the tools but it cant find the headers. I have the latest kernel 2.6.31.6-166 PAE and installed the headers and devel. I have pointed the the path to /lib/modules/2.6.31.6-166.fc12.i686.PAE/build/include and /usr/src/kernel/2.6.31.6-166-fc12.i686.PAE/include and it wont take any.I have searched google and the forums and all i find is you need to install the devel and headers which i've done.
View 3 Replies
View Related
May 4, 2011
Today, on my 11.3 machine. the kernel was updated. When I started my vmware 7 workstation, it came up with a message "kernel-headers for 26.34.7-0.7 were not found. enter an alternative location"
View 3 Replies
View Related
Jun 2, 2011
Just installed OpenSuse 11.4 on a laptop yesterday. Trying to compile VMware player, however my kernel headers are not matching with repo code...
View 9 Replies
View Related
Oct 23, 2010
I'd like to choose correct linux-header.it could be that I don't haave appropriete drivers for my machine (don't know)it's true sound and video works but when it comes to gaming everything works soo slow and I get multy freezes from wine + "log out" problems with some games not like from windows (dual boot)now I saw some linux headers from synaptic.
View 4 Replies
View Related
Jan 25, 2011
For two days I've been trying to update and install packages on a Lucid 64-bit system. It's a fresh install and I've never had any problems with any apt-get commands before in the two years during which I've installed Ubuntu on everything I own. It just hangs at 0% [Waiting for Headers]. I can provide more information if needed.
I suspect his may have something to do with it: (copied from terminal output)
Err [URL]
My sources.list:
# deb cdrom:[Ubuntu 10.04.1 LTS _Lucid Lynx_ - Release amd64 (20100816.1)]/ lucid main restricted
deb-src http://archive.ubuntu.com/ubuntu lucid main restricted #Added by software-properties
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
[Code].....
View 3 Replies
View Related
Jul 29, 2010
Say, I have a header file containing all required includes:
Code: /* global.h */
#include <stdio.h>
#include <unistd.h>
...
#include <dirent.h>
#include <signal.h>
... /* and so on */
I have several modules in a program (*.h *.c files) and in each *.h I include global.h, then they are included in corresponding *.c files. And I receive strange messages from compiler, like a "warning: implicit declaration of function fdopendir", "error: expected declaration specifiers or '...' before 'siginfo_t' ", "error: 'DT_DIR' undeclared..." though these types, functions and constants are all declared in system headers. What does it mean?... Compiler is GCC 4.4.4-2, system is Fedora 13 x86_64
View 9 Replies
View Related
Aug 29, 2010
Does anyone know the kernel-headers location, or how to determine that location, in Fedora 13? I'm installing vmware-tools and it's prompting for it. /usr/include/ and /usr/include/linux/ were revealed to have many header files, as shown by doing rpm -ql kernel-headers
However the installer rejected these locations. My only guess as to why is because they're not where the currently-running kernel has them. I also tried /usr/src/kernels/(kernelversion).fc13.i686/include/ with no luck...
View 3 Replies
View Related
Jan 25, 2010
I try to create/compile custom kernel from kernel.org. But is that a problem later to install headers? For example to install nvidia driver from nvidia.com I need header from my kernel and I havenot got all kernels or not? I am not very sure about this. Can somebody explain a littel, what happned with custom kernel and headers? Are there linux-headers only for some kernels? Which ones? All from kernel.org?
View 2 Replies
View Related
Mar 25, 2011
I am tying install part image but ı receiving an error message like this:
#./configure
configure: error: SSL Headers not found.
i am using ubuntu 9.10 64bit
View 4 Replies
View Related
Feb 10, 2010
This compiles against g++ template headers but not against the icpc headers.
Code:
#include <string>
#include <vector>
template <typename T>
class MyList : public std::vector< T* >{
};
template <typename T>
class MyListIterator : public MyList<T>::iterator{
};
int main(){
MyListIterator< int > test;
return 0;
}
View 4 Replies
View Related
May 17, 2009
I've upgrade the kernel from '2.6.18-128.el5' to '2.6.18-128.1.10.el5':
yum install kernel
yum install kernel-devel
yum install kernel-headers
yum install kernel-doc
But the system run into problem with WLAN, and I've search in this site and sombody posted in here: [URL] It's almost the same, the different is the card I use is TP-LINK. Then I decided to remove the newly installed kernel:
[Code]...
View 5 Replies
View Related
Feb 3, 2010
I'm trying to install vmware server 2 on my lenny and first I must install the kernel headers but I'm having troubels with it.
apt-get install linux-headers-`uname -r`
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package linux-headers-2.6.28.9
I have even tried with apt-get install linux-headers-2.6.28.9 but same thing Searching apt-cache search linux-headers-2.6.28.9 shows nothing.
View 7 Replies
View Related
Jan 27, 2011
I am in process of installing a VMware tools PKg and am being asked for the path to the C headers for the kernel. I've browsed every folder, found lots of 'C' header files and tried these paths but none are being taken by the script. which path I need to provide for 'the C headers' for my kernel? running Piapix, Deb5. The os is running perfectly so I doubt there is error other than I am not 'wise' enough to locate these little buggers!
View 2 Replies
View Related
May 12, 2011
There are some sites who are for example U.S.-only...Using Windows and Firefox, it often helped to just install Modify Headers, set it up correctly and you're done (it changes your ip-address you show to a website) Using a proxy really slows your connection down, but the app didn't.Is there an app for Iceweasel pretty the same, or at least one being able to do the same?
View 5 Replies
View Related
Jun 24, 2015
I'm running debian testing on my armhf machine. I need to install linux headers after searching with apt-cache. I ran the command
Code: Select allsudo apt-get install linux-headers-3.16.0-4-all-armhf
But it says it will also install gcc-4.8.. I checked my gcc version which is 4.9. and running. sudo apt-get install gcc . says gcc is already the new version.How do i install the headers without installing gcc-4.8
View 3 Replies
View Related
Oct 7, 2009
Where do I obtain this? I have the i586 kernel and I need the i686 kernel to run VMware. I beleive this may be the pottential reason virtualbox wasn't working too.
View 13 Replies
View Related
Sep 20, 2010
I am having problems with using the evolution-mapi connector evolution-mapi-0.30.3-1.fc13.x86_64. Certain emails get stuck in the Outbox and return the message "Couldn't send message". I think that it is emails that use accented characters in the headers that get stuck, but these are near unavoidable in the environment I work in. Actually, I used davmail for several months, but after a change in the local proxy, I can't get it to work anymore.)
View 1 Replies
View Related
Feb 13, 2011
where you only get offered the kernel-headers for 2.6.35.11-83 by yum but not the kernel or the kernel-devel? I tried yum clean all and both pointing to the baseurl and mirrorlist and it does the same thing for both. Oddly my other laptop with F14 in the wireless cafe showed all three packages were available.
View 2 Replies
View Related
Mar 18, 2011
Search the forums first. Well I did, can't find anything I understand.
So please help an ignoramus in simple terms.
The problem:-
I'm trying to run vmware workstation and I get a desktop box pop up which says "Kernel .heade4s for version 2.6.37.1-1.2 desktop not found"
How do I find them and install please.
View 9 Replies
View Related
Jul 30, 2010
Can anyone point me to a source for linux-kernel-headers. for kernel 2.6.34-12
I can't find it in the normal repositories and need it for installing vmware 6.0.4
View 9 Replies
View Related
Apr 28, 2010
I would like to include BPM data in all my id3 headers. I can do this one song at a time with banshee, but I have lots of songs, and it would take a very long time. In this thread I read about bmpdj and I am attempting to install this from source. I run into problems with the make command which gives me:
Code:
Link targets:
User Interface Resources:
[uic] ui-about.h
[uic] ui-album.h
[uic] ui-beatgraph.h
[uic] ui-bpmcounter.h
[uic] ui-bpmdj-pref.h
[uic] ui-bpmmerge.h
[uic] ui-capacity.h
[uic] ui-clustering.h
[uic] ui-freq-mapping.h
[uic] ui-importing.h .....
Source Files:
make[1]: *** No rule to make target `profile-clock.o', needed by `profile-clock'. Stop.
make: *** [.source-creator] Error 2
I don't know what profile-clock.o is, or what package provides it.
View 2 Replies
View Related
Apr 30, 2010
I am a somewhat new user to Ubuntu, and I just upgraded to 10.04 from 9.10. I did not do a clean install, just an upgrade by running "update-manager -d". Once I upgraded, lots of problems started happening:
- I booted up, and nothing came up but text like in a command prompt; not a splash screen. Is that correct? - When I logged in, none of my windows had tops (i.e. Window Title, Buttons for minimize, maximize, and close). I changed the theme and turned on the max graphical effects, and that fixed it. (by the way, I know my graphics card can handle it because that is how it was set up on 9.10)
- ...Then, I took off the bottom panel and added Docky. Once I added my icons to it, I restarted, and then the window headers were once again gone, and Docky popped up a message in the top right saying it needed Composite support turned on (i.e. Metacity or Compiz). I turned it on in Metacity (I also have Compiz installed), but nothing changed. So now I have no tops to my windows and have to resort to ALT+F4 to close windows, etc, and I have a huge black rectangle taking up the lower 1/4 of my screen that is just black, with Docky in it...it isn't just a border around it like some other posts have said, but rather takes up almost half my screen.
View 9 Replies
View Related
Sep 4, 2010
When I logged in, none of my windows had tops (i.e. Window Title, Buttons for minimize, maximize, and close). Also docky give an error msg : Docky requries Composting to work probably. And I should click on compiz fusion icon and select compiz window manager every time I boot up. So how can I fix it please??
View 6 Replies
View Related
Aug 7, 2011
i am trying to install: kiso-0.8.3 but when I try ./configure I recive this error >>>>>>>>>>
configure: error: Qt (>= Qt 3.2) (headers and libraries) not found. Please check your installation! For more details about this problem, look at the end of config.log
View 1 Replies
View Related