Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
All I see when I go to the Eclipse download page is 32bit and 64bit so just for windows. I'm new to Linux and would like to move gradually to it. Will I be able to use Eclipse on it?
Yes.
http://www.eclipse.org/downloads/?osType=linux
You might be accessing from a Windows machine. For Linux download from here
you can install it from wither the package manager on your distro or from the command line using sudo apt-get install eclipse or sudo yum install eclipse, depending on whether your distro uses apt or yum.
There's a dropdown where you can select alternate platforms - http://www.eclipse.org/downloads/?osType=linux when you select Linux from the list.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I just installed Fedora 20 on my laptop.
I've never been the Administrator of a Linux machine and so...I don't know how to install application on it! :D
Could you please help me ?
I tried using some command like :
sudo apt-get ....
But it fails because something is not installed, and I also tried to use the new software center, but there are no applications inside, I can only see some squares with 3 points inside them and that's all.
I just started using Linux, so I'm sorry in advance if I'll make stupid questions!
Thank'you all!
You need to type: sudo yum install "whatever without parenthesis".
Or, switch to the root account and you won't have to type sudo in front of everything.
You can use yum install application to install softwares on Fedora also refer http://www.wikihow.com/Install-Software-in-Fedora for your reference
On Fedora 22, it seems the app for managing software is no longer yum, but dnf. So, first update by running dnf updateinfo and then run gnome-software which is a GUI, or dnf search <something>.
dnf search java
dnf install java-1.8.0-openjdk
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I want to use OpenCL on a linux machine, where I have only users rights. I have found only .rpm file, which is not the option until I don't get root's privileges.
Can I do some other way? Can I download the source some where?
You can install into your own home directory by setting the install path. These links may help you. And that was a nice question.
http://leenissen.dk/fann/forum/viewtopic.php?f=1&t=606
https://serverfault.com/questions/11270/installing-software-on-linux-without-root-privileges
On CentOS\RHEL You could use:
yum install packageName --installroot=[path]
This should work also without root permissions.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
everyone. Firstly, forgive my poor English #_#
I use ubuntu 11.10 now.
And I want to install lxr.But I can not get it throught
sudo apt-get install lxr.
The apt-get can not find the lxr.
I had google for this problem, but failed.
Could you tell me where to download the "lxr",please?
Or tell me how to make the apt-get find the "lxr"?
Thanks!
You can download lxr from this location: http://sourceforge.net/projects/lxr/files/stable/
The official installation guide is here: http://lxr.sourceforge.net/en/1-0-InstallSteps/1-0-install.php
Since the site is constantly evolving, the preferred access method is navigation from the home page http://lxr.sourceforge.net/en/index.php
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I installed java from a binary package (bin format). Now I want to know how to set environment variables in Linux (Ubuntu).
Nothing happend when I type set path=<location of bin folder>.
Then how to run a .jar app?
for configuration
export JAVA_HOME="jdk/installation/dir"
export PATH=$PATH:$JAVA_HOME"/bin"
For running something.jar
java -jar something.jar
Or you could just install the OpenJDK from the Ubuntu Software Center. Much less of a hassle.
PS: Do you actually want the JDK, or do you just want to run a .jar? (cause that's how I interpret the second part of your question).
Because you will very likely already have a JVM if you're using Ubuntu, you could just type
java -jar /path/to/thejar.jar
Firstly use javac commend in terminal to see whether you have installed sdk properly. If answer is no, define paths. And it would be better if you had explained something about IDE, which IDE you will use.. MAy it be easy
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 12 years ago.
Improve this question
hey everyone i am trying to install Eclipse helios for C/C++ developers on a ubntu OS
i am new with all this ubntu stuff - even though i downloaded a version of helios from the Eclipse site i have no idea how to install the program
i can't find the eclipse.exe file that it has when is installed it in windows!
thanks allot.
Brad
Install it using the Ubuntu Software Centre and not through the Eclipse website. Or alternatively, open a terminal by pressing alt + F2 and type sudo apt-get install eclipse it might ask for your administrator password and tell you the file size, all you have to do is agree by typing 'y' then it will be installed automatically.
In case you want to use the file that you have downloaded, telling us what kind of file it is would help us give you the necessary instructions. For example it might be a tarball or a gzip archive.
There are no exe's on Linux! Simply unzip the version you downloaded (32 or 64 bit), put the new eclipse folder to some location (e.g. /opt), and run /opt/eclipse/eclipse - voilá.
Make sure you have the correct JDK installed (Sun JDK or OpenJDK) in the correct flavour (32/64 bit - depending on the version of eclipse you downloaded).