Sponsored Content
Full Discussion: Manual software installation
Top Forums UNIX for Beginners Questions & Answers Manual software installation Post 302997478 by vy4kov on Sunday 14th of May 2017 03:14:24 PM
Old 05-14-2017
Manual software installation

Hi everyone,

As you probably have guessed from the title, I am totally new to the Linux world.

I am trying to get a program called Quantum to run. From what I could gather while reading on-line, programs in Linux usually come in packages.

It this case however, I only have the archive with an already installed program - basically just the folders and files. It's doesn't seem to work in this condition and there are no read-me or setup documents.

I wonder if there is a way to get it to work ?

I am using Debian 8 through VirtualBox.
Here is the software, in case someone wants to take a closer look. TinyUpload.com - best file hosting solution, with no limits, totaly free
After successful install, one should be able to run this command from the sub-folder /qttest/:
Code:
quantum run1 data

This is some installation guide I came across: www.wenku.baidu.com/view/b8e2e4bef121dd36a32d82c2


Looks like it's only for when you have the package installation. But maybe it can be useful somehow - it says they recommend to put everything in /usr/ directory.

Last edited by rbatte1; 05-15-2017 at 08:00 AM.. Reason: Removed textual numbered lists and set up URLs
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Software installation

I'm attempting to download gnu common lisp software on mac os x unix and having trouble with the ./configure command. It gives an error of: Unable to guess machine type use configure --enable-machine=XXX, for XXX such that h/XXX.defs exists, ie in h/386-bsd.defs h/FreeBSD.defs h/NeXT.defs.... ... (1 Reply)
Discussion started by: xaosai
1 Replies

2. Solaris

Software Installation

Hi All, I am new to Solaris Platform . I would like to know whether the machine on which I am working has Oracle9 installed on it or no? How do I proceed? Regards SONAL (3 Replies)
Discussion started by: sonbag_pspl
3 Replies

3. Solaris

Software Installation Help - Newbie

Let me start off by saying that I am by no means a unix person. I am tasked to install log4cxx on a brand new machine but it looks like we need the apr, apr-utils, libtool, make, autoconf, automake, and gcc packages just to install log4cxx. Our machine came with no c compiler so I couldn't build... (6 Replies)
Discussion started by: JohnRodey
6 Replies

4. AIX

Software Installation Problem

HI Everybody, I am a newbie of using AIX, would you mind telling me how to setup JOE and OpenSSH in AIX 5L 5.3. Thanks! Hugo (0 Replies)
Discussion started by: tknl
0 Replies

5. Solaris

Software installation help

Hi, I'm new to solaris basically, with a decent background in linux. But everything seems to have jsut enough differances to be problematic. two things i need answered are 1) How do i alter the network settings in Solaris 2.5.1? 2) how do i go about installing netscape (already got... (3 Replies)
Discussion started by: netstat
3 Replies

6. AIX

having problem with HDLM software installation

HI Guys, I have AIX 5.3 with TL05 ...I am trying to install HDLM 5.80/5.81 on this. Installed Hitachi.aix.support.rte file set. HDLM kept on installing ...it is not comming out .command status is "running" ============================================ Command: running stdout: yes ... (0 Replies)
Discussion started by: b_manu78
0 Replies

7. UNIX for Advanced & Expert Users

Software installation

Hi, Like Windows XP OS, when we will install a software it will go by default to C drive's Program file directory. So similarly if we will install the software in the Linux OS, where it will go by default ? (4 Replies)
Discussion started by: rajesh08
4 Replies

8. HP-UX

Software installation on HP-UX system

Hello, I work on an oil rig offshore with limited resources at my disposal at the moment. We have been trying to repair one of our IMS stations, but no one out here is familiar with UNIX and our ABB service rep is spotty at best. The machine is an HP 9000 running HP-UX 10.20. We are trying... (2 Replies)
Discussion started by: abollmeyer
2 Replies

9. Web Development

Your suggestion on Forum software installation

Hi all ! I will be very happy if I can get your valuable response, regarding forum software installation. Let me come to topic, In our institute we have planned to launch forum, which will be used by students and scientists, within intranet., I just gone through MyBB, PHPBB3 and fluxBB, which... (3 Replies)
Discussion started by: Akshay Hegde
3 Replies

10. UNIX for Dummies Questions & Answers

Error message while software installation

I got every time the same error leaving directory etc when i install any software. I put up the command and the error below, kindly help me out so i could proceed. csm@csm-HP-Z420:~$ cd Desktop/ csm@csm-HP-Z420:~/Desktop$ csm@csm-HP-Z420:~/Desktop$ cd microtar-0.9.6/... (8 Replies)
Discussion started by: harpreetmanku04
8 Replies
site-lib(5)							File Formats Manual						       site-lib(5)

NAME
site-lib - [Location of package directories] STANDARD LAYOUT
...somewhere in the filesystem hierarchy... | site-lib | +- (optional) stublibs +- (optional) postinstall +- (optional) postremove | +- package1 | | | +- META | +- archive files | +- interface definitions | +- package2 + : : packageN DESCRIPTION
Every installation of "findlib" has a default location for package directories, which is normally a directory called "site-lib". The loca- tion can be set by the configuration variables path (used to look up packages), and destdir (used to install new packages); see find- lib.conf. The name of a package is the name of the package directory. For example, if destdir=/usr/local/lib/ocaml/site-lib, the package p will be installed in the subdirectory /usr/local/lib/ocaml/site-lib/p. This subdirectory must contain the META file and all other files belonging to the package. Package names must not contain the '.' character. The variable destdir specifies the directory for new packages. You can only have one such directory at a time; but of course you can change this directory in findlib.conf. The command ocamlfind install puts new packages into this directory; it is recommended to use this command for installation because it ensures that the directory layout is right. For searching packages, findlib uses (only) the variable path which may name several locations to look at. For systems with DLL support another directory may exist: stublibs. If present, findlib will install DLLs into this directory that is shared by all packages at the same site-lib location. Findlib remembers which DLL belongs to which package by special files with the suffix ".owner"; e.g. for the DLL "dllpcre.so" there is another file "dllpcre.so.owner" containing the string "pcre", so findlib knows that the package "pcre" owns this DLL. It is not possible that a DLL is owned by several packages. If the stublibs directory does not exist, DLLs are installed regularly in the package directories like any other file. For special needs, a postinstall and/or a postremove script may be installed in the site-lib directory. These scripts are invoked after installation or removal of a package, respectively. ALTERNATE LAYOUT
...somewhere in the filesystem hierarchy... | site-lib | +- (optional) stublibs +- (optional) postinstall +- (optional) postremove | +- package1 | | | +- archive files | +- interface definitions | +- package2 + : : : packageN | metaregistry | +- META.package1 +- META.package2 + : META.packageN This is an alternate directory layout collecting all META files in one directory. You can configure this layout by setting path to the absolute location of metaregistry. Findlib recognizes that there are META files in this directory and uses them; it is not necessary to include site-lib into the path. In order to work, the META files must contain a directory directive pointing to the corresponding package directory that resides below site-lib. The command ocamlfind install copes with this layout, too. The variable destdir must contain the absolute location of site-lib, and the variable metadir must contain the absolute location of metaregistry. Note that ocamlfind install automatically adds a directory directive to the META file, so you need not do it manually. User Manual The findlib package manager for OCaml site-lib(5)
All times are GMT -4. The time now is 10:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy