General :: Installing A .tar.gz File - How To Get A Working Program From The .tar.gz File
Apr 22, 2010
I am running Ubuntu 9.10 and had hoped to use Synaptic to find and install Truecrypt. As Synaptic couldn't find it I downloaded it from [URL]. In case it helps the file is called "truecrypt-6.3a-linux-x86.tar.gz". Apart from not knowing how to get a working program from the .tar.gz file, I don't know whether the installation process sorts out where the file should go and puts it there, or whether I have to create a directory for it and put it there myself.
View 11 Replies
ADVERTISEMENT
Jul 22, 2011
I am trying to write a bash script that installs a program fully automated for me. I am stuck at the one part where i need to change a line in one config file. I have tried various syntax for sed and none have worked. Maybe someone can suggest how to go about this. Since the line appears in the middle of the file, I can't use echo or cat. Also the file will be diffrent lengths depending on the install.
The line I need changed is:
I need that changed to:
the last syntax i tried is:
Yes this is for PNP4Nagios on centos 5.6 64bit. If i can get this figured out. I will be willing to post the whole thing for others to use. it will be used to install PNP after a working nagios install is done.
View 11 Replies
View Related
Apr 22, 2011
where can i get socket.h header file? will copy pasting this header file in 'incl' directory allow me to use it in the my program?
View 1 Replies
View Related
Feb 8, 2011
I opened a text file and read some stuff. Then I (think) I closed it. Then I tried to open another one and it stopped working. It seemed to compile fine though. Why would this be?
Code:
#include <iostream>// Libraries included
#include <string>
#include <fstream>
#include <sstream>
#include <list>
[Code]....
View 3 Replies
View Related
Mar 8, 2011
How do I create a program file for a new program?
View 1 Replies
View Related
Apr 14, 2010
Is there any program/script that can create a torrent file for each file in a directory? I have been looking all over but can't seem to find anything of the sort. I have 700+ files I REALLY don't want to make my self.
View 1 Replies
View Related
Mar 15, 2010
I'm new to Ubuntu . With windows when you install a app it creates a folder in the drive:c under programs : Where is the install folder on Ubuntu ? AND ' with windows ' there is an exe file ' what type of file is like the exe file''' to run ? or the path to run the app ?
View 3 Replies
View Related
Jul 22, 2011
I have downloaded DavMail and its currently living and running from my /home/user/Downloads/DavMail
in this folder is
davmail.jar
davmail.log
davmail.sh
Lib/
[Code]....
I need to put davmail in a better location than downloads but am unsure where to put it, Im guessing if I seperate some of the files/folders such as lib ill have to modify the davmail.sh file.
wheres the best location to keep this or should it remain in my home folder, I was going to put this in
/usr/local/bin
/usr/local/lib
But the jar count as a binary? the .sh certainly wouldnt.
View 2 Replies
View Related
Dec 17, 2010
Write a program in any language you choose, to reverse a file.
View 8 Replies
View Related
Mar 4, 2011
My midterm instructions are in mth format. I wouldn't even know what program to use to open in Windows. The actual midterm itself is an htm file. I need help ASAP.
View 11 Replies
View Related
Mar 3, 2009
I have custom software that writes to a sensitive large file when the user does something. I would like to make backup copies of The file that gets written to, but if I make a gzip of the file at the same time someone is changing something, it will corrupt the backup because some of the data will be missing, as its backed up during being written to.
a) Is there a way to detect if a file is currently being accessed/written to?
That way if its currently being accessed, I can just make the script wait until its done and then finally back it up.
b) Instead of backing up the large file while it has potential to get written to, would it be better to make a copy of the file first, then gzip the copy? This idea comes from the fact that gzipping the original takes 5-10 seconds, whereas making a copy only takes 1-2 seconds. The less time, the less chance of corruption.
c) Is there anyway to freeze a program or a file to stop it from being written to for an amount of time?
With a, b, and c together. The best solution I have to my problem would be a script that first detects rather the file is being accessed. If not, it would then freeze the file/program and then make a quick copy of it. Once the copy is created, it will unfreeze the original file/program and then go about gzipping the copy.
View 3 Replies
View Related
Dec 21, 2009
How Do I make a file a executable program ?
View 3 Replies
View Related
Feb 27, 2011
Im trying to run a program but my system won't let me.i used to be able to run executable files without a problem but i can't anymore when i double click the file i get "there is no application installed for executable files" i am unable to check "allow executing file as program" in file properties there is a script file which runs the program but all i get from the terminal is "permission denied"
View 14 Replies
View Related
Jun 29, 2011
I'm using Ubuntu and I'm programing with eclipse CDT. My goal is to execute a php file and read the output to my c++ program. To do so I thought I should use fork(), dup2() and execl. When in shell, the call "php myscript.php" worked just fine, but when in c++ I tried:
execl("usr/bin/php", "php", "home/geiger/workspace/SemiServer/server_content/myscript.php", NULL);
And it didn't work (the process wasn't terminated and I got no output). I tried different version of this call, like losing the "php" string and/or drop "home/geiger" from the path string, to no better result.
View 1 Replies
View Related
Jun 8, 2010
i am new in tcp/ip.i want to write a program using c for file transfer where FTP client and FTP server will be used.and also this program should work for ipv4 as well as ipv6.and muiltple client can be connect simultaneously.i dont know how to start program.should i use shell script or socket programming for file transfer?can we use FTP client and FTP server in socket programming?
View 2 Replies
View Related
May 17, 2010
A bunch of my .rtf files suddenly (within the last few days, not sure when) have the "Allow Executing File as Program" box checked under their file Permissions. So whenever I try to open an rtf document, it asks if I want to run it. What's up with that?
View 3 Replies
View Related
Apr 6, 2010
i have generated .exe file from C file (ie filename.c ) after compiling in linux machine with -O option. I wish to know about how to run that .exe file when linux system starts up ?
View 3 Replies
View Related
Dec 2, 2010
I have a number of uncompressed audio files recorded off of an analog (POTS) telephone line of fax transmissions. Is there a Linux utility or library I could use to convert these files into images of the fax they contain? I'm not looking to send/receive a fax via a modem, but just to "replay" the communications tones and parse out the fax message.I'm guessing this may not be possible due to duplex issues and not knowing which end of the conversation is sending what,but thought I'd ask to see if anyone knew of something.
View 4 Replies
View Related
Feb 26, 2011
I have Windows XP as an ISO file on a USB stick and want to make it bootable.Which Linux software do you recommend for doing that?
View 4 Replies
View Related
Feb 24, 2011
I am trying to install a program and it spews out an error about the .obj/matrix.o file. The output is quoted here:
[code]...
The program I was trying to install is a robot simulator which performs lots of matrix manipulation and linear system solving. I followed every step in the installation guide, except for this one:
[code]...
View 14 Replies
View Related
May 11, 2010
I had Ubuntu for awhile, now I installed Fedora12, I'm trying to follow directions to install a program from source code (tar.gz file) I have the February 2010 issue of Linux Format, and am trying to follow it step by step. I copied gnurobbo off their disk to my desk top, which copied it. Then I did the cd command, then I did the ls command and it didn't show me anything but a line saying desktop and a few other things like pictures movies etc. so I did cd gnurobbo-0.64 and it says no such file. I have been trying this for a few times and I think I'm going crazy.
View 3 Replies
View Related
Nov 7, 2010
I want to convert fdf file to xsf file or xyz file on ubuntu 9.10_32 bit .
View 5 Replies
View Related
Jun 14, 2011
When I'm doing an installation, I select the installation from CD/DVD option for CentOS, but then I don't know how to specify that it should use an anaconda-ks.cfg file that is either on a USB key (or on a Samba network share).
How could I install using the installation DVD, as well as a kickstart file that would specify which packages to enable and other installation settings?
View 5 Replies
View Related
May 12, 2010
I have a complete back-up file (on tgz) of a hardisk. I have already installed a SuSe Linux system on my computer. Can someone please provide a step by step procedure on how to install this back-up files?
View 10 Replies
View Related
Nov 2, 2010
I recently purchased a VPS based on CentOS 5.5 and only CentOS is available, One of the problems I have is that I have no experience with this distro at all. I want to install FlexGet [URL] but it depends on either Python version 2.5 or 2.6 which my install has version Python 2.4.3 installed. Now after doing some reading I have seen many post saying if I upgrade Python system wide It may break something else that is needed, and to install it side by side with the older version of Python and point the application to that specific version of Python it needs. The only problem with this is that I haven't got a clue how to do this.
So I was wondering if anyone could put together a very noob friendly guide for me to get the newer Python build installed side by side with the current one and then help me configure FlexGet from the .egg file it comes in installed using the newer version of Python it needs.
View 1 Replies
View Related
Jun 22, 2010
I am installing one software (pwDesktop [url])
I am using ubuntu 10.04
I am following these stapes:
But it saying there is no such file or directory.
View 12 Replies
View Related
Jan 15, 2010
Ok so Basically i have 2 questions
1. i know how to create a file with c++ using but is there a way to save it to a specific location on your computer with windows and linux
Code:
2. i need to know how to run/execute/open a file in a c++ program im using and its not working
Code:
View 4 Replies
View Related
Feb 23, 2011
Is there already a program that reads multiple pipes or file descriptors and writes to the standard output (not splitting lines).Like cat, but reading all files simultaneously and preserving lines.It is needed to avoid coding of select/epoll loops or using multithreading in simple programs. Like "select loop for bash".
View 1 Replies
View Related
Feb 17, 2011
I am trying to install rails 3.0.1 on ubuntu 10.10. I am getting this error towards the end when i execute this command sudo gem install rails --version 3.0.1.
View 1 Replies
View Related
Apr 13, 2011
I downloaded the easyids.iso file. Put it on a usbkey tried to boot with it, it didn't work. I put the .iso on a cd and I have the same problem. why can't I boot with the iso?
View 5 Replies
View Related