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.
13
votes
0answers
232 views
Using the Linux Fault Injection framework
I'm trying to use the Linux fault injection framework to inject page allocation faults. I'm trying to use the failcmd.sh script provided with the Linux kernel in tools/testing/fault-injection/.
After ...
6
votes
0answers
399 views
can not scroll page by mouse after tmux split pane
In tmux, when I split to multiple panes(vertically or horizontally):
1. I can't use mouse wheel to scroll screen output page.
2. I can't select and copy texts using mouse.
My problems do not exist if ...
6
votes
0answers
785 views
Using WSSE plugin for Gsoap in C++/Linux
How can we implement WSSE plugin for Gsoap in C++/Linux ?
This link doesn't give all the information :
...
5
votes
0answers
563 views
Identifying the preferred IPv6 source address for an adapter
If you have a IPv6 enabled host that has more than one global-scope address, how can you programmatically identify the preferred address for bind()?
Example address list:
eth0 Link ...
4
votes
0answers
493 views
GDB core dump: Find executable by build-id
Is it possible to make gdb automatically find the corresponding executable file? I have extracted the debug symbols and put them in the /usr/lib/debug/.build-id/ directory. When I start gdb with gdb ...
4
votes
0answers
199 views
How to read a sector using a bio request in Linux kernel
How do I create my own bio request to read a sector from the disk drive ?
I am trying the following but it freezes the system.
static void read_bio()
{
struct bio *b;
struct page *p;
b = ...
4
votes
0answers
258 views
Issue with Qt dynamic library in Linux
I built an application based on QuickFIX Engine in Qt, named fixapp; it works fine. My broker asked me to specify a local port to connect to them. Then I couldn't find such configuration file, so I ...
4
votes
0answers
265 views
Does using XEmbed put restrictions on OpenGL functionality?
I am building an NPAPI plugin for Linux that uses the XEmbed protocol for the window that is controlled by the plugin. I am using Gtk+ for attaching to the window, wrapping the XEmbed window with a ...
3
votes
0answers
19 views
Checking directory or file from external owned server
I am developing a script for a music company in PHP that has different servers so they need to display a file if it exists or not on the external server
like they have 3 versions of each music ...
3
votes
0answers
57 views
CREATE TRIGGER sys_exec and python
my python on /usr/esercizi/ is:
#!/usr/bin/python
import datetime
now = datetime.datetime.now()
aa = now.strftime("%Y-%d-%m %H:%M | %S")
out_file = open("test.txt","w")
out_file.write("La data di ...
3
votes
0answers
131 views
java and libGDX / LWJGL game fullscreen wrong size for multiple monitors on Ubuntu
I'm working on a libGDX (library on top of LWJGL) game project, and use the Intellij IDEA IDE from several different workstations:
Windows 7 x64 laptop with two displays (1920x1080 and 1600x1200), ...
3
votes
0answers
73 views
Samba causes “mount: / is busy”
I am developing an application on Raspberry Pi. I am using samba to share my RAMDISK over network. Here below you can see my fstab:
proc /proc proc defaults 0 0
...
3
votes
0answers
166 views
libtool links with 32-bit version of libstdc++.so on a 64-bit target platform when multiple version of gcc are installed
First, I'd like to let you know that it is my first post on StackOverflow, so I hope that I won't make a fool of myself by asking a very stupid question. I've been googling about this problem for a ...
3
votes
0answers
41 views
Canonical way to sign (and verify) an ELF file?
I would like to sign ELF files, preferably with a PGP key and later be able to verify the signature. Failing that I'll also go with a Authenticode or SSL certificate for signing if that makes more ...
3
votes
0answers
60 views
setting gdb breakpoint selects a different set of constructors 32 bit vs 64 bit
I have the exact same source code/make file compiled natively on two machines: Linux Fedora 16 32 bit and Linux Fedora 17 64 bit.
On the 32 bit machine:
(gdb) break FRS::FRS
Breakpoint 4 at ...
3
votes
0answers
68 views
have PyRun_InteractiveLoop() take input/output from/to another pty on linux
In a C program I want to run a Python interactive loop that takes its input from and makes its output to a pseudo terminal (for example pts/4) different than the one from which the C program was ...
3
votes
0answers
133 views
How to use Vtune Analyzer API on linux
I want to use Vtune Profiler APIs to profile a code running on Xeon Phi (Linux, using offload execution) to see the number of instructions executed, the number of L1 cache misses, etc. But I can't ...
3
votes
0answers
156 views
mxe cross compiling linux to windows vtk example
I would like to know if there is an example out there, or could somebody post one, for compiling a vtk .exe app using MXE. The headers and libraries are built but I can't seem to get it to work. I ...
3
votes
0answers
280 views
Profiling Netty Performance
I'm writing a Netty application. The application is running on a 64 bit eight core linux box
The Netty application is a simple router that accepts requests (incoming pipeline) reads some metadata ...
3
votes
0answers
167 views
MMAP fails above 4k size
This is my first post so please let me know if there is any mistake from .
My aim is to get approx 150MBytes of data transfer from KERNEL to user space.
[This is because i am building an driver for ...
3
votes
0answers
166 views
Implementig thread-local storage in custom libc
I'm implementing a small subset of libc for very small and statically linked programs, and I figured that adding TLS support would be a good learning experience. I use Ulrich Drepper's TLS document as ...
3
votes
0answers
210 views
Segfault on calling standard windows .dll from python ctypes with wine
I'm trying to call some function from Kernel32.dll in my Python script running on Linux. As Johannes Weiß pointed How to call Wine dll from python on Linux? I'm loading kernel32.dll.so library via ...
3
votes
0answers
109 views
Hoard performance degrades severely when allocating large size chunks
I have written below sample program in 'C' which is dynamic memory intensive and tried to benchmark the same (in terms of time taken) for the 'glibc' default allocator versus Hoard allocator.
1 ...
3
votes
0answers
151 views
android emulator /proc/meminfo does not show the right value
I have an android application which enables some features only when the device has 512MB of RAM or more. This application reads the memtotal from /proc/meminfo (from Native C++ code) to determine the ...
3
votes
0answers
127 views
How do I translate the data returned by FIBMAP into LBA sectors of the disk?
I need to determine the sector range(s) occupied by a file on a disk device (for Linux). Let's assume it's a simple disk (no RAID) with MBR or GPT partition table.
I learned that I can get the ...
3
votes
0answers
833 views
Building GCC with glibc in a non-standard location without root
I have a system that I do not have root access to, but I need to install the current version of GCC (4.7.2) on.
The system is running an x86_64 build of Linux 2.6.18 and already has GCC 4.1 (without ...
3
votes
0answers
40 views
What is the difference between RES and PRES fields in linux procstat
Here is the peace of procstat output:
PID START END PRT RES PRES REF SHD FL TP PATH
36502 0x400000 0x45d000 r-x 77 0 23 11 CN vn ...
3
votes
0answers
247 views
Linux reboot() system call: why it calls do_exit(0) after kernel_halt()?
This is related to: http://stackoverflow.com/a/13413099/1284631
Now, the question is:
Why the reboot() system call, when called with LINUX_REBOOT_CMD_HALT parameter (see here: ...
3
votes
0answers
164 views
How to use RTLD_DEEPBIND when invoke implicitly?
Now i have 3 shared objects,A.so,B.so,C.so
A.c
void libA()
{
common();
}
B.c
void common()
{
printf("COME HERE B\n");
}
C.c
...
3
votes
0answers
219 views
SWT application crashes on sun java javaws on linux
I wrote small application using SWT in java and it randomly crashes with no error logged. This happens only on Ubuntu 10.04 with Sun Java 1.6.xx. Application runs just fine in Open-JDK on same ...
3
votes
0answers
359 views
interrupt in linux kernel
I have taken one gpio of my omap4 based custom board as input gpio. When I connect any external h/w on any port then input gpio gets pull down and I get interrupt on that gpio.
Now when I run Linux ...
3
votes
0answers
63 views
VM Player running Ubuntu only logs to guest session
I am running Ubuntu 12.04 on VM Player. Everything worked perfectly well, but all of a sudden, after launching, Ubuntu no longer logins with my username. Instead, I only have Guest Session. If I go to ...
3
votes
0answers
52 views
How to set max,count,active and inactive configuration in phusion passanger
I want to set below configuration in phusion passenger.
max = 6
count = 2
active = 2
inactive = 0
Waiting on global queue = 0
Can you please tell me where to set this.
3
votes
0answers
357 views
Reasons for high CPU usage in SocketInputStream.socketRead0()
While profiling homegrown web-application I came across following very strange (at least for me) observation.
Almost all time is spent in socketRead0() method of a SocketInputStream class. It's not ...
3
votes
0answers
996 views
ARM Cross Compile GLib 2.33.10, linker error
I'm a newbie and i'm working on Raspberry Pi. I've an issue with GLIB 2.33.10 cross compilation.
I've downloaded sources from site and all dependencies (zlib, ffi); dependencies have been built for ...
3
votes
0answers
665 views
Cross-compile to Linux from OS X
I want to compile binaries for a Linux server from an OS X 10.7 + Eclipse build system. This means a GCC cross-compiler. I'm starting from native 4.7.1 and shooting for a host 4.7.1.
Most online ...
3
votes
0answers
189 views
Retrieval of the error counters via TIOCGICOUNT returns always error (-1)
I have come across a show stopping problem when developing an interface application for a USB to RS422 converter module.
I need to retrieve the UART error counters for framing, overrun, parity and ...
3
votes
0answers
171 views
Problems with @Transactional and JerseyTest on Linux or Mac but not on Windows
We use jersey test with grizzly2 to run acceptence tests against mocked REST resources. On my windows machine everything's fine. But another developer with his Mac is getting the same error as our ...
3
votes
0answers
309 views
capturing sound from wine with TargetDataLine
I have written a small Java application for testing purposes that captures sound from a mixer on ubuntu 12.04.
The code works fine, I can capture sound from all applications except for anything ...
3
votes
0answers
103 views
Icecast triggers
I'm using icecast server + many butt clients to stream audio taken directly from pc microphones.
I would like to know if it does exists a way to execute a script when ANY mount point is added and not ...
3
votes
0answers
69 views
how to setup <Super> key bindings for eclipse
I'd like to setup some key bindings in eclipse (3.7.2) involving the key ("windows" key), but it doesn't seem to be picking up that modifier key when I press it. Why? What can I do so it detects it?
3
votes
0answers
141 views
How to make JavaFX 2 wrapper discover an existing installation on Linux systems?
Dealing with JavaFX 2-generated JNLPs, I discovered that JavaFX comes with an Ant task that creates a JAR with an integrated launcher.
On Windows systems, the launcher automatically discovers an ...
3
votes
0answers
1k views
ZFS on Linux, getting slow write?
Decided to give ZFS on linux v28 a go (native port ubuntu) on my 5x 2TB WD Green advanced format drives.
Created the pool using "zpool create -o ashift=12 raidz1 "
zpool status doesnt show anything ...
3
votes
0answers
222 views
Use PolicyKit to give my application access to restricted files
I'm writing an application for Ubuntu, which allows you to customize the Unity 2D desktop environment.
Some settings, I can change using Dconf, which is user-specific. So if one user changes a ...
3
votes
0answers
619 views
How to priotize packets using tc and cgroups
I am trying to prioritize the packets that are generated from a certain process group so that they'll be picked first to be transmitted from the PC. I aim to do this by using cgroups and tc, but it ...
3
votes
0answers
444 views
How do I read the pressure value from a graphics tablet stylus in Linux?
I am trying to add pressure sensitivity support to Synergy on Linux. I
believe the first step should be to detect the pressure value on the
server side. The stylus movement comes in as a MotionNotify ...
3
votes
0answers
165 views
Leaving Wordpress Core Files untouched shared between multiple blog installation
For many reasons I can't use the wordpress network solution.. I will have to maintain multiple wordpress sites on the same server and I'd like to share the core between them.
What I'd like to achieve ...
3
votes
0answers
567 views
tools/android returned can\'t find sdkmanager.jar
I am trying to use a web server (written in php) to build an android project (the server is Apache. The php script simply calls proc_open to start
"/vol1/android_sdk/android-sdk-linux/tools/android ...
3
votes
0answers
597 views
How to use “checkinstall” with Python packages that use “setuptools”
On Ubuntu/Debian I use checkinstall package when installing packages from source
sudo checkinstall make install
or
sudo checkinstall python setup.py install
My problem is that Python packages that ...
3
votes
0answers
476 views
How can I get nearby phone 's RSSI and Mac address under the same Ad-Hoc mode?
I have changed the some android phones to ad-hoc mode and let them have the same essid (by using command on each phone:"iwconfig .. essid XXX").In this way they merged in one ad-hoc network and can ...

