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.
0
votes
0answers
6 views
Mount NFS on a remote host through a intermediate host
My scenario is:
hostA: /A_NFS/
hostB: hostA:/A_NFS/ on /B_NFS type nfs
hostC: hostB:/B_NFS/ on /C_NFS type nfs
hostA is reachable for hostB, but not reachable for hostC.
hostB is reachable for ...
0
votes
0answers
6 views
Input/Output error, files lost
Well i was copying files from the server, when i've got Input/Output error in Terminal and wasn't able to execute any command, even "sudo", after that our live website felt down. So we have restored ...
3
votes
0answers
15 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 ...
-1
votes
0answers
23 views
make sure one cpu has written a “double” before another cpu read that “double”?
I'm going to running one OS on a dual-core ARM cortex-A9 CPU (one core runs Linux ,the other one has no os).In the no-OS side we write a 64-bit double to ddr memory t,then Linux reads it.Because the ...
0
votes
1answer
19 views
how to read AT commands with c++ code in linux
I wrote the following code in which I am trying to send a message from a SM5100b GSM(which is connected to a Rasberry Pi) to my mobile. It is working but I can check the results of AT commands for ...
0
votes
2answers
10 views
how to add nameserver in resolv.conf
Guys i researched about how to add a nameserver in the file resolv.conf, i found this command in this site:
namerslv -a -i ip address
...
-3
votes
0answers
15 views
Deleted my root user folder, what should I do? [closed]
This is on my CentOS production site.
Just made the mistake of running a comand that deleted all files inside my /root folder (files inside root user home). I can still open another new ssh session ...
0
votes
0answers
5 views
AWS EC2 + VSFTPD?
I'm really new to AWS. How do i use vsftpd in my Redhat on AWS EC2 Instance with EIP/Elastic IP? I have setup vsftpd on this RHEL normally. And also have applied ports via EC2 Security Group.
On ...
0
votes
2answers
14 views
linux add another system admin
this is my first post in stackoverflow.
my questions:
1)i am root user in my linux system, i want to add another system admin and let him/her to help to do the admin job, what privilege should i ...
0
votes
2answers
71 views
How do you make python script run faster? [closed]
I noticed a big difference when I was running a script on pythonanywhere.com. The times were like 7-8 times shorter than running the same script on my PC and i want to understand why. I have Ubuntu ...
0
votes
0answers
6 views
Wkhtmltopdf - set footer font's staff
I use Wkhtmltopdf to generate pdf. Everything is good even with special font include by @font-face in CSS. Same method but don't influences footer font. Even --footer-font-name "Myriad Pro" or ...
0
votes
0answers
13 views
Execute command in jail
I'm using Jailkit. Is it possible to execute a command inside the jail and get the output (from outside) ? I did a lot of digging in the docs but unable to find anything.
1
vote
2answers
35 views
Exact grep -f command in Linux
I have 2 txt files in Linux.
A.txt contents (each line will contain a number):
1
2
3
B.txt contents (each line will contain a number):
1
2
3
10
20
30
grep -f A.txt B.txt results below:
1
2
3
...
0
votes
2answers
17 views
request_irq to be handled by a single CPU
I would like to ask if there is a way to register the interrupt handler so that only one cpu will handle this interrupt line.
The problem is that we have a function that can be called in both normal ...
-2
votes
3answers
41 views
java.lang.NoSuchMethodError: Graph: method <init>()V not found
I'm getting a confusing error in eclipse but not on our main server from the command line linux account. All code is in the main src directory, in eclipse. Code compiles at command line but produces ...
0
votes
1answer
9 views
not authorized for query on admin.system.namespaces on mongodb
i start a new mongo instance,and create a user,auth it,but when i run "show collections",system say the id is not authorized , i do not know why?
# mongo admin
MongoDB shell version: 2.4.3
connecting ...
0
votes
2answers
26 views
Get a unique file descriptor not associated with anything in the kernel in particular
I am looking for a way to get a unique file descriptor for a process that is not associated with anything in particular. It must be a unique integer number for which there will be no equivalent file ...
0
votes
1answer
25 views
how to deal with file's who's names are flags
I was wondering how to deal with files who's names are flags, like '-a', '-f' etc. I cant pass them as arguments to programs like rm or ls, because they are interpreted as flags, and doing rm * or ls ...
-2
votes
1answer
24 views
Kernel driver not installed (rc=-1908) [closed]
I have installed a virtualbox in my Crunchbang Linux OS and installed a WinXP in it. But now each time I'm trying to start the virtualbox, it gives me an error said : "Kernel driver not installed ...
0
votes
1answer
12 views
which octal value marks the start of a program in ubuntu/why?
I'm reading the somewhat dated (though still quite good) "The Unix Programming Environment" by Kernighan and Pike. On page 46, in a description of the "file" program, which guesses a file's filetype, ...
0
votes
0answers
14 views
mongodb do not write record to disk ,why?
i start a new mongodb instance and local connect use mongo shell,add a user with userAdminAnyDatabase role,but when i exit the shell,start another shell,i can not find
the record of db.system.user ...
0
votes
1answer
18 views
How compare two paired list in bash?
I'm trying to compare a remote md5sum result from some files into a server, with my local md5sum files and those that match, the hash and the filename should be removed from the local server.
The ...
2
votes
1answer
25 views
Is there a way to refer to multiple files in a directory without retyping the whole path?
In a bash shell, when I have to remove multiple files in the same directory, I currently need to do something like this:
rm /some/path/file1 /some/path/file2
Is there a shorter way to write this so ...
0
votes
0answers
20 views
Should I use 301 redirect or symlink for base site
I have the following shared hosting file structure:
myTLD.com/sites/ - contains add on domains: site1, site2 , etc
myTLD.com/public_html - contains : directory1, dir2 , etc
I have symlinked dir1 ...
0
votes
0answers
30 views
is uncached memory always contiguous?
I am trying to understand the internals of cached and uncached memory from linux perspective.
Is an uncached memory always contiguous? How does the linux handle internally between the cached and ...
-1
votes
0answers
13 views
how to drop idle connection with iptables or linux [closed]
How to drop idle connection with iptables or whatever tools used to do the job.
im building captive portal, i want to drop the connection or the session if idle.
Thanks.
Hadi.
-1
votes
0answers
11 views
how to remove dropbox from centOS 6.4 [closed]
Can someone please tell me how to stop dropbox from trying to start as my users log in or remove it from centos 5.4
If I do
yum remove dropbox
I get this error
No Match for argument: dropbox
...
-1
votes
0answers
29 views
What is exactly is a file listed as null?
I do an ls inside a directory (it is under git if this makes any difference) and I see a null listed as a file.
What is that? Can I safely do an rm null?
I suspect this has been created after I run ...
0
votes
0answers
14 views
How to import/export repo from SVN to new SVN
I have an old Subversion on one server, and another new one on another server.
I would like to export the head revision from the old repo and import it into the new one.
I have tried the below which ...
0
votes
0answers
13 views
Kernel module with multiple files - unknown symbol
Hello stackoverflowers :)
For the last several hours I've been trying to compile+load a multiple file module. The compilation emits a strange warning and the module fails to load. Here are the ...
0
votes
0answers
11 views
Loading GAMS Java API in JRuby
I'm working on a Java/JRuby project which needs to be able to be able to interact with GAMS. I know we can use the Java API, but I would really like to be able to access it using JRuby if possible, ...
0
votes
1answer
9 views
BLKRASET: Inappropriate ioctl for device
I'm receiving this error
BLKRASET: Inappropriate ioctl for device
when trying to run
sudo blockdev --setra 256 /data
on my Linux server. The server is being used as a MongoDB server and ...
0
votes
1answer
47 views
what error it is?python scrip linux
the program get the ls directory list print the index of the items,then ask select one item, and print the item but i get this error:
./directory.py
from: can't read /var/mail/subprocess
...
0
votes
0answers
10 views
Mono - hide minimized Windows Form
I have a problem with Windows Forms application development under Mono/Linux. Application has a tray icon, which, when clicked, can Show() or Hide() main window. The problem is, that hiding (or ...
1
vote
1answer
19 views
pipe or send strings with socat/netcat with a pause
i capture unbuffered codes from ttyUSB0 as an string though hexdump'ing
/usr/bin/stdbuf -o0 /bin/busybox hexdump -v -e '12/1 "%02x" "\n"' /dev/ttyUSB0
with example-output like this (without ...
0
votes
0answers
27 views
Overhead of Tmpfs mounting
I have a website in the makes that runs C/C++ programs. Right now, every user has their own directory for projects. But since I've decided to use another site to store their files (I'm thinking ...
1
vote
0answers
25 views
Atomicity for Unix Domain Socket
This question is similar to Atomic write on an unix socket? but that did not quite provide an answer.
This is Linux kernel 3.6.11 on the Raspberry Pi (ARM arch).
I have vendor supplied code with a ...
0
votes
1answer
31 views
Use Python to Access Battery Status in Ubuntu
I am trying to come out with a small python script to monitor the battery state of my ubuntu laptop and sound alerts if it's not charging as well as do other stuff (such as suspend etc).
I really ...
-1
votes
0answers
17 views
Configure Clock on different port other than port 80 in CentOS [closed]
I installed CentOS 6.4 & noticed that port 80 is being used by Clock application
[root@l-22733-p11 logs]# lsof -i tcp:80
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
clock-app ...
0
votes
1answer
26 views
org.postgresql.util.PSQLException: Connection refused
I wanted to test execution of function of an indexing from other host because this function not absolutely correctly fulfilled in hadoop to the program. But I had problems with connection to a ...
-1
votes
0answers
23 views
Close a specific Chrome tab in Ubuntu/Linux using terminal command [migrated]
Is there a way to close a specific Chrome tab with a terminal command? I tried below commands:
kill -9 <pid of Chrome tab>: Instead of closing a tab, it kills the tab ("He's dead Jim" message ...
0
votes
1answer
35 views
Process crashes while checking string recived from other process
I making a some kind of project. Program need to create 3 processes.
1st one is getting a string from user, the model is: 'number1+number2+..+numbern'. After that it send string to 2nd process.
2nd ...
-1
votes
0answers
17 views
Mainboard MSI C847MS-E33 incl. Intel® Celeron® 847 [closed]
I do not know whether I am right at this place but maybe you can help me.
I am planning a realtime automation application on Linux using RTAI or RT PREEMPT. The distribution is openSUSE or Ubuntu. I ...
0
votes
1answer
17 views
Autotools: create a 32-bit and 64-bit library with a single makefile?
I am trying to convert a project to autotools. My project consists of a program and a library. The library is not linked with the program. Instead, the library will be linked with other programs to ...
1
vote
1answer
14 views
Shebang line in script on NFS mount on Linux client doesn't seem to work [closed]
Here is our test script...
#!/bin/bash
echo "Hello World"
It is on an NFS share that is mounted on a Linux client. If we call the script like this:
./testscript.sh
then we get this:
sh: ...
0
votes
0answers
11 views
ZwAllocateVirtualMemory equivalent in linux
anybody know how the equivalent for ZwAllocateVirtualMemory in linux ? I want a linux device driver to allocate virtual address space in a process.
1
vote
6answers
46 views
linux bash, print line contaning string in a column
let's say my file /etc/passwd contains
ntp:x:38:40::/etc/ntp:/sbin/nologin
avahi:x:70:70:Avahi mDNS/DNS-SD Stack:/var/run/avahi-daemon:/sbin/nologin
haldaemon:x:38:68:HAL daemon:/:/sbin/nologin
...
0
votes
1answer
30 views
Efficient way of obtaining process information?
I have looked at procps. I was wondering if there are any major advantages to using procps-ng instead. I am also open to suggestions for any other library that performs similar tasks.
2
votes
0answers
38 views
C++ exception support in linux kernel module
In 2005 Dr Dobb's magazine published an article about patch for linux kernel. The patch pretended to allow Itanium C++ ABI in kernel space. The patch was not accepted.
The code disappeared from the ...
1
vote
1answer
37 views
packet sending in low speed in linux
recently working on a project which is to forward packets in a high rate (more than 500Mbitps). I have tried 2 methods, but they don't work.
The host is a vm, ubuntu-11.10 32bit, the nic is r8169, ...


