1
vote
3answers
22 views
How to check the presence of php and apache on ubuntu server through ssh
Hello,
I am not much into linux, so can any body please guide me how can I check whether the apache is installed with php and mysql on ubuntu server through ssh. Also if installed …
2
votes
1answer
27 views
SIGINT handling and getline
I wrote this simple program:
void sig_ha(int signum)
{
cout<<"received SIGINT\n";
}
int main()
{
string name;
struct sigaction newact, old;
newact.sa_handler = sig_ha;
…
0
votes
6answers
55 views
perl (or anything else) - adding characters at beginning and end of line but NOT at empty lines
I would like to use this:
perl -pi -e 's/^(.*)$/\"$1\",/g' /path/to/your/file
for adding " at beginning of line and ", at end of each line in text file. The problem is that some …
0
votes
3answers
41 views
Loading different Linux Distribution each time computer starts automatically?
I have two Linux distributions (OpenSuSE, Ubuntu) installed on two different partitions. Each time i start my machine, GRUB loads up allowing me to select one of the two distributi …
0
votes
2answers
38 views
Assembly and System Calls
Im having a bit of trouble understanding the more complex system calls in assembly. I wrote a exec system call and it worked great
.bss
.text
.globl _start
_start:
#exit(0) …
0
votes
3answers
48 views
How can I add text to the same line?
I used this command to find mp3 files and write their name on log.txt:
find -name *.mp3 >> log.txt
I want to move the files using the mv command and I would like to appen …
2
votes
3answers
89 views
How can I program software using Python for Linux/Windows?
For example, using C# I can make software fairly easily for Windows.
I downloaded Python but all I get is a terminal like window for executing single lines of code.
Is there a fr …
4
votes
4answers
145 views
Segmentation Fault With Char Array and Pointer in C on Linux
So I have the following program:
int main(){
char* one = "computer";
char two[] = "another";
two[1]='b';
one[1]='b';
return 0;
}
It segfaults on the line "one[1]='b'" …
0
votes
5answers
41 views
An script that accepts a command
#!/bin/sh
#My script
echo "Are you sure you want to reorganize your files?"
echo "Type y or Y to continue. Anything else will stop the process"
read response
if [ "$response" = " …
3
votes
4answers
110 views
Binary compatibility between Linux distributions
Sorry if this is an obvious question, but I've found surprisingly few references on the web ...
I'm working with an API written in C by one of our business partners and supplied …
0
votes
4answers
41 views
Coming from making Windows-only programs in C#, what steps are there for developing for Linux AND Windows?
I want to start making a little window-based program that runs on both Linux and Windows flawlessly.
It must have a GUI. What are the things I should be reading about? I'm comple …
1
vote
7answers
342 views
Chrome OS Development on a Mac
Google just announced the open source release of their Chromium/Chrome OS product:
Hello, open source developers. Would you like to help build an operating system for web users?
…
1
vote
1answer
28 views
Good framework for the game of Go (weiqi, baduk)?
I enjoy the game of Go (also known as weiqi in China or baduk in Korea). I want to create a program (an evaluation function) to play it.
I would prefer if the framework handled t …
0
votes
4answers
63 views
bash script to watch a folder
I have the following situation:
There is a windows folder that has been mounted on a Linux machine. There could be multiple folders (setup before hand)
in this windows mount. I ha …
0
votes
4answers
40 views
Find missing numbers in continuous filenames (advanced ls & find)
Let's say I have a script that generates incrementing folder names over time (100, 101, 102, 103, 104, etc...). These folders are synced between machines and there is a chance of c …
