LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-31-2015, 09:55 AM   #1
jkirksey1889
Member
 
Registered: Oct 2015
Posts: 36

Rep: Reputation: Disabled
Binaries question


Step 2: Download the binaries in zip format for the latest Unicenta oPOS Software from this page. In Ubuntu or Linux Mint, the default download location path is /home/your-user-name/Downloads.

http://sourceforge.net/projects/unicentaopos/files/

From that p[age can you tell me which files are the binary files in zip format?

Thanks.
 
Old 10-31-2015, 10:20 AM   #2
berndbausch
LQ Addict
 
Registered: Nov 2013
Location: Tokyo
Distribution: Mostly Ubuntu and Centos
Posts: 6,316

Rep: Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002
I don't even know how to spell Unicentaopos, but perhaps
Quote:
Download unicentaopos-3.91.2-windows-installer.exe (94.5 MB)
Alternatively there is a directory named binaries under releases.

There is also a forum, where you can ask questions.

Last edited by berndbausch; 10-31-2015 at 10:23 AM.
 
Old 10-31-2015, 10:22 AM   #3
jkirksey1889
Member
 
Registered: Oct 2015
Posts: 36

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by berndbausch View Post


Alternatively there is a directory named binaries under releases.
Got it. Thanks
 
Old 10-31-2015, 10:27 AM   #4
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
You need to click on releases then binaries to see the binaries in zip format.
There is also a .run version, which is intended to be self installing, but might require jumping through some hoops on Ubuntu.

Edit - Waaayyy too slow.
 
Old 10-31-2015, 10:51 AM   #5
berndbausch
LQ Addict
 
Registered: Nov 2013
Location: Tokyo
Distribution: Mostly Ubuntu and Centos
Posts: 6,316

Rep: Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002
Quote:
Originally Posted by allend View Post
Edit - Waaayyy too slow.
beat ya
 
Old 10-31-2015, 11:02 AM   #6
jkirksey1889
Member
 
Registered: Oct 2015
Posts: 36

Original Poster
Rep: Reputation: Disabled
jason@jason-P55-USB3:~$ sudo cp ~/Downloads/unicentaopos-3.91.2-binaries.zip /usr/bin
[sudo] password for jason:
jason@jason-P55-USB3:~$ sudo unzip unicentaopos-3.91.2-binaries.zip -d /usr/bin/unicenta
unzip: cannot find or open unicentaopos-3.91.2-binaries.zip, unicentaopos-3.91.2-binaries.zip.zip or unicentaopos-3.91.2-binaries.zip.ZIP.
jason@jason-P55-USB3:~$


Using these instructions, to the point I'm at, I appear to be doing something wrong.

Step 1: Install Java JRE in Ubuntu by launching a terminal (ctrl+alt+t). Then enter the following command and hit enter key.

sudo apt-get install openjdk-7-jre

You need to type in your users password or admin password for this. Hit enter key after typing your password and youll be asked if you wanted to continue, press y key to continue with the installation.

If you ask how to check if Java is installed on Ubuntu Linux (Java JRE)?, then just type which java in your Ubuntu terminal. It should output /usr/bin/java.

Step 2: Download the binaries in zip format for the latest Unicenta oPOS Software from this page. In Ubuntu or Linux Mint, the default download location path is /home/your-user-name/Downloads.

Step 3: After downloading the ZIP file, copy the file to /usr/bin/. To do this, open a terminal (ctrl+alt+t) and type in sudo cp ~/Downloads/unicentaopos-xxx.zip /usr/bin/. Substitute xxx with the version number of your downloaded Unicenta ZIP file.

Extract the downloaded Unicenta ZIP file.

How to extract the zip file in Ubuntu? To extract the ZIP file, switch back to your terminal and type in sudo unzip unicentaopos-xxx.zip -d /usr/bin/unicenta/

Step 1 is done, step 2 is done, step 3 appears to have went successfully, but I cannot get step 4 to work.

EDIT: Not step 4, haven't gotten there yet. The 2nd part of step 3 is my problem.

Any ideas?

Last edited by jkirksey1889; 10-31-2015 at 11:04 AM.
 
Old 11-01-2015, 02:38 AM   #7
berndbausch
LQ Addict
 
Registered: Nov 2013
Location: Tokyo
Distribution: Mostly Ubuntu and Centos
Posts: 6,316

Rep: Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002
Quote:
Originally Posted by jkirksey1889 View Post
jason@jason-P55-USB3:~$ sudo cp ~/Downloads/unicentaopos-3.91.2-binaries.zip /usr/bin
[sudo] password for jason:
jason@jason-P55-USB3:~$ sudo unzip unicentaopos-3.91.2-binaries.zip -d /usr/bin/unicenta
unzip: cannot find or open unicentaopos-3.91.2-binaries.zip, unicentaopos-3.91.2-binaries.zip.zip or unicentaopos-3.91.2-binaries.zip.ZIP.
jason@jason-P55-USB3:~$
You need to go to /usr/bin for this to succeed:
Code:
cd /usr/bin
sudo unzip unicentaopos-3.91.2-binaries.zip -d /usr/bin/unicenta
I wonder who wrote these instructions; they are horrible - you never put files in /usr/bin, except executables. Not your fault though.
 
Old 11-01-2015, 06:32 AM   #8
jkirksey1889
Member
 
Registered: Oct 2015
Posts: 36

Original Poster
Rep: Reputation: Disabled
https://chubbable.com/installing-uni...nux-or-windows
 
Old 11-01-2015, 08:02 AM   #9
berndbausch
LQ Addict
 
Registered: Nov 2013
Location: Tokyo
Distribution: Mostly Ubuntu and Centos
Posts: 6,316

Rep: Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002
Quote:
Originally Posted by jkirksey1889 View Post
Thanks. I left a comment there.
 
Old 11-01-2015, 10:12 AM   #10
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Generally it is not recommended to install by hand into /usr/. All packages there should be managed by package manager. When installed manually it should go to /usr/local/, it is much easier to manage it there, perform upgrades, remove if necessary. Most elegant solution is to create a deb or rpm package of out-of-repo software and install it using your package manager.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Question about executables/binaries Driverman Linux - General 11 06-17-2013 06:59 AM
[dead question] Unstripped binaries? FeyFre Slackware 13 03-31-2012 07:53 AM
question about different checksum of binaries marozsas Linux - Security 8 08-23-2010 12:38 PM
Yum & "Core Binaries" Question The00Dustin Linux - Software 2 09-26-2006 11:15 AM
question about installing binaries correctly jimjamjahaa Linux - Software 4 05-11-2006 02:09 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:45 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration