LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Difficulty installing a program (https://www.linuxquestions.org/questions/linux-newbie-8/difficulty-installing-a-program-4175528116/)

Oddi 12-12-2014 04:27 PM

Difficulty installing a program
 
I have downloaded a program, Wordfast Pro from the internet, but cannot install it. I currently have three files in my downloads file. They are Wordfast_Pro_3.4.2_32-bit and Wordfast_Pro_3.4.2_32-bit.tar.gz

It cannot be found in the Ubuntu Software Centre.

I have tried sudo apt-get install Wordfast..... for both files, and I get E: Unable to loate package Wordfast......
E: Couldn't find any package by regex "Wordfast........

Could anyone please advise me on how to proceed?

schneidz 12-12-2014 05:54 PM

not sure what it is but judging by the name is it a word processor. most people tend to use libre-office or open-office
Code:

sudo apt-get install libreoffice
sudo apt-get install openoffice

if you need that specific program then perhaps the company provided a readme or something in their tarball. the usual way to install programs not found in the package manager would be:
Code:

./configure && make && sudo make install
ymmv.

John VV 12-12-2014 06:02 PM

you are aware you HAVE TO PAY for this NOT free software
it is CLOSED SOURCE

http://www.wordfast.com/store_download.html

and that tarbal is a PREBUILT BINARY


that tar ball dose NOT extract to a folder called "Wordfast_Pro_3.4.2_32-bit" it extracts to a folder called "wordfast"

did you even read the website's documentation
http://www.wordfast.com/Support_Documentation

or bother to read the USER MANUAL !!
--- pdf warning ---
http://www.wordfast.com/sites/defaul...User_Guide.pdf

michaelk 12-12-2014 06:22 PM

True, but it is a full functioning trial version. I didn't read the PDF...

It is a language translation tool.
http://www.wordfast.com/products_wordfast_pro

A quick look at the online documentation did not find any installation instructions for linux. I assume that that there will be a read me file once you expand the downloaded file.

Only applications that have been preconfigured to run will be available in the software center. Programs that you download like wordfast that are in a tar.gz format are typically source files that have to be compiled for your system.

To extract the file in its current directory:
tar -zxvf Wordfast_Pro_3.4.2_32-bit.tar.gz

Hopefully there will be a directory created where you can then look for a readme or similar file that includes the instructions.

Oddi 12-13-2014 04:19 AM

I tried ./ configure..... for both files, and it came up as no such file or directory.-z

I put into command line Name:~ -zxvf Wordfast_Pro_3.4.2_32-bit.tar.gz
It replied -zxvf command not found

jdkaye 12-13-2014 05:05 AM

Quote:

Originally Posted by Oddi (Post 5283968)
I put into command line Name:~ -zxvf Wordfast_Pro_3.4.2_32-bit.tar.gz
It replied -zxvf command not found

You forgot the tar. The command should be this:
Code:

tar -zxvf Wordfast_Pro_3.4.2_32-bit.tar.gz
This command will only work if you are in the same folder as the one for Wordfast_Pro_3.4.2_32-bit.tar.gz. The contents will then be extracted to this same folder.
jdk

Oddi 12-13-2014 05:53 AM

Thanks, I will try it.

schneidz 12-13-2014 10:02 AM

maybe post the contents of the directory and maybe someone will have a clue as to what to do with it (output of ls -al).

since this is fairly non-standard perhaps contacting the company will yeild the best support ?

manu-tm 12-13-2014 10:46 AM

Just checked and it seems there isn't anything to install. *If* you trust the vendor, you run the program with a double-click on the binary, or from command line.


All times are GMT -5. The time now is 06:00 AM.