I am looking for a open source system to manage the cdr files generated by the cisco call manger. I have found a couple of systems but they are too costly.Is there any cheap or free software that can build a solution for this purpose.
In practice I have a script that call a java program that call a linux system command. The script if I run it, from a shell functions well,so it is not a java problem. The problem come out when i put this script in a crontab schedulation. The result in this case is that java do not execute the system command. I think it depends on crontab
Cisco vpn client would freeze the system. The only way to recover is to do a hard reset. The funny thing is I had it working before, so it may be random. However, it just happened 3 times in a row and I haven't tried again. I'll try again tonight. I'm pretty sure I'm running the latest client for 64bit linux systems. I'll confirm that when I get a chance, as well as my kernel.
researching for a open source billing software to use for a typical hotspot/wi-fi wisp setup. The billing software should be stateful ie being able to keep track of the user time and automatically discount the user when the voucher expires,should be able to create logins based on specfic time ie,user can buy access from 6pm to 5am,etc then also volume based. eg a download volume quota is set and when the user has downloaded based on the set quota,he/she is diconnected. Can all these be acheived with radius server?
I am planning to start a new business where I will get satellite internet as my backbone @ however I need have some questions since my company will be "fully open source" or " Linux-ish" first of all I would like to know which billing software is the best for the job , I came a cross "Optigold isp " and it seems awsome in its features especially the affiliate programs (eg. customer forward 5 more customer and get free month of internet access).
second , I would like to know how the network should be created @ because I will start in one city first and then I will extend to another cities basically in every city there will be one ground station to receive the satellite signal @ but I want to make the billing server and the router in one city only @ what router should I consider @ I dont have that much of knowldge to decide (gentoo , centos , ubuntu ....) even redhat is ok I wold just like to know if there are any pre-packaged solutions , I would like to know
i am trying to set up a cyber cafe using ubuntu 9.10 but i don't know what internet billing software to use and how i will set it.then if there is is the internet billing package is there a way that i can incoporate that it works with windows??
iam trying to add a system call to the kernel version 2.6.33.7.Iam running fedora 13.I have followed all the steps given in this <hekimian-williams.com/?p=20 -> tutorial,but iam getting a error in make saying undfined reference to mysyscall in syscall_table_32.
what is what is signal 0 in linux system call ?i can't find that in kill -l signal list . i need to know what is signal 0 . * for examples signal 1 is SIGHUP and signal 2 is SIGINIT . what is signal 0 ?
I have a process that forks, where the childs puts some data of random size and exits while the parent should get the data and does some manipulation.. here I have used a pipe for child to write the data and parent to read the data.. Child simply dumps the data, and the data is of any size even child and parent doesnt know. I have used select in the parent to see whether there is any data coming on the reading end of the pipe.. if there is a data.. I copy into a buffer.. Im reading the data continusly when the child exits after closing the writing end of pipe. Parent gets blocked on the read part But my question is how parent know the other of pipe is closed when using the select call. In otherwords.. while using select in readfds, how would i know the other end has closed the pipe..
I have added a new system call for kernel version Linux 2.6.25-14.fc9.i686. after kernel compilation and running the user mode program i am getting the below error
Error :: Function not implemented Error number 29
I cannot find the syscall_table.S or entry.S file in the source code , so i didn't made the entry of the syscall in this file, how much necessary the entry of syscall presence in this list and how to get this file?
I am searching for any system call similar to "ls" command we use in shell. My requirement is knowing the files and directories in curent working directory and process them based on there type. Here as of now I spawn another procees with system command like system ("sh ls -l | grep ^d | awk '{print $9}'").
Instead of this I want to use any system command where I can capture this information directly into my local character buffer. My opinion is that system calls will not spawn another process as a result less time it takes, another reason is once I use the system command again I need to capture the information to a local file then again read it into local buffer. I want to avoid the file manipulation here.
I am trying to ptrace a process and when the system call is 'cd' change directory, the ptrace process is able to trap it by comparing it against "__NR__open" system call. When I try to read the name of the directory from ebx register using peek_data I am getting ".message" and not the directory name. The same thing works fine when I am tracing a file open system call.
I am trying to figure out how i would go about finding out where system call is made and error checking is not done. I have code below, if somebody can point me in the right direction where system call is made but error checking is not done.Quote:
how to create a new system call Linux? what is the process of creating ?my project is to create a system call for displaying owner of a file..where exactly we have to write the system call code? and where are the places need to change ?
I'm trying to use system to call echo and pass variables to it. That was a success. The problem is the variables inside the while-loop i wrote cannot be manipulated. what I'm doing wrong here? here's the code:
How can it be determined whether a function defined in some file of an application source-code(meant for multiple operating systems e.g., Linux, AmigaOS) is actually called when the application run on Linux?
As per my knowledge, one can use systemcall to call the driver functions for example using open, close... Now is there any way to call driver functions directly from application without using system call?
I want to test my system call that be goint to add to kernel, But when i finish compiling kernel, i found my system call code not work. the code i want to return the system time "struct timespec":
/*----------Start of mycall.c----------*/ #include <linux/linkage.h> #include <linux/time.h> #include <linux/kernel.h>
[code]....
so i want a method to test the new system call before compiling kernel.
Anyone know the reason why a sleep( ) on a Redhat Linux OS would cause the system to indefinitely hang? It's doing this every 10 or so calls in my program and I have to press the reboot button on my computer. My program is reading from a UDP port that has messages sent to it 20 times per second. When I sleep I assume the internal UDP buffer is getting more and more filled.
Occasionally a dialog pops up with the title "Update Manager". It offers me to update system components. However this popup occurs automatically. I wonder how I can call/start this "Upate manager" (dialog)manually? I found no menu entry. When I click on menu Application->Add/remove Software then a "Package Manager" is shown which is different from the "Update Manager". So again the question: How can I start manually (from terminal or menu) the "Update Manager"?
When I try to mount the disk from my client machine I get the error: Code: [tim@localhost ~]$ sudo mount -t nfs 192.168.1.10:/media/cavern /media/cavern mount.nfs mount system call failed
Thinking the problem might be due to iptables I tried the following command as recommended by a book I found on google: Code: sudo iptables -A INPUT -i wlan0 -f -j ACCEPT didn't help so tried disabling the firewall - still getting the error Both machines are running FC11 - should i be using nfs4?
i've written small tool in C which makes measurements on my router (OpenWrt White Russian).
It is working as a deamon. If the tool is started manually, everything works fine. If it is started per script on startup, the following system call doesn't work :
rc = system (command); the returned rc in this case is 256.
first i thought it is a problems with the user rights for the tool, so i have added +s to it. but that didn't help. as i said, when the daemon is started by hand, the system call works fine.
I need to receive a number of raw ethernet packets (say, 100 packets) into a user-mode accessible buffer large enough to hold all the packets. The way I have done this so far is by looping over the recvfrom() system call 100 times, passing an incremented pointer addressing the location in my buffer to store the packet. Is there a way to receive the 100 packets into my buffer with one system call, perhaps by instructing the kernel to DMA the 100 packets into my buffer?