Forum Discussion Search with BoardTracker.com
Forum Discussion Search with BoardTracker.com
  
  

Advanced  |  Help
    Home Search Alerts Browse My Threads Setup About Login Signup    


» All > Computers & Internet > . > . > OS > Linux [5 Forums][Track this Category]
   Browse sub-categories   
No sub-categories for this category

   Latest threads in category   
cProgramming Problem with libraw1394 v1.3.0  
13:25 1-Sep-08   [Replies: 2, Views: 36]    By: Unnamed
Hello, I'm currently working on a program that uses libraw1394, libdc1394 and libdc1394_control. The application is running on openSUSE 10.3. The following packages are installed: libdc139...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming gdb reports something I dont understand  
04:18 30-Aug-08   [Replies: 10, Views: 178]    By: Unnamed
could you please explain what has happened here? > Program received signal SIGSEGV, Segmentation fault. > 0x0804885d in add_token () > Current language: auto; currently asm ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming Debian on a system with Compact Flash, without Hard Disk  
15:19 29-Aug-08   [Replies: 19, Views: 325]    By: Unnamed
I have been told that Debian on an industrial PC with a Comapct flash and without hard disk is not a great idea cause the OS writes often on the main disk and this would hit with flash limited wri...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming GCC with MAC Terminal  
00:50 28-Aug-08   [Replies: 8, Views: 178]    By: Unnamed
Hey guys: I'm taking a C programming class. I'm using the MAC OS X terminal and I'm trying to compile just a simple program, but when I put in like: gcc hello.c this error comes out: -...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming all about cross compilation  
10:08 27-Aug-08   [Replies: 1, Views: 56]    By: Unnamed
hi all i would like to know about cross compilation. 1.what is meant by cross compilation. 2.what is the use and where can we use and can i use it fedora 9. 3.how to do it(step by step)....
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming Test to Speech  
07:48 26-Aug-08   [Replies: 1, Views: 95]    By: Unnamed
Hi im looking to creating software for hypnosis under linux and would like to use TTS. Does anyone know of a library with c api similar to SAPI that is on windows. I know about festival but can fi...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming How to Linux Program  
10:54 25-Aug-08   [Replies: 20, Views: 299]    By: Unnamed
This may seem like a weird question but I am new to linux(ubuntu) and I have noticed that I have no idea how to program it. I write in C and don't even know a header file to start with. I'm mostly...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming Any regex people here?  
07:37 20-Aug-08   [Replies: 14, Views: 315]    By: Unnamed
I want to make a list of all links from an index.html page. All I want is the URL and I'll live with the assumption that there's double quotes around it - for now. Here's what I have so far: ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming X11 Programming  
13:00 19-Aug-08   [Replies: 6, Views: 213]    By: Unnamed
Hello World I'm unexpirienced in X11 programming and now I want to write some small application. It should create 4 windows and each of them should be displayed on different X server. Qu...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming Pipe class.  
21:13 18-Aug-08   [Replies: 8, Views: 244]    By: Unnamed
I've written this today, very easy to use: http://pastebin.com/m1c430b6a [http://pastebin.com/m1c430b6a]> Code: /* PIPES HANDLING CLASS * written by eXeCuTeR, 19.8.08 * Works only on ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming pipe question  
22:51 17-Aug-08   [Replies: 2, Views: 121]    By: Unnamed
On page 502 in the book "Advanced Programming in the Unix Environment" by Stevens and Rago, they have a the following function to help sychronize the parent and child. Code: ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming getting stderr from an app launched via execv  
03:21 17-Aug-08   [Replies: 1, Views: 106]    By: Unnamed
I have an application that calls another app and reads its output from stdout and also traps output to stderr too. It originally used popen and trapped stderr by passing "2>out.err&quo...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming Calling other binaries, use fork/execl or system?  
22:48 15-Aug-08   [Replies: 3, Views: 164]    By: Unnamed
I know of two approaches 1) fork, dup2, execl (you can see this approach in minicom or busybox telnet) 2) system(command) I'm used to going through method #1 but a friend pointed out tha...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming compiling linux file system  
04:23 14-Aug-08   [Replies: 1, Views: 141]    By: Unnamed
hi i have a board and i want to compile linux file system and download it on board but i dont know how i can compile the file system if you have knowledge about this matter please help m...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming Writing a linux hardware driver  
23:25 12-Aug-08   [Replies: 1, Views: 199]    By: Unnamed
I have build a POV display 8 X 10 pixels that runs from the parallel port. Right now I have a some crude code in 'C' that displays static images. Would like to interface it with Amarok or Xi...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming How come I can't re-acquire the controlling terminal here  
02:18 12-Aug-08   [Replies: 2, Views: 143]    By: Unnamed
Code: #include <stdio.h> #include <unistd.h> #include <fcntl.h> #include <stdlib.h> void reterm(void) { pid_t pid; if((pid = fork()) < 0) { fprint...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming Writing code for a Logitech Quickcam pro 3000  
02:37 10-Aug-08   [Replies: 2, Views: 191]    By: Unnamed
Hello all, I am new to Linux. I am however, quite familiar with C. The other day, a good friend and me were looking through his basement when we found an old computer that was running Linux (...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming pthread question  
23:01 9-Aug-08   [Replies: 2, Views: 162]    By: Unnamed
The following idioms appear a lot in the book "Advanced Programming in the Unix Environment" by Stevens and Rago Code: int err sigset_t oldmask; pthread_t tid; if ((err =...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming what is wrong with the code ?  
05:04 8-Aug-08   [Replies: 3, Views: 184]    By: Unnamed
Hi I have written the followinng serial port program. It compiles without errors. During execution the program does not recieve all the characters that I send from another computer thru minicom. M...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming Reliable Singal question  
02:08 7-Aug-08   [Replies: 1, Views: 179]    By: Unnamed
The following question stems from page 329 in book "Advanced Programming in the Unix Environment" by Stevens and Rago. Near the top, they say Quote: Note th...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming case sensitivity in GtkTextView  
23:49 6-Aug-08   [Replies: 2, Views: 119]    By: Unnamed
When applying a text search with gtk+ 2.0 in a GtkTextView widget using gtk_text_iter_forward_search, the search is always case sensitive. Does anyone know how to change this? According to al...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming UML autodraw  
11:13 6-Aug-08   [Replies: 3, Views: 124]    By: Unnamed
Does anyone know free linux application to autodraw UML diagrams from C++ source? Thanks. ...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming first module programming Error  
05:29 5-Aug-08   [Replies: 1, Views: 118]    By: Unnamed
hi i want to start module programming but i don't know how; i write a module Hello-1.c and compile it with a make file but the following Error has appear : Code: make -C /lib/modules/...
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming C program to play a sound  
01:06 5-Aug-08   [Replies: 13, Views: 481]    By: Unnamed
Hi to everyone... recently changed to linux and i need some help with this new adventure... i changed to Linux because everybody told me that is the best OS to make my own programs and stuffs.....
[Tags: No tags defined yet] -
Be the first to Tag this thread
cProgramming buffer has extra contents in gtk+ 2.0  
14:00 3-Aug-08   [Replies: 5, Views: 214]    By: Unnamed
I am trying to learn C and gtk+ 2.0 and I just wrote a simple program that puts a text file to stdout when a button is pushed. For some reason, the output from the file leaves an extra line in...
[Tags: No tags defined yet] -
Be the first to Tag this thread

<<First  <Previous  [1]  2  3  4  5  6  7  8  9  10  Next>      
 




Research | Board owners portal | BoardTracker Forums | Search plugin | Add your board | About us | Contact us

© Pidgin Technologies Ltd. 2006