Sponsored Content
Full Discussion: Manual software installation
Top Forums UNIX for Beginners Questions & Answers Manual software installation Post 302997727 by vy4kov on Thursday 18th of May 2017 02:17:45 PM
Old 05-18-2017
Hi folks,
I realize that I may not have given enough information to get any help with this.

The program I am trying to start is called Quantum and is used in market research. The last version is from 2000 year or so - it is no longer supported.
I have seen it run under Ubuntu. I think the fact that I am using Debian should not be an issue?

I tried this commands in the /bin folder of the program:
Code:
chmod u+x quantum
chmod u+x *.*

Now I am getting this error

Code:
[ UNIX QUANTUM - Version 5.7 (1252) ]
./quantum: line 166: /bin/quantall: no such file or directory

I checked and file quantall exists in the same directory.

I found two hidden files, that I think are somehow connected to being able to run the program. I am pasting the contents:

Code:
# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
	. "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi


Code:
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
	. ~/.bashrc
fi

# User specific environment and startup programs

QTHOME=/usr/qtime/qt/v5.7
QVHOME=/usr/qtime/qt/v5.7
PATH=$PATH:$HOME/bin:$QTHOME/bin

export QTHOME PATH

 

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 07:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy