Linux - NewbieThis 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
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Ok i have downloaded some software on linux mint. When i open it i get 2 options: catalina_base and setenv.sh when i click on the 2nd option i get the following :
#!/bin/sh
# This script is used to setup the config to run the server / tomcat.
Im sure somewhere here is the code which i need to enter into the terminal to run/install this software but im not sure exactly which part i need to be entering any help please??
Thanks
That is the code. Open a terminal, cd to the right directory, and run "chmod +x setenv.sh; ./setenv.sh". Right now you're just opening the script in a text editor rather than executing it.
It looks like that script just sets up some variables. You might need to run catalina_base after running setenv.sh.
Last edited by suicidaleggroll; 05-04-2012 at 03:43 PM.
That is the code. Open a terminal, cd to the right directory, and run "chmod +x setenv.sh; ./setenv.sh". Right now you're just opening the script in a text editor rather than executing it.
You are correct, that is code, but will it accomplish what the poster is looking for? I don't think so. All that is doing to do is set some variables. That is file is sourced to set environment variables for installing Tomcat from source.
Thanks all for the quick response. So this isnt to set up what i want to then? I didnt want to install tomcat. I want to implement this software: http://www.oscarcanada.org/caisi here is the options i get from sourceforge: http://sourceforge.net/projects/oscarmcmaster/files/ i already have the "oscar" software but i need to implement caisi which is 5th down on the link i just gave. Not sure if it helps but there are other options in the file i downloaded in the "catalina base" i have the following options: conf, logs, CVS, temp, webapps & work!!
I'm not familiar with that software but from what you have said and the contents of that file it looks like it is a tomcat web-app that would be deployed on your server, this would require an existing install of tomcat. I tried to do some quick searching for installation documentation on the software vendors site and found this: http://www.oscarcanada.org/caisi/com...-documentation
No documentation at all, awesome. If the vendor does not supply installation documentation I very, very rarely will use it. It kind of implies(atleast to me) that its not a reputable piece of software.
Ok thankyou Kustom42. JUst one more question. Im new to Linux and have no idea where i find my server or any programmes etc which i download. Im used to windows and know how to find things there like get into my c drive look at recent downloads etc. and find their location how do i do this on linux mint please?
In Linux everything is a flat file, and without knowing how it was downloaded its impossible to tell you. However, if you know the names or part of the names of the files you are looking for you can use a find statement:
Code:
find / -type f -name "*.txt"
That would find anything on your system that is a regular file(-type f) that ends in a .txt extension.
Ok thankyou very much for your help it is appreciated. How easy would it be to access software on my linux pc server (im presuming i have a server since i have linux mint?!?) from my windows laptop? Ive been using teamviewer to do this but it requires me to have both pc's powered up.
The definition of a server is the usage of the computer. So that's kind of irrelevant. It sounds like you are just looking for an easy way to install it and access it. With Windows it's pretty much double-click, click next until it says its done. In Linux you have to do all the work that the 'next' wizard does for you.
Think about it like Windows is a Gameboy, throw any game in turn it on and it works but you are limited to what is already predefined and set. In Linux you have an erector set with all the pieces you need to make what you want; being able to put the pieces together correctly to achieve what you are wanting is where a lot people get frustrated and go back to using Windows.
Trying to install a third-party app in Linux where the software vendor provides no documentation is something that can stump even the most tenured of Linux users. My best solution to offer you is to reach out to the software vendor and get an install doc, once we have that info we can help get you through the instal process(if you need help beyond the doc).
To further illustrate my point. I am definately not a chef but I can pull out any Betty Crocker recipe book and follow the steps given. Same situation you are in here, you're not a linux guru(no insult intended, i'm definitely not a Guru either) but you would more than likely be able to get to where you are going if you had the steps.
If it were me I would contact the vendor and ask for documentation, if they can't provide it I would find an alternate software solution that does provide that and fits your needs.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.