Search Result
Collapse
55 results in 0.0049 seconds.
Keywords
Members
Tags
-
Install windows service on a linux machine
I've a windows service. I want to install and use on a linux machine. How to install and how to do the start and stop actions in linux machine? -
ImportError: No module named Scientific_netcdf
I am using Ubuntu on server and on my local machine. I have written my python script which runs fine on my local machine but shows some problems on my server because of compatibility issues. The solution of this came in my mind is to make binary file of that script which is running fine on my local machine. I searched for pyinstaller and follow the instructions for how to make binary from python script. For this reason I firstly install pyinstaller... -
IndexError: narray: index out of range (While working with Ocropus)
I am working with ocropus for the purpose to binarize and segments the unsegmented images. I use command to binarize the image files by ocropus as
Code:ocropus-binarize -o book /home/images/*.tif
Code:File "/usr/local/bin/ocropus-binarize", line 151, in <module>
-
Sending and Receiving a struct over TCP Socket in Linux
hi Mates,
First of all thanks for this wonderful Programmers Community.
Recently i started to learn Socket Programming. i have some doubts, hope u ppl will clarif them.
i am trying to code a C program for sending a struct over TCP Socket in Linux!
The code is as follows:
Code:/* ** sravan_server.c - a stream socket (TCP) server Program */ #include <stdio.h>
-
Issue parallelizing this c code with openmp
How can I parallelize this code with OpenMP?. The result I get is not correct.
I try to use temporary variables p1aux, p2aux, and psumaux because the Reduction clause cannot be used with pointers or intrinsic functions. But as I said the result is incorrect.
When I say "result is not correct", I would say: The calculations of array1 + array2 are stored in the matrix sumsse. The calculations are correct until... -
Memory management for Large dataset in python
Hi Everyone,
I am working on Latin dataset and I am supposed to read all the data from ~30,000 files. What i did was, I opened and read the file and written file contents in separate one file (say Master.nc) and then close the individual files. But Master.nc will not close unless to read the last file.
I need Master.nc file at the end having the content information of all ~30,000 files.
My program is... -
thelionheart started a topic Which is best for Server Administration? Ubuntu Linux Vs Red Hat Linux Vs Fedora Corein SecurityWhich is best for Server Administration? Ubuntu Linux Vs Red Hat Linux Vs Fedora Core
i just wondering if i will build a server
which of these linux flavors would i choose? -
how to read x y position of touch screen in linux
HAi
I want to read x y position of touch in touch screen and it has to be used in c program on linux. What library is available in linux. Is it possible to read from linux diver ? if yes then how it is possible.
Thank you -
Shell script for file content manipulation
Hello there, i'm a newbie for linux and need some help with a script. Basically what i need to do is;
Below are links for pdfs to be opened and the links change dynamically as new content gets in
ORIGINAL FILE CONTENT FORMAT
---------------------
test1.pdf?123xy z
test2.pdf?345xy z
test3.pdf?456xy z
FILE CONTENT FORMAT I NEED
--------------------
test1.pdf
... -
Bad variable error while using arrays
when i read values from user in an array, It displays Bad Variable error.
code is given below.
Code:count=0 while [ $count -lt $n ] do read arr[$count] count=`expr $count + 1` done
-
Tired of reinstalling
I have a quick question. When my system crashes (Arch linux) I hate the fact I have to reinstall everything again. All the DE, Login Manager, browser bookmarks etc.
Is there anyway I can make an iso file of my system (including all partitions etc) and put it on a CD, and when my system crashes, all I need to do is put the CD and it will install everything back again?
Thanks in advance -
Xinetd not installed
Hi all,
In work I have been tasked in setting up a RedHat Enterprise Server that should be acting as a reverse proxy.
The problem is that we got a 3rd party to install it and asked them to set up Apache, Samba and VNC. Just now we are using the ILO to get access but I want to setup a VNC clint to access the server but when i configure the server I can't restart the xinetd services as it says it is unrecognised.
... -
Saad Bin Ahmed started a topic AttributeError: 'module' object has no attribute 'getElementsByTagName'in PythonAttributeError: 'module' object has no attribute 'getElementsByTagName'
Hey,
I am using Ubuntu10.04 with python 2.6 on 64bit system,
I want to run xml file but it stucks with an error as mentioned below.
File "online_xml.py" , line 60, in readStrokes
strokes = dom.getElements ByTagName("Stro ke")
AttributeError: 'module' object has no attribute 'getElementsByT agName'
Please suggest me about the possible error that may have.
Thanks... -
Problem in Installing SRILM package
Hey,
Dear dudes I am facing problem while installing SRILM package to my Ubuntu 10.04 64-bit platform.
The things I have done so far are
1. I download the srilm package from http://www.speech.sri.com/projects/srilm/download.html
2. I unzip this package and type srilm$make World
It was showing me an error and was searching common directory in src directory, but common directory is in srilm root directory... -
Segmentation Fault
Hello,
I got segmentation fault error due to problem in following code. If somebody knows how can I write it another way then please share it.
const DOMElement* netElement = (DOMElement*) rootNode->getElementsByT agName(XMLStrin g::transcode("N et"))->item(0);
When I removed ->item(0) at the the end of above mentioned code then segmentation error removed but program Aborted during execution....