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

0
votes
0answers
6 views

How to use SIGUSR1 alternate values

In man 7 signal it shows that SIGUSR1 as SIGUSR1 30,10,16 Term User-defined signal 1. If i use SIGUSR1 in my C code, i get the value 10. Is there any way to access the other values 30 & ...
0
votes
0answers
3 views

adding Doxygen plugin to qtcreator in linux

I want to add Doxygen plugin to QtCreator. I am using QtCreator 2.5.2 in ubuntu 12.10 and the latest Doxygen version for QT is 2.4.0. I've changed the doxygen.pluginspec file to get rid of version ...
0
votes
0answers
13 views

Checking username: getpwnam / getpwnam_r: No such file or directory

I'm trying to make a web logging and I use getpwnam() function to check username existing. But for valid username getpwnam returns error: No such file or directory. So I tried getpwnam_r(), but it ...
0
votes
0answers
4 views

How to preempt one process from another process/kernel thread?

I have a process P and a kernel thread KT. I want to synchronize execution of P with KT. KT is basically an event handler. But my requirement is that KT should not go ahead processing events if P is ...
0
votes
0answers
12 views

Symbol is never used, yet readelf reports it as needed

I have a .o file that does not contain a symbol, that is objdump -D file.o | grep _M_insert prints nothing, yet readelf reports it as needed readelf -a file.o | grep _M_insert 0000000013f7 ...
0
votes
0answers
7 views

Permission error - cannot delete uploaded files from FTP

I have found several posts asking similar questions however this situation is different. In my upload class I'm creating a directory from a user's id with mkdir, then calling move_uploaded_file to ...
0
votes
0answers
4 views

How can I connect to the FitBit Zip over Bluetooth 4.0 LE on Linux with bluez?

I purchased a FitBit zip. This device uses Bluetooth 4.0 LE. I would like to at least connect to it via bluez. If that is successful I want to see how much of the protocol I can figure out. I am ...
-1
votes
0answers
5 views

E: Sub-process /usr/bin/dpkg returned an error code (1) in ubuntu terminal

Well when I trying to install xrdp via sudo apt-get install xrdp it gives me the following error iReading state information... Done xrdp is already the newest version. 0 upgraded, 0 newly installed, ...
0
votes
2answers
27 views

How to ensure that UDP socket is closed?

I have a Client Server application. The client sends commands to server and receives the data on a UDP socket channel. Each time the socket file is created with a different id. I am executing the ...
0
votes
2answers
32 views

Opening files found from os.listdir() and comparing lines inside?

Alright, so I'm writing a program to help connect to wireless networks. I have most of it down (in fact, it's complete. I'm just working on extra features.) I'm writing a GUI frontend for a wireless ...
1
vote
2answers
51 views

bash on Linux, delete files with certain file extension

I want to delete all files with a specific extension - ".fal", in a folder and its subfolders, except the one named "*Original.fal". The problem is that I want to delete other files that have the same ...
0
votes
0answers
5 views

Problems with web-service binding while testing websphere integration modules. How to fix?

Same modules work fine in the same environment under windows 7 but under linux... webservice export binding + java component : [5/20/13 17:32:44:135 MSD] FFDC ...
0
votes
3answers
20 views

Failed to Start Apache tomcat from eclipse juno in linux at port 80

At the window platform I have run tomcat from eclipse juno. But at linux I face this problem When I run web project from eclipse I got this error message, while from command line I can able to run ...
0
votes
0answers
7 views

Create ghost dvd or image of linux suse

I am stuck in a problem of Linux suse and need help on the same. My problem is mentioned below. As per my client requirement, I have to create a ghost dvd or image dvd of the Linux suse 11 operating ...
1
vote
1answer
21 views

unix linux shellscript programming printing input arguments containing multiple words

I am trying to write a shell script for which 1st 2nd and 3rd...n argument contains multiple words MAILING_LIST="abc@gmail.com xyz@gmail.com zed@gmail.com" echo $MAILING_LIST mailing "Error in Job" ...
0
votes
0answers
17 views

Zend_Form validate crashing PHP

Running PHP 5.4.15 / ZF 1.12.3 (upgraded from 5.4.12 or 13 I believe). Running nginx w/ php-fpm, also tested with Apache. NOTE: This appears to be related to APC. I would highly prefer APC, and cannot ...
0
votes
2answers
16 views

Nginx Running Wordpress Redirecting www to non-www by mistake

I have an nginx server (1.4.1) running a website in Wordpress. It is automatically redirecting www.mysite.com to mysite.com without any specific rules for doing so. I'd like it to stop and keep the ...
0
votes
1answer
17 views

Centos unable to upload file permission denied error

Yesterday I installed vsftpd in my centos server. But I am not able to upload files permission denied error. So I set owner and 775 file permission, and also i set 777 permission and then also I cant ...
0
votes
0answers
11 views

statsd current time is two hours in the future--how to fix?

When looking at our statsd data in graphite, the graphs are saying the current time is two hours in the future. For instance, if we're looking at graphite at 9:00am, the graphs are telling us it's ...
0
votes
4answers
38 views

Linux Shell - String manipulation then calculating age of file in minutes

I am writing a script that calculates the age of the oldest file in a directory. The first commands run are: OLDFILE=`ls -lt $DIR | grep "^-" | tail -1 ` echo $OLDFILE The output contains a lot ...
-1
votes
0answers
12 views

Grab file then download html [closed]

My server does not want to work with me at all... I have a file /home/stuff that is a symlink to /var/www/html/stuff I want to be able to download the contents of /var/www/html/stuff but I get a ...
0
votes
1answer
29 views

Is there any configure file read/write C code generator?

I know how to generate a C scanner code with flex or bison, but unluckily, I need a C code to read && -write- configure file, but I can not generate such code with flex or bison, May be I can ...
-1
votes
1answer
24 views

Why does a binary of one OS (Windows) does not run in other ( Linux) for same underlying architecture? [closed]

It may be a trivial question but I have hard time to explain to my little brother that a Windows binary will not run in another different OS like Linux even when both the OS are running in the same ...
0
votes
1answer
12 views

list_for_each_entry reset cursor

Hi I am new in this and I trying to use list_for_each_entry to iterate over a list. It looks something like this list_for_each_entry(pos, head, member){ if (something == pos.x) //reset the ...
0
votes
1answer
20 views

Fork()-ing a new process

Fork()-ing a process will end up calling do_fork() inside kernel, making an exact copy of itself. When I read through books, it says that child of fork will call exec to create the new process. ...
2
votes
0answers
23 views

In Linux Driver, how to disable a specific USB Device [migrated]

Assume a USB devices is powered by USB bus. Sometimes the firmware in the USB device encounter a problem and can't recovery by itself. I have to unplug and plug the USB device from the host. Is there ...
0
votes
0answers
13 views

can not restore table which was dropped using mongorestore

i do this to test mongorestore utility the following is my test procedure: mongo 127.0.0.1/mytest -u alex -p alex > db.createCollection("test1") { "ok" : 1 } > ...
0
votes
1answer
21 views

recvmsg return error(EBADF) when communicate between two processes using socketpair?

I'm developing a program which do IPC's call between two processes.I create two socket fd using socketpair: int fds[2] = {-1,-1}; if (socketpair(AF_LOCAL, SOCK_STREAM, 0, fds)) { return NULL; } ...
-1
votes
0answers
11 views

UEFI and RAID1 Nightmare [migrated]

1 CPU: AMD FX-8150 Zambezi 3.6Ghz Socket AM3+ 125W 8-core RAM: CORSAIR Vengeance LP 16Gb (4x4Gb) 240-Pin DDR3 SDRAM 1866 CML16GX3M4A1866C9B Mobo: ASUS M5A97 LE R2.0 AMD 970 PSU: Thermaltake TR2 ...
0
votes
0answers
11 views

Fish programming: Why are `bind` commands in config.fish not executed?

At end of /usr/share/fish/config.fish, I have the following commands: bind \e\[1\;5C forward-word bind \e\[1\;5D backward-word echo foo Afterwards I run fish, it prints "foo". I then run bind to ...
0
votes
0answers
45 views

two subdirectories named 'sys' under /usr/lib64/perl5 [closed]

Anybody's got an idea why there are two subdirectories named 'sys' under /usr/lib64/perl5 ? Different inodes, but anyway... Here's the output (Fedora18): ls -li /usr/lib64/perl5/ [...] ...
0
votes
1answer
14 views

Alternative to finfo(FILEINFO_MIME)->buffer() in Linux command line

Instead of using finfo on files to retrieve the content-type you can execute a command in linux if(PHP_OS == 'WINNT'){ $finfo = new finfo(FILEINFO_MIME); $content_type = ...
-2
votes
1answer
33 views

Linux: Redirect ipaddress to domain name [closed]

Is it possible to redirect local ipaddress to domain/subdomain name in linux? I know it is possible with DNSMasq but my modem doesn't support that.
0
votes
1answer
15 views

Change the baud rate for BeagleBone UART0 running Angstrom Linux

I am trying to enable Arduino-like serial output for my BeagleBone Rev5. From what I understand the UART mapping is like this: UART0 <=> /dev/ttyO0 I am running the latest Angstrom distro: ...
0
votes
1answer
53 views

What are really the real consequences to malloc() calls without free()? can it make a program going to crazy,such as a forever loop?

I have a big problem in my current program. Inside on loop,two functions if I do another function call inside this loop,I get a forever loop! even a printf("bah"); give a forever loop. This give ...
2
votes
1answer
32 views

using variables within a telnet session

I havea script that I use to send multiple commands using a telnet session. I'm not sure if I need escape characters or not. If I type the command directly in the telnet session, it works and I get ...
0
votes
2answers
16 views

Download File from linux server via website

So I have a Linux server and I want to download a file from "/home/file.txt" I want to provide a download link for this file on my website. Also I cannot move the file AT ALL. How would I go about ...
0
votes
1answer
22 views

error while loading shared libraries, installation misplaced `.so` files in /usr/lib

I'm using libevent in my source code, after compiling the program, I run it and I got the following error: ./my_program: error while loading shared libraries: libevent-1.4.so.2: cannot open shared ...
0
votes
2answers
17 views

Poor performance on bitnami server AWS EC2 micro

I'm looking for some assistance with performance tools for Linux server running on AWS micro instance. Apache serves web pages really slow. I have used top command and Idle value is almost 100% and ...
0
votes
0answers
10 views

Generate SSL certificate for Subdomain

How can I generate Private Key and SSL certificate specific for subdomain? openssl req -x509 -new -key key.pem > key-cert.pem This command generates wildcard certificate.
0
votes
1answer
36 views

How to capture file names and check for date part in the filename in Unix code?

I am a newbie to linux and I have a requirement where I need to capture the file names, check the date in the file names and proceed and load the data from all the files only if all the file names ...
0
votes
1answer
9 views

htaccess block access from a top level domain?

Is there a way through htaccess to block access to images from my site when requested by a specific top level domain, eg ".ru"? I currently use: RewriteCond %{HTTP_REFERER} ^\.ru [NC,OR] Rewriterule ...
0
votes
1answer
11 views

libudunits2 requires libexpat.so.0, will not accept libexpat.so.1

Operating System: Ubuntu 12.04 64-bit (Precise) Machine: x86_64, Intel Centrino 2 (2 cores), 4 GB RAM Libraries involved: libudunits2.so.0.1.0, libexpat.so.0, libexpat.so.1 Description ...
-1
votes
0answers
10 views

Change ip addr label in Linux [closed]

How can I change the eth0 zero to eth0:1 using ip addr without deleting. When I run ip addr show eth0 Here is the output 2: eth0: mtu 1500 qdisc mq state UP qlen 1000 link/ether ...
0
votes
0answers
33 views

Vim specifically does not allow mapping of Home key via t_kh

map ^[[1~ g^ (where the ^[ is the literal \033 escape char) works to get Vim to override the Home key. Pressing the Home key in the absence of any maps has it correctly go to the front of the line. ...
-1
votes
8answers
146 views

On Linux, in C/C++, will a pointer ever have the 63rd bit set?

I want to use a long integer that will be interpreted as a number when the 63rd bit is set otherwise it will be interpreted as a pointer. So would this work or would I run into problems in either C or ...
2
votes
3answers
50 views

How to Run a Java Project on Linux Without Using IDE

I am new to Java. Basically, I developed a java projects which contains multiple Java packages inside Eclipse. The project runs OK on my desktop with a redhat Linux installed. However, I need to run ...
3
votes
1answer
37 views

GDB: How to check current line number during debug

How do I check the current line number that I'm stopped in when debugging with GDB? I would have thought this would be obvious (and maybe it is) but I don't see it on the GDB Cheat Sheet.
0
votes
1answer
41 views

Logging all errors and stdout output with Python

I know this has been discussed here before, but I haven't found a solution that will work for me. I already have a python script that I wrote, and I currently have it run at boot. What I would like ...
0
votes
2answers
32 views

Import environment settings into Makefile (ubuntu and osx)

In a shell script I can . conf/environment Can I do the same in Makefile?

1 2 3 4 5 1047