
please wait
by foozhan
line oriented command mean
|
hi all; can someone explain what the meaning of the "line oriented command" is? like fdisk command in linux and how about "cryptic" meaning? |
Nov 15, 2013 at 1:59pm
[no replies]
|
by Ceset
sdl not found
|
hi everyone i have a problem with linux sdl2 (and i never tried sdl 1.2) usage dont know if it is installation or sth else cmakelist cmake_minimum_requi... |
Nov 15, 2013 at 1:12am
[9 replies] Last: $ wget http://www.libsdl.org/release/SDL2-2.0.1.tar.gz $ tar xvfz SDL... (by ne555)
|
by logy91
LINUX shell Project
|
Hello I have been given this project by my OS doctor I have no experience with LINUX nor UNIX and I do not know where to start Create a new file shell.c ... |
Nov 13, 2013 at 12:50pm
[1 reply] : This has nothing to do with Linux or Unix as such. A command prompt i... (by keskiverto)
|
by Xilonian
Piping with 2 processes in c++
|
I am writing a program that is supposed to run 2 unix commands using 2 separate processes and using pipes i send the output of 1 into the input of another. I ha... |
Nov 11, 2013 at 6:50pm
[5 replies] Last: not sure what you are doing but have you considered popen? You can pu... (by mik2718)
|
by Tomasz92
compilator Ubuntu
|
What compilator should I install for the most new standards of C++ programming. Now I have the new version g++ installed by command: sudo apt-get install g++, ... |
Nov 10, 2013 at 12:22am
[15 replies] Last: Thank you very much. Now everythink is OK ;) (by Tomasz92)
|
by necktwi
Unable to catch EOF in ARM systems
|
Please refer to http://stackoverflow.com/questions/19838702/in-c-how-to-detect-eof-in-arm-architecture for the problem. |
Nov 8, 2013 at 9:49pm
[1 reply] : If you unplug the USB while it is in use then all bets are off. You'll... (by Duthomhas)
|
by salinysanke
LInux PC to FPGA communication
|
Hi, I wrote a TCP IP client using stream socket and tried to communicate that with FPGA server. But the communication is not happening. At the same time from... |
Nov 8, 2013 at 3:51pm
[2 replies] Last: #include "Hmi_Lan_Interface.h" void* Transmit_Data(void *DataParam) {... (by salinysanke)
|
by nikkoNIU
Program goes into infinite loop. Please help
|
Im writing a program that prompts the user for 2 commands. Each input string should be a UNIX command, with arguments allowed. For example, input 1 could be "l... |
Nov 8, 2013 at 10:12am
[no replies]
|
by algo89
How to run cpp file on Terminal?
|
I have a C++ program in a cpp file and would like to run it on the terminal in Unix (Macbook user). I have very little Unix experience, so could anybody please ... |
Nov 8, 2013 at 6:33am
[3 replies] Last: Better then using terminal. says who? i have used a number of ides ... (by closed account Dy7SLyTq)
|
by tasos42
libcsdbg: a C++ exception (and generic) stack tracer library
|
I want to inform you about an open source release, libcsdbg that is easy to interface at your code and gives you an easy, transparent way to create/output excep... |
Nov 7, 2013 at 6:54pm
[1 reply] : Hello again I want to inform you about the new release of libcsdbg, h... (by tasos42)
|
by Baerfolg
How to include headers by their path in the file system
|
Hi, I'm new in this Forum and hope I've chosen the right topic. I've recently started programming in C++, because I have to use some program-packages from c... |
Nov 7, 2013 at 6:39pm
[1 reply] : c++ uses relative paths not absolute ones. ie if you have your project... (by closed account Dy7SLyTq)
|
Compiling for linux |
I'm running windows and i would like to compile for Linux is there a way to compile on windows or do i have to compile on Linux. If so can you help me setup a V... |
Nov 7, 2013 at 4:43am
[6 replies] Last: If his code is at all demanding to compile, it won't go well in a vir... (by closed account Dy7SLyTq)
|
by sanda199
Connection time out in socket programming
|
Hi everyone, I wrote c# server socket program in window and c client socket program in Linux. Between them I connected with crossover cable. And when I run my s... |
Nov 6, 2013 at 8:35am
[3 replies] Last: send(sockfd, "hello", 6, 0); http://www.freebsd.org/cgi/man.cgi?qu... (by kbw)
|
by mqazi
select function
|
#include <errno.h> #include <stdio.h> #include <string.h> #include <sys/time.h> #include "restart.h" int copy2files(int fromfd1, int tofd1, ... |
Nov 5, 2013 at 1:50am
[2 replies] Last: The select() on line 53 blocks on the file descriptors (FDs) set in li... (by ShodanHo)
|
by VoqionXazr
UART Serial Connection
|
Hi, I am trying to implement a code that is able to receive input from a serial communication. I believe that it is possible to do this using fstream, but so fa... |
Nov 5, 2013 at 1:42am
[1 reply] : It's been a number of years, but on Linux I have not used std::fstream... (by ShodanHo)
|
by sanda199
Connection refused in socket programming in c
|
Hi everyone, I am writing socket programming in c in Linux. I wrote client and sever programs. But when I run it, server is ok. But client showed that connectio... |
Nov 4, 2013 at 9:28am
[8 replies] Last: When I wrote a c# server program in window and c client program in Lin... (by sanda199)
|
by agt
Clang fails to compile c++
|
Hello Everyone. Recently I decided to give the compiler clang a try after hearing about it. I installed the entire LLVM toolchain from the official (LLVM) Sa... |
Nov 4, 2013 at 4:01am
[3 replies] Last: Finally solved clang -stdlib=libc++ -std=c++11 -lc++ <sourcefile> -o ... (by agt)
|
by dude2333
Error with std::out_of_range, Can someone help?
|
Here is the console: varr HelloWorld, Hello, world!; prnt HelloWorld; quit terminate called after throwing an instance of 'std::out_of_range' what(): basic_... |
Nov 3, 2013 at 7:04am
[3 replies] Last: My guess is that one of the: argv.substr(i, 4) argv.substr(x) statem... (by ShodanHo)
|
Linux C++ Daemon |
Hi, Im writing a daemon that gets the data from the mysql and processes each. in Daemon it runs incomplete(Deletes From database but not do other things). wi... |
Nov 2, 2013 at 10:47am
[1 reply] : Sounds like an DB permissions problem. You need to confirm the user a... (by kbw)
|
by girijaram
Multithreading race condition issue
|
I have an issue with my code ... my below code is createing databases(database here is a kd tree) and indexing one image per database. i have two classes LastD... |
Nov 1, 2013 at 12:09pm
[no replies]
|