For questions that are specific to the GNU/Linux operating system. If your question has nothing to do with Linux APIs or Linux-specific behaviour then do not use this tag, even if you are running on Linux.

learn more… | top users | synonyms | linux jobs

1
vote
1answer
36 views

What does the usage of mprotect() as an ASM syscall look like with respect to its third argument?

In i386 architecture Linux I know that you can build a syscall by loading the identity of the syscall into EAX and the arguments into EBX, ECX, etc. I am confused by what the third argument for ...
1
vote
1answer
20 views

Running make run 2 times on a makefile

I'm running a two executalble makefile, and I got this problem: Everytime I do a make run (heuristica or otimo) it runs the otimo and then runs the exe I've said to run (if I choose otimo then it runs ...
-1
votes
2answers
46 views

wget command to download a file and save as a different filename

I am downloading a file using the wget command. But when it downloads to my local machine, I want it to be saved as a different filename. For example: I am downloading a file from ...
0
votes
3answers
44 views

Viewing server uptime

I am fairly new to web development, and am having a small issue. I am creating an html website on a cluster that I administrate. I would like to have the server uptime displayed on the main page ...
0
votes
1answer
35 views

Cannot Wake up Atmel ATSHA204 Using I2C

I've recently been given the task of writing drivers for some of the I2C devices in our product. I was a complete beginner at this, but I've managed to use a mixture of i2cset and i2cget along with ...
0
votes
0answers
15 views

What does `snd_mixer_selem_register()` do?

What is the purpose of snd_mixer_selem_register()? Most examples I find pass it NULL for options and classp. For example Set alsa master volume from c code does this. I am also pretty sure that ...
0
votes
1answer
26 views

Do command substitutions not affect the state of the shell?

This example that stores the current directory of the script in MYDIR echos the same directory before and after the variable assignment(even though cd was called) leading me to think that command ...
-1
votes
1answer
17 views

VMWARE backtrack upgrading issue [closed]

i am trying to upgrade my backtrack 5 r3 using apt-get upgrade, when this message keeps showing up "You do not have enough free space in /var/cache/apt/archives/." i am runing backtrack from vmware.
0
votes
2answers
41 views

Why do some Linux programs specify long form and shorthand arguments? [closed]

Whenever I look through documentation and man-pages, I notice that most linux programs have 2 types of arguments, and this is a genuine interest I have in finding out... One seems to be the full ...
0
votes
0answers
12 views

sandboxing libreoffice on Linux

I want to build multiple versions of libreoffice on a machine (Debian 6) and want to test these versions against a set of test cases automatically. I also want to test the given libreoffice version by ...
-2
votes
0answers
17 views

Windows binary files corrupted when copied from Linux [closed]

As my Windows 7 was not working properly, I booted from Ubuntu live CD and backed up the binary executables, RAR, ZIP etc from my Hard Disk to an external USB( wiht NTFS). But later on when I try to ...
0
votes
2answers
28 views

SQL or filesystem for FAST storing files/BLOBs?

I have an app that stores quite a lot of publications as files on filesystem, using nested dirs like "6/0/3/6/....". Files are not huge (.jpg, .pdf, similar documents), there's "just" a lot of them, ...
-3
votes
2answers
50 views

printf a variable in C [closed]

#include <stdio.h> #include <stdlib.h> int main() { int x = 1; printf("please make a selection with your keyboard\n"); sleep(1); printf("1.\n"); char input; scanf ("%c", &input ...
1
vote
5answers
45 views

How to use sed to extract substring

I have a file containing the following lines: <parameter name="PortMappingEnabled" access="readWrite" type="xsd:boolean"></parameter> <parameter name="PortMappingLeaseDuration" ...
0
votes
1answer
26 views

Minishell problems with cd (C)

I made a simple minishell in C and it works, except for the cd command. When I try to run it nothing happens except it creates a child process that never actually ends. For example, after running cd ...
1
vote
2answers
24 views

How are the results from glob ordered?

I am reading files in a directory using : glob_t* globlist; // initialization. glob(pattern, GLOB_ERR | GLOB_BRACE, NULL, globlist); This works well, but now the order of processing for each file ...
2
votes
3answers
49 views

Shell: How to a file's specified parent directory's name?

I am a beginner for Shell programming. I am currently writing a script to manipulate found files. but I would be needing to get the parent directories' names for found files. For example, ...
0
votes
1answer
33 views

Find files modified within 24 hours linux server

I need to find files modified last 24 hours without subfolders. I am having this command find /var/www/html/test/ -mtime -1 -type f -exec ls -l {} \; This will show all the modified file within ...
0
votes
0answers
37 views

Linux: WGET - scheme missing using -i option

I am trying to download multiple files from yahoo finance using wget. To do that i used a python script to generate a text file with all urls that i need. When downloading a single file (a csv file) ...
0
votes
1answer
91 views

Select in C, why does it fail?

I'm reviewing a code in C with select(2) function. In this code, select function should return a number different from 0 when any of a set of two sockets it's ready. However it fails to find any file ...
-1
votes
3answers
28 views

linux echo extra slash

I am creating a script which will go into into a particular column and row in a CSV file and use this data as part of a file subdirectory. So, I have a directory = $d and a sub-directory = $s My ...
-1
votes
2answers
41 views

C++ Socket Connection automatically establishing?

I am currently programming a C++ module that creates a socket server thread, which polls the accept() function every 1ms. I have a test module that spoofs a client connection that is also running. The ...
0
votes
0answers
8 views

Set DF_SYMBOLIC flag to existing library

Is there a way to set a DF_SYMBOLIC to existing library? I want to use symbols from this library instead of binary's symbols and don't want use LD_PRELOAD each time I launch the binary.
0
votes
1answer
13 views

How to make simple sql modifications from shell?

I have never made any software for linux, but it would be better for me now. I would like to write a simple SQL modification software that I can run via terminal and don't need to run php, apache. ...
1
vote
0answers
29 views

Java and Linux: TrayIcon and Task Switcher issues

I have an application that runs on Windows (great) and Ubuntu 12.04 (facing a couple interface issues). First, I have this code below to implement a TrayIcon: if (SystemTray.isSupported()) { // ...
0
votes
2answers
37 views

Stat with find not excluding files

Within a bash script, I am trying to find files based on their octet using stat in combination with find, however I want to skip some files (file1, file2, etc.). However this doesn't appear to be ...
0
votes
1answer
31 views

Process killed with -9 aborts?

I'm sending SIG_KILL to process on Linux, during the exit it encounters a memory bug and aborts generating core dump. I don't think it is possible on any Unix system, however this is what I observe. ...
0
votes
0answers
13 views

ELF file OS ABI invalid

I am recently doing some experiment on building a cluster system for computing tasks. My server is Suse Linux Enterprise 11, and one of the client is Redhat Enterprise Linux 5. I compiled openmpi on ...
1
vote
1answer
19 views

dd partition image differs

What variables can produce different md5sum of the same dd image of a partition? If I execute this code over two storages (same size, brand and geometry) why I obtain different "partition.image" ...
-1
votes
1answer
20 views

tracepath from one ip to another one in Ubuntu [closed]

Not sure if this question make sense, however, I would like to know which path a socket connection follows. Is it possible? I have as information, of course, the two ip address as well as the ports. ...
0
votes
1answer
22 views

unzip but extract only certain fileds using unix

I have a large text file 5-6 gigs 61,213,301 lines. it is in a comma delimited state. field1,field2,,,field5,,,field8... Since I don't want to extract the whole thing to a csv (more like I ...
2
votes
2answers
91 views

unmount USB drive in C++

I am developing a Qt application for Linux (Ubuntu) in which I use USB drive to backup some content. Application should unmount the target drive after copying stuff. I have a udev rule file to mount ...
-1
votes
0answers
34 views

crontab job does not execute with fixed time [closed]

When I write this line in the crontab */1 * * * * /root/test.sh it works ... but when I write this line 35 14 * * * /root/test.sh it does not work. Summary : with fixed time in the crontab it ...
1
vote
1answer
13 views

What signal number do pthread_cond_wait and pthread_cond_signal use internally?

Do pthread_cond_wait and pthread_cond_signal use sigwait and kill (from signal.h), respectively, internally? If yes, what signal number do they use, I mean, what value is passed to int kill(pid_t ...
0
votes
1answer
10 views

setGraphicsEventEnv() not supported under Linux?

I'd like to run a script containing an interactive part on a Ubuntu 64 bit machine. Unfortunately it fails throwing the following error: Error in setGraphicsEventEnv(which, as.environment(list(...))) ...
0
votes
0answers
4 views

Teamviewer 8 closing automatically in Fedora15, when i login via vnc viewer

when i login via vncviewer to fedora 15 for using teamviewer8, teamviewer8 is closing automatically with in seconds.But when i login to system directly,teamviewer8 is working without any problems. ...
0
votes
2answers
49 views

Is this an effective way to wait 10 seconds for an IP address?

I have a shell script that basically creates a vm that I use to do some processing on. This VM is given a random IP address that I obtain using VMwares vmrun utility. The machine can take anywhere ...
0
votes
0answers
11 views

create a new httpd service in linux

I am trying to create a new httpd service but starting from the original. so what i did is i duplicated the /etc/init.d/httpd in /etc/init.d/httpd_evol. and i changed only the apachctl file and the ...
0
votes
1answer
22 views

FD_ISSET returns 0 after FD_SET

I have the following code: FD_SET(mc_sock, &readfds); foo = FD_ISSET(mc_sock, &readfds); // returns 1 // Wait until some socket on the set is ready to be read while(select ...
-1
votes
1answer
20 views

How to optimize the GRUB boot loader time and also how to measure it? [closed]

Can any one please help me how to measure the GRUB boot loader time and how to optimize the boot loader time to speed up the boot loader.
0
votes
0answers
13 views

Disable Chromium Ctrl+T, Ctrl+N, Ctrl+W, Alt+F4, etc on Linux in kiosk mode?

Is there a way to disable Chormium's shortcut keys in Linux? I've tried the --app and --kiosk flags but they don't disable the shortcuts, you can still create a new (though unusable) tab with Ctrl+T ...
2
votes
4answers
68 views

How to generate string elements that don't match a pattern?

If I have days="1 2 3 4 5 6" func() { echo "lSecure1" echo "lSecure" echo "lSecure4" echo "lSecure6" echo "something else" } and do func | egrep "lSecure[1-6]" then I get ...
0
votes
1answer
25 views

what is the difference between Linux ARM ELF and iOS ARM ELF files?

The subject says it. But just to make it more clear, I wonder what the difference is in detail. I mean binary header, or some data alignment, or ways to map and remap functions or something else you ...
0
votes
1answer
29 views

SSH into an Openstack instance - Error

I try to use ssh to login in the Openstack server built for the class. I download the .pem key from server. By putty, I login successfully with .ppk key (generate .ppk key by .pem using putty keygen). ...
0
votes
1answer
62 views

C Send Socket without Defining Socket

What does this line of code do send(4, "test\n", 15, 0); If there is no socket defined in the code?
2
votes
4answers
45 views

Shell script to find the date 12 working days(ignoring holidays) from today

I'm having a little trouble trying to write a bash script that would find the date 12 working days later than the current day (ignoring holidays as that would complicate things quite a fair bit). A ...
-2
votes
0answers
33 views

Building a Linux distro [closed]

Today was a terrible day at office, failed to compile a 'hello world.c' for an arm machine. I gave up that. But After noon I found a blog to compile kernal here I compiled it successfully, and booted ...
1
vote
2answers
47 views

How to detect if my server is running centos or other from a perl script

I want to display some text in a script only if the Operating System is Centos . How can i do that in a perl script ?
0
votes
1answer
14 views

Linux - Script to edit clipboard content

Is there a way to write a script that would be applied to the clipboard content ( I'm using Linux\Gentoo)? When copy-pasting it would be nice to bind a keystroke that would (e.g -) remove all line ...
1
vote
0answers
14 views

detect HPA on pendrive [closed]

My computer is showing the capacity of my 8GB pendrive as 736MB. Formatting it did not help. I want to know if there is some way to detect the presence of an HPA on a pendrive by the means of some ...

1 3 4 5 6 7 1052