Ubuntu :: Error: 'memset' In Not Declared In This Scope?
Oct 1, 2010
I'm trying to compile a package of OpenKiosk call NodeView on Ubuntu 10.04, I finally manage to run the 1rs. step of 3 with no problem at all, that I have to do to install this program:
Quote:
1rt - ./configure --prefix=/usr
2nd - make
3rd - sudo make install
Now when I try to run make I get this error:
Code:
$ make
cd xmlrpc++0.7 && make -f Makefile
make[1]: Entering directory `/home/user/Desktop/nodeview-2.0.3/xmlrpc++0.7'
g++ -c -pipe -g -Wall -W -O2 -I/usr/share/qt3/mkspecs/default -I. -o .obj/XmlRpcSocket.o src/XmlRpcSocket.cpp
code....
View 3 Replies
ADVERTISEMENT
Aug 26, 2010
i have this error when i tried to compil a program :
[Code]...
View 9 Replies
View Related
May 27, 2010
im getting the following compilation error when trying to compile a file under /proc using 5.5 RHEL
[code]
* procfs1.c - create a "file" in /proc
*
*/
#include <linux/module.h> /* Specifically, a module */
#include <linux/kernel.h> /* We're doing kernel work */
#include <linux/proc_fs.h> /* Necessary because we use the proc fs */
#define procfs_name "helloworld"
code....
View 3 Replies
View Related
Feb 26, 2010
Well, either it's bizarre or I'm going crazy. Here is a student's very simple linked-list implementation.
The problem is simply that when the list class is named "link", g++ complains:
Code:
testlink.cc: In function int main():
testlink.cc:5: error: expected `;' before l
code....
View 5 Replies
View Related
May 5, 2010
different python module for playing audio similar problem. This time pyAudiere (sorry for sounding a little bored by this, but I had not much success of late) Ok, I am trying to install Audiere which doesnt work. I download the dependencies (libaudiere), then I extract the tarball download from their website. then I followed a procedure from this website because that was the only one I could find (documentation is a little sparse in that compartment unfortunately) from the terminal I write
[Code].....
View 3 Replies
View Related
Nov 10, 2009
I have install the dependiencies, by running the command sudo yum install qt4-devel jack-audio-connection-kit-devel successfully done (using fedora 11) After trying to build as [ajitj@fedora11 src]$ ./build But getting the error as bellow: (I have put some part of the lines)
../externals/includes/rtaudio-4.0.6/RtAudio.cpp:6164: error: �state� was not declared in this scope
../externals/includes/rtaudio-4.0.6/RtAudio.cpp:6164: error: �SND_PCM_STATE_XRUN� was not declared in this scope
../externals/includes/rtaudio-4.0.6/RtAudio.cpp:6166: error: �snd_pcm_prepare� was not declared in this scope
[code]....
View 1 Replies
View Related
Jun 8, 2010
I create a simple code for add two number:
Code:
#include<iostream.h>
#include<stdio.h>
main()
{
int num1, num2, sum;
code....
I search the answer to my problem in various forums but I can't solve the problem.I think that is due to I need some package or that I don't install the necessary libraries.
View 2 Replies
View Related
Apr 20, 2010
I'm learning how to program kernel drivers, and I'm making a hello world module for that. But I can't find the cause of some errors... My module as three files:
test_regulator.c: Code: /*test_regulator.c
2 */
3 #include <linux/test_regulator.h>
4 #include <linux/module.h>
5 #include <linux/kernel.h>
6 #include <linux/regulator/driver.h>
code....
I don't understand, because I had declared the test_regulator_driver.
View 2 Replies
View Related
Jan 22, 2010
The full error that I get is:
Code:
setproctitle.c: In function 'compat_init_setproctitle':
setproctitle.c:100: warning: implicit declaration of function 'strlen'
setproctitle.c:100: warning: incompatible implicit declaration of built-in function 'strlen'
setproctitle.c:104: warning: incompatible implicit declaration of built-in function 'strlen'
setproctitle.c:108: error: 'argv_start' undeclared (first use in this function)
code....
View 2 Replies
View Related
Jul 13, 2011
I see /home is not declared in /etc/fstab. I need it to be in /etc/fstab in order to be parsed by some software and notice there is actually a /home partition... Can I do such thing? Because i noticed the system just mounts it automatically during the boot process, doesn't it?
View 1 Replies
View Related
Oct 31, 2010
I have a server (192.168.1.9) in my network that is running a http server on port 5000. This server port have been opened (on my router 192.168.1.1) to be available from my public IP (on port 80).
I have recently installed openvpn to connect to a vpn, but I'd like to keep my http server available from my public IP (no need to have it available to the VPN network).
I'm completely lost and I don't know where to start ...
Here are some details about the route configuration :
Code:
View 7 Replies
View Related
Jul 15, 2011
i've just started to learn about functions in Bash scripting. I'm able to set the functions and execute the commands correctly. However, if my_var is set in the first function and then later in the script in the script the 2nd function is called, it doesn't seem to remember my_var and quits (at least i suspect this is the problem).
Here's my code (it requires yad available via webupd8. org). My specific problem seems to lay in line #27 where if we view the changelog and then exit that window, it returns to the "main" function but any subsequent commands cause a crash. Is this because of the get command on line #29? It's presumably now out of scope after calling menu on line #25?
View 8 Replies
View Related
May 25, 2011
From the past 2 years i have been working in linux machines and few months back I started my carrier as php programmer, I just want to know weather php has scope in software industry or not ? because my friends are insisting me to go for microsoft technologies and i am in delima to choose which platform.
View 3 Replies
View Related
Feb 13, 2010
In Windows environment when I used Borlan for C/C++ compilation, I was used to find the the scope/definitions of the methods/classes by pressing
Code:
ctrl + F1
when the cursor was hovering on that method/class. How can I find the scopes/definitions in the GNU/Linux?
Code:
//atoi.cc
#include <iostream>
main(int argc, char* argv[]) {
float var_float = atof(argv[0]);
[Code]....
View 5 Replies
View Related
Jul 29, 2010
I've got an enum in the global scope in my file.c. If I try to reference that enum in a function, I get an error:
Code:
// declared in the public scope:
public enum AMFFlags { AMF_AMF3 = 1<<0, AMF_BIGENDIAN=1<<1,AMF_ASSOC=1<<2,AMF_POST_DECODE = 1<<3,AMF_AS_STRING_BUILDER = 1<<4, AMF_TRANSLATE_CHARSET = 1<<5,AMF_TRANSLATE_CHARSET_FAST = 1<<5|1<<6};
// the function, declared via macro:
PHP_MINIT_FUNCTION(amf)
[Code]...
View 3 Replies
View Related
Jun 23, 2010
I am trying to use link scope IPv6 addresses to permit two machines to connect using IPv6, but I cannot figure out how to do it without specifying the interface to use on every connection. Here is an example ping:
[root@ppatel-brn1 ~]# ping6 -c 3 fe80::204:75ff:feb6:2994
connect: Invalid argument
[root@ppatel-brn1 ~]# ping6 -c 3 -I eth0 fe80::204:75ff:feb6:2994
PING fe80::204:75ff:feb6:2994(fe80::204:75ff:feb6:2994) from fe80::214:22ff:febd:7c1f eth0: 56 data bytes
64 bytes from fe80::204:75ff:feb6:2994: icmp_seq=0 ttl=64 time=0.836 ms
64 bytes from fe80::204:75ff:feb6:2994: icmp_seq=1 ttl=64 time=0.286 ms
64 bytes from fe80::204:75ff:feb6:2994: icmp_seq=2 ttl=64 time=0.280 ms
[Code]...
View 3 Replies
View Related
Mar 4, 2011
As i went through some tutorials found no difference in their meaning .. explain the difference in usage.
View 5 Replies
View Related
Sep 17, 2010
I recently was pointed to [URL] in another thread and ran into a problem: What header file do I need to download to write the code in the documentation? Apparently no 'bignum.h' file on the Internet declares the "BN_ULONG" macro or "BN_BITS2" bit chunks.
View 1 Replies
View Related
Jun 27, 2011
If I have a hard-disk with Ubuntu fully installed on it and I want to - all of a sudden - use Windows XP, is it mandatory that I firstly format the hard-disk first? So far, I have used two versions of Windows XP; one of them is from a few years before the other. Both copies of Windows XP when in start-up from booting from CD are causing errors. One of them is a BSOD error (0x0000007B) and the next Windows CD is stopping and giving me an error with setupdd.sys (error code 4). Is it required that the hard-disk is formatted before you even put a Windows boot CD in?
View 2 Replies
View Related
Jan 19, 2011
after install slackware with gnome using gnome slack build it is work fine Except some thing :-
the volume it is not work and get this error ((The volume control did not find any elements and/or devices to control. This means either that you don't have the right GStreamer plugins installed, or that you don't have a sound card configured. You can remove the volume control from the panel by right-clicking the speaker icon on the panel and selecting "Remove From Panel" from the menu.
No volume control GStreamer plugins and/or devices found.)) and the System Monitor give me this error when i want check the state of memory and processor ((There was an error executing 'gnome-system-monitor': Failed to execute child process "gnome-system-monitor" (No such file or directory)) and the memory flash not work and give me this error ((Error org.freedesktop.DBus.Error.AccessDenied.))
View 6 Replies
View Related
Mar 17, 2009
I'm not sure what when wrong since I have a few DVDs and they all play well in my normal DVD player, I later attempt to mount it in my Ubuntu 8.10 I'm presented with the following message:
DBus error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
May I know what does this really mean?Is there something in my computer that require a fix?
View 2 Replies
View Related
Jul 8, 2010
I am on Ubuntu Lucid (updated till date). I am using Kernel Linux 2.6.32-24-generic Recently I am not being able to run Cheese (webcam tool). When run it is crashing. Upon starting it from prompt I noticed the following error : libv4lconvert: Error decompressing JPEG: fill_nbits error: need 2 more bits The program 'cheese' received an X Window System error. This probably reflects a bug in the program. The error was 'BadMatch (invalid parameter attributes)'.
[Code]....
I checked in Skype and there the webcam is working fine. I tried with Camorama but that always gives an error "Could not connect to /dev/video0, please check connections."
View 2 Replies
View Related
Dec 14, 2009
Make: Fujitsu-Siemens
Model: LifeBook P7120
For some reason (hardware - I am guessing) the LiveCD does not boot on some laptops. The LiveCD worked well on my Dell Inspiron 1525 without any problems but my Fujitsu-Siemens refused to boot up. If you are trying to install or use F12 with the LiveCD ISO image burnt onto a CD on a laptop and fails with the following error:[drm:drm_mode_rmfb] *ERROR* tried to remove a fb that we didn't own Boot has failed, sleeping foreverthis workaround may work for you. Sometimes it will come up with another error about 'Root Device Not Found'
The workaround only works on a bootable USB key for some other reason, created with 'live-usb creator' and not a CD nor a LiveCD image on a USB created on a windows machine. I have tried them all.
[Code]...
View 1 Replies
View Related
Feb 1, 2010
I am trying a release of Ubuntu has have run into a problem that does not make much sense. I am receiving the following error: Syntax error on line 20 of /etc/apache2/sites-enabled/portal: Invalid command 'ProxyHTMLEnable', perhaps misspelled or defined by a module not included in the server configuration
fail! I believe the modules required for this is apt-get install libapache2-mod-proxy-html and it shows under the available modules and it was enabled with a2enmod proxy-html.
The line from the config is ProxyHTMLEnable On. The release is the latest download with updates from, 32bit.
View 4 Replies
View Related
Feb 21, 2010
I been running both OS's for a few months now with no major problems besides wireless internet issues. Today, however, as I go to boot my laptop up, the Dell logo loads with the F2 and F12 boot and setup options which both work. Directly after that though I get the message "GRUB loading. Symbol '?' not found. Aborted. Press any key to Exit." then it repeats when I push a key, and then it tells me to press F1 to retry, F2 to go to setup, or F5 to run diagnostics. It passes all the tests in diagnostics. I've tried booting off of the ubuntu cd I used to load it initially with no luck. So I'm stuck at either that error message or in setup but I can't go any further, and it does not change anything when I tried to boot from the cd.
View 8 Replies
View Related
Oct 23, 2010
[code]...
Gives error message permission denied. I've seen this in your forums but I still haven't found the fix. I've tried the latest release Wubi downloader too. This one is ran from a CD. Version 10.04
View 3 Replies
View Related
Nov 23, 2010
When I try to do
[code]...
I've tried the method described here: [URL]... However, I'm still getting the same error.
View 2 Replies
View Related
Dec 10, 2010
I logged in as user1 with administrative privileges.I right-clicked on a folder on my desktop, then "Sharing Options", then shared the folder as "docs".Then I created a new user with administrative privileges, user2, and logged in as that user.Then, I deleted user1 - account settings, and files.Then I created a folder on my desktop and tried to share it as "docs", but I get the following error: 'net usershare' returned error 255: net usershare add: failed to add share docs. Error was Operation not permitted
I can share the folder as any other name, just not "docs".My smb.conf file doesn't contain the entry.I'd love to know where the configuration file is that's hi-jacked the name "docs".
View 1 Replies
View Related
Dec 23, 2010
I recently setup a new server that serves files over samba and is a subversion repository for a number of projects. I did a simple apt-get update/upgrade for which the system requested a reboot. After I rebooted, I got to the login prompt, at which point I ran into a problem. After I enter my correct credentials, it spits out the following error:
sh: error while loading shared libraries libc.so.6: cannot open shared object file: Error 24
and returns me to the login prompt. Samba and Subversion are both still working, I simply can't login to the server either physically or via SSH.
What steps should I be taking to correct this issue? My thoughts are that I may need to use a Live CD to load the system and perhaps do another update, but before I go through that process I just wanted to check in and see if there might be some other solution.
I have tried googling the issue, and while I have seen other posts regarding shared library issues, there was never anything about not being able to login and I never did find anything specific to the error message I received.
View 5 Replies
View Related
Dec 26, 2010
I'm running Ubuntu 10.04 with a complete LAMP installation (for local developement purpose).
Everything is OK (I installed phpMyAdmin without problems) except for one big problem: php shows 500 server internal error instead of a complete error report.
I tried editing php.ini and in-script runtime configuration but nothing changed.
View 1 Replies
View Related