Problem with installing softwares
I am new to Ubuntu.
- I need Java 8 & NetBeans but can not install. I tried by 'Googling' and a download, but it did not get installed.
- I tried same way for Google Earth, but it is also not installed.
- First I tied Ubuntu 13.x (32 bit), but had same issue after I installed Ubuntu 14.04 LTS (64-bit).
Where can I got to get good advice on installation of software, and for using Ubuntu effectively?
14.04
add a comment |
I am new to Ubuntu.
- I need Java 8 & NetBeans but can not install. I tried by 'Googling' and a download, but it did not get installed.
- I tried same way for Google Earth, but it is also not installed.
- First I tied Ubuntu 13.x (32 bit), but had same issue after I installed Ubuntu 14.04 LTS (64-bit).
Where can I got to get good advice on installation of software, and for using Ubuntu effectively?
14.04
your question contains multiple question at once, for installing java 1.8 look at askubuntu.com/questions/56104/…
– bolzano
Apr 13 '15 at 9:23
have a look at How to install software on Ubuntu for a Windows User...
– Fabby
Apr 13 '15 at 10:51
add a comment |
I am new to Ubuntu.
- I need Java 8 & NetBeans but can not install. I tried by 'Googling' and a download, but it did not get installed.
- I tried same way for Google Earth, but it is also not installed.
- First I tied Ubuntu 13.x (32 bit), but had same issue after I installed Ubuntu 14.04 LTS (64-bit).
Where can I got to get good advice on installation of software, and for using Ubuntu effectively?
14.04
I am new to Ubuntu.
- I need Java 8 & NetBeans but can not install. I tried by 'Googling' and a download, but it did not get installed.
- I tried same way for Google Earth, but it is also not installed.
- First I tied Ubuntu 13.x (32 bit), but had same issue after I installed Ubuntu 14.04 LTS (64-bit).
Where can I got to get good advice on installation of software, and for using Ubuntu effectively?
14.04
14.04
edited Apr 13 '15 at 9:32
david6
13.7k43144
13.7k43144
asked Apr 13 '15 at 8:20
lokeshlokesh
1
1
your question contains multiple question at once, for installing java 1.8 look at askubuntu.com/questions/56104/…
– bolzano
Apr 13 '15 at 9:23
have a look at How to install software on Ubuntu for a Windows User...
– Fabby
Apr 13 '15 at 10:51
add a comment |
your question contains multiple question at once, for installing java 1.8 look at askubuntu.com/questions/56104/…
– bolzano
Apr 13 '15 at 9:23
have a look at How to install software on Ubuntu for a Windows User...
– Fabby
Apr 13 '15 at 10:51
your question contains multiple question at once, for installing java 1.8 look at askubuntu.com/questions/56104/…
– bolzano
Apr 13 '15 at 9:23
your question contains multiple question at once, for installing java 1.8 look at askubuntu.com/questions/56104/…
– bolzano
Apr 13 '15 at 9:23
have a look at How to install software on Ubuntu for a Windows User...
– Fabby
Apr 13 '15 at 10:51
have a look at How to install software on Ubuntu for a Windows User...
– Fabby
Apr 13 '15 at 10:51
add a comment |
2 Answers
2
active
oldest
votes
The easiest way to install Java 8 and NetBeans is to download a single package containing both of them from the official Oracle website. The package is called Java SE and NetBeans Cobundle and the version of Java SE and NetBeans Cobundle that you need to download is Linux x64.
The installation instructions for the Java SE and NetBeans Cobundle are the familiar click Next, Next... Install, and Finish type of instructions. These are the official Java SE and NetBeans Cobundle installation instructions from the Oracle Java SE Development Kit 8 Update 40 and NetBeans IDE 8.0.2 Java SE Software Bundle Installation Instructions webpage with minor revisions to make them specific to your question.
Installation Instructions
Download the installer file and save it on your system. For the 64-bit Linux operating system, the installer file name is
jdk-8u40-nb-8_0_2-linux-x64.sh
Make sure that the file name has jdk-8 in it, so that way you know that you are downloading the installer for Oracle Java 8 SE and NetBeans 8.
Navigate to the directory into which you downloaded the installer file (example:
cd ~/Downloads/
) and type:
sudo chmod +x jdk-8u40-nb-8_0_2-linux-x64.sh
to change the installer file's permissions so it can be executed.
Type the following command from the directory where you placed the installation file:
sudo ./jdk-8u40-nb-8_0_2-linux-x64.sh
At the Welcome page of the installation wizard, click Next.
- JUnit is a unit testing framework for the Java programming language. At the JUnit License Agreement page, decide if you want to install JUnit and click the appropriate option, click Next.
- At the JDK Installation page, specify the directory where to install the JDK and click Next.
- At the NetBeans IDE Installation page, do the following:
- Specify the directory for the NetBeans IDE installation.
- Accept the default JDK installation to use with the IDE or specify another JDK location.
- Click Next.
- Review the Summary page to ensure the software installation locations are correct.
- Click Install to begin the installation.
- At the Setup Complete page, provide anonymous usage data if desired, and click Finish.
Google Earth
Visit the official Download the latest version of Google Earth for PC, Mac, or Linux website.
Select the version of Google Earth that is compatible with your operating system. In your case, from the Please select your download package menu select 64 bit .deb (For Debian/Ubuntu)
Click the Agree and Download button to start downloading Google Earth.
Browse in the Files file manager to the folder where the Google Earth file that you downloaded is located. The name of the Google Earth file is google-earth-stable_current_amd64.deb
Double click the google-earth-stable_current_amd64.deb file to open it for installation in the Ubuntu Software Center, or from the terminal change directories with
cd
to the directory where the Google Earth file that you downloaded is located and install it with this command:
sudo apt install ./google-earth-stable_current_amd64.deb
Install Google Earth from the Ubuntu Software Center the same way that you would install any other package -- by clicking the Install button.
That's why I left a comment and asked you to have a look instead of answering! :P ;-) Comment deleted, explanation accepted...
– Fabby
Apr 14 '15 at 9:52
1
netbean 8 has been installed
– lokesh
Apr 15 '15 at 10:19
add a comment |
The terminal provides an easy way to download software and install it.
Open a terminal with Ctrl+Alt+T aund enter the following.
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get install netbeans
This link might be helpful.
The last question I do not understand. "proper reference" in what sense?
error occure ::: studio@studio-desktop:~$ sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install netbeans Error: need a single repository as argument
– lokesh
Apr 13 '15 at 9:33
One command at a time :)
– Niklas Lindskog
Apr 13 '15 at 9:46
For beginning Windows users, you should let them use the software repository first! You're way too smart! Dumb yourself down a bit! ;-) (correct answer, so still upvoted)
– Fabby
Apr 13 '15 at 10:55
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f608667%2fproblem-with-installing-softwares%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The easiest way to install Java 8 and NetBeans is to download a single package containing both of them from the official Oracle website. The package is called Java SE and NetBeans Cobundle and the version of Java SE and NetBeans Cobundle that you need to download is Linux x64.
The installation instructions for the Java SE and NetBeans Cobundle are the familiar click Next, Next... Install, and Finish type of instructions. These are the official Java SE and NetBeans Cobundle installation instructions from the Oracle Java SE Development Kit 8 Update 40 and NetBeans IDE 8.0.2 Java SE Software Bundle Installation Instructions webpage with minor revisions to make them specific to your question.
Installation Instructions
Download the installer file and save it on your system. For the 64-bit Linux operating system, the installer file name is
jdk-8u40-nb-8_0_2-linux-x64.sh
Make sure that the file name has jdk-8 in it, so that way you know that you are downloading the installer for Oracle Java 8 SE and NetBeans 8.
Navigate to the directory into which you downloaded the installer file (example:
cd ~/Downloads/
) and type:
sudo chmod +x jdk-8u40-nb-8_0_2-linux-x64.sh
to change the installer file's permissions so it can be executed.
Type the following command from the directory where you placed the installation file:
sudo ./jdk-8u40-nb-8_0_2-linux-x64.sh
At the Welcome page of the installation wizard, click Next.
- JUnit is a unit testing framework for the Java programming language. At the JUnit License Agreement page, decide if you want to install JUnit and click the appropriate option, click Next.
- At the JDK Installation page, specify the directory where to install the JDK and click Next.
- At the NetBeans IDE Installation page, do the following:
- Specify the directory for the NetBeans IDE installation.
- Accept the default JDK installation to use with the IDE or specify another JDK location.
- Click Next.
- Review the Summary page to ensure the software installation locations are correct.
- Click Install to begin the installation.
- At the Setup Complete page, provide anonymous usage data if desired, and click Finish.
Google Earth
Visit the official Download the latest version of Google Earth for PC, Mac, or Linux website.
Select the version of Google Earth that is compatible with your operating system. In your case, from the Please select your download package menu select 64 bit .deb (For Debian/Ubuntu)
Click the Agree and Download button to start downloading Google Earth.
Browse in the Files file manager to the folder where the Google Earth file that you downloaded is located. The name of the Google Earth file is google-earth-stable_current_amd64.deb
Double click the google-earth-stable_current_amd64.deb file to open it for installation in the Ubuntu Software Center, or from the terminal change directories with
cd
to the directory where the Google Earth file that you downloaded is located and install it with this command:
sudo apt install ./google-earth-stable_current_amd64.deb
Install Google Earth from the Ubuntu Software Center the same way that you would install any other package -- by clicking the Install button.
That's why I left a comment and asked you to have a look instead of answering! :P ;-) Comment deleted, explanation accepted...
– Fabby
Apr 14 '15 at 9:52
1
netbean 8 has been installed
– lokesh
Apr 15 '15 at 10:19
add a comment |
The easiest way to install Java 8 and NetBeans is to download a single package containing both of them from the official Oracle website. The package is called Java SE and NetBeans Cobundle and the version of Java SE and NetBeans Cobundle that you need to download is Linux x64.
The installation instructions for the Java SE and NetBeans Cobundle are the familiar click Next, Next... Install, and Finish type of instructions. These are the official Java SE and NetBeans Cobundle installation instructions from the Oracle Java SE Development Kit 8 Update 40 and NetBeans IDE 8.0.2 Java SE Software Bundle Installation Instructions webpage with minor revisions to make them specific to your question.
Installation Instructions
Download the installer file and save it on your system. For the 64-bit Linux operating system, the installer file name is
jdk-8u40-nb-8_0_2-linux-x64.sh
Make sure that the file name has jdk-8 in it, so that way you know that you are downloading the installer for Oracle Java 8 SE and NetBeans 8.
Navigate to the directory into which you downloaded the installer file (example:
cd ~/Downloads/
) and type:
sudo chmod +x jdk-8u40-nb-8_0_2-linux-x64.sh
to change the installer file's permissions so it can be executed.
Type the following command from the directory where you placed the installation file:
sudo ./jdk-8u40-nb-8_0_2-linux-x64.sh
At the Welcome page of the installation wizard, click Next.
- JUnit is a unit testing framework for the Java programming language. At the JUnit License Agreement page, decide if you want to install JUnit and click the appropriate option, click Next.
- At the JDK Installation page, specify the directory where to install the JDK and click Next.
- At the NetBeans IDE Installation page, do the following:
- Specify the directory for the NetBeans IDE installation.
- Accept the default JDK installation to use with the IDE or specify another JDK location.
- Click Next.
- Review the Summary page to ensure the software installation locations are correct.
- Click Install to begin the installation.
- At the Setup Complete page, provide anonymous usage data if desired, and click Finish.
Google Earth
Visit the official Download the latest version of Google Earth for PC, Mac, or Linux website.
Select the version of Google Earth that is compatible with your operating system. In your case, from the Please select your download package menu select 64 bit .deb (For Debian/Ubuntu)
Click the Agree and Download button to start downloading Google Earth.
Browse in the Files file manager to the folder where the Google Earth file that you downloaded is located. The name of the Google Earth file is google-earth-stable_current_amd64.deb
Double click the google-earth-stable_current_amd64.deb file to open it for installation in the Ubuntu Software Center, or from the terminal change directories with
cd
to the directory where the Google Earth file that you downloaded is located and install it with this command:
sudo apt install ./google-earth-stable_current_amd64.deb
Install Google Earth from the Ubuntu Software Center the same way that you would install any other package -- by clicking the Install button.
That's why I left a comment and asked you to have a look instead of answering! :P ;-) Comment deleted, explanation accepted...
– Fabby
Apr 14 '15 at 9:52
1
netbean 8 has been installed
– lokesh
Apr 15 '15 at 10:19
add a comment |
The easiest way to install Java 8 and NetBeans is to download a single package containing both of them from the official Oracle website. The package is called Java SE and NetBeans Cobundle and the version of Java SE and NetBeans Cobundle that you need to download is Linux x64.
The installation instructions for the Java SE and NetBeans Cobundle are the familiar click Next, Next... Install, and Finish type of instructions. These are the official Java SE and NetBeans Cobundle installation instructions from the Oracle Java SE Development Kit 8 Update 40 and NetBeans IDE 8.0.2 Java SE Software Bundle Installation Instructions webpage with minor revisions to make them specific to your question.
Installation Instructions
Download the installer file and save it on your system. For the 64-bit Linux operating system, the installer file name is
jdk-8u40-nb-8_0_2-linux-x64.sh
Make sure that the file name has jdk-8 in it, so that way you know that you are downloading the installer for Oracle Java 8 SE and NetBeans 8.
Navigate to the directory into which you downloaded the installer file (example:
cd ~/Downloads/
) and type:
sudo chmod +x jdk-8u40-nb-8_0_2-linux-x64.sh
to change the installer file's permissions so it can be executed.
Type the following command from the directory where you placed the installation file:
sudo ./jdk-8u40-nb-8_0_2-linux-x64.sh
At the Welcome page of the installation wizard, click Next.
- JUnit is a unit testing framework for the Java programming language. At the JUnit License Agreement page, decide if you want to install JUnit and click the appropriate option, click Next.
- At the JDK Installation page, specify the directory where to install the JDK and click Next.
- At the NetBeans IDE Installation page, do the following:
- Specify the directory for the NetBeans IDE installation.
- Accept the default JDK installation to use with the IDE or specify another JDK location.
- Click Next.
- Review the Summary page to ensure the software installation locations are correct.
- Click Install to begin the installation.
- At the Setup Complete page, provide anonymous usage data if desired, and click Finish.
Google Earth
Visit the official Download the latest version of Google Earth for PC, Mac, or Linux website.
Select the version of Google Earth that is compatible with your operating system. In your case, from the Please select your download package menu select 64 bit .deb (For Debian/Ubuntu)
Click the Agree and Download button to start downloading Google Earth.
Browse in the Files file manager to the folder where the Google Earth file that you downloaded is located. The name of the Google Earth file is google-earth-stable_current_amd64.deb
Double click the google-earth-stable_current_amd64.deb file to open it for installation in the Ubuntu Software Center, or from the terminal change directories with
cd
to the directory where the Google Earth file that you downloaded is located and install it with this command:
sudo apt install ./google-earth-stable_current_amd64.deb
Install Google Earth from the Ubuntu Software Center the same way that you would install any other package -- by clicking the Install button.
The easiest way to install Java 8 and NetBeans is to download a single package containing both of them from the official Oracle website. The package is called Java SE and NetBeans Cobundle and the version of Java SE and NetBeans Cobundle that you need to download is Linux x64.
The installation instructions for the Java SE and NetBeans Cobundle are the familiar click Next, Next... Install, and Finish type of instructions. These are the official Java SE and NetBeans Cobundle installation instructions from the Oracle Java SE Development Kit 8 Update 40 and NetBeans IDE 8.0.2 Java SE Software Bundle Installation Instructions webpage with minor revisions to make them specific to your question.
Installation Instructions
Download the installer file and save it on your system. For the 64-bit Linux operating system, the installer file name is
jdk-8u40-nb-8_0_2-linux-x64.sh
Make sure that the file name has jdk-8 in it, so that way you know that you are downloading the installer for Oracle Java 8 SE and NetBeans 8.
Navigate to the directory into which you downloaded the installer file (example:
cd ~/Downloads/
) and type:
sudo chmod +x jdk-8u40-nb-8_0_2-linux-x64.sh
to change the installer file's permissions so it can be executed.
Type the following command from the directory where you placed the installation file:
sudo ./jdk-8u40-nb-8_0_2-linux-x64.sh
At the Welcome page of the installation wizard, click Next.
- JUnit is a unit testing framework for the Java programming language. At the JUnit License Agreement page, decide if you want to install JUnit and click the appropriate option, click Next.
- At the JDK Installation page, specify the directory where to install the JDK and click Next.
- At the NetBeans IDE Installation page, do the following:
- Specify the directory for the NetBeans IDE installation.
- Accept the default JDK installation to use with the IDE or specify another JDK location.
- Click Next.
- Review the Summary page to ensure the software installation locations are correct.
- Click Install to begin the installation.
- At the Setup Complete page, provide anonymous usage data if desired, and click Finish.
Google Earth
Visit the official Download the latest version of Google Earth for PC, Mac, or Linux website.
Select the version of Google Earth that is compatible with your operating system. In your case, from the Please select your download package menu select 64 bit .deb (For Debian/Ubuntu)
Click the Agree and Download button to start downloading Google Earth.
Browse in the Files file manager to the folder where the Google Earth file that you downloaded is located. The name of the Google Earth file is google-earth-stable_current_amd64.deb
Double click the google-earth-stable_current_amd64.deb file to open it for installation in the Ubuntu Software Center, or from the terminal change directories with
cd
to the directory where the Google Earth file that you downloaded is located and install it with this command:
sudo apt install ./google-earth-stable_current_amd64.deb
Install Google Earth from the Ubuntu Software Center the same way that you would install any other package -- by clicking the Install button.
edited Jan 13 at 15:21
answered Apr 13 '15 at 10:34
karelkarel
58.7k13128147
58.7k13128147
That's why I left a comment and asked you to have a look instead of answering! :P ;-) Comment deleted, explanation accepted...
– Fabby
Apr 14 '15 at 9:52
1
netbean 8 has been installed
– lokesh
Apr 15 '15 at 10:19
add a comment |
That's why I left a comment and asked you to have a look instead of answering! :P ;-) Comment deleted, explanation accepted...
– Fabby
Apr 14 '15 at 9:52
1
netbean 8 has been installed
– lokesh
Apr 15 '15 at 10:19
That's why I left a comment and asked you to have a look instead of answering! :P ;-) Comment deleted, explanation accepted...
– Fabby
Apr 14 '15 at 9:52
That's why I left a comment and asked you to have a look instead of answering! :P ;-) Comment deleted, explanation accepted...
– Fabby
Apr 14 '15 at 9:52
1
1
netbean 8 has been installed
– lokesh
Apr 15 '15 at 10:19
netbean 8 has been installed
– lokesh
Apr 15 '15 at 10:19
add a comment |
The terminal provides an easy way to download software and install it.
Open a terminal with Ctrl+Alt+T aund enter the following.
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get install netbeans
This link might be helpful.
The last question I do not understand. "proper reference" in what sense?
error occure ::: studio@studio-desktop:~$ sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install netbeans Error: need a single repository as argument
– lokesh
Apr 13 '15 at 9:33
One command at a time :)
– Niklas Lindskog
Apr 13 '15 at 9:46
For beginning Windows users, you should let them use the software repository first! You're way too smart! Dumb yourself down a bit! ;-) (correct answer, so still upvoted)
– Fabby
Apr 13 '15 at 10:55
add a comment |
The terminal provides an easy way to download software and install it.
Open a terminal with Ctrl+Alt+T aund enter the following.
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get install netbeans
This link might be helpful.
The last question I do not understand. "proper reference" in what sense?
error occure ::: studio@studio-desktop:~$ sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install netbeans Error: need a single repository as argument
– lokesh
Apr 13 '15 at 9:33
One command at a time :)
– Niklas Lindskog
Apr 13 '15 at 9:46
For beginning Windows users, you should let them use the software repository first! You're way too smart! Dumb yourself down a bit! ;-) (correct answer, so still upvoted)
– Fabby
Apr 13 '15 at 10:55
add a comment |
The terminal provides an easy way to download software and install it.
Open a terminal with Ctrl+Alt+T aund enter the following.
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get install netbeans
This link might be helpful.
The last question I do not understand. "proper reference" in what sense?
The terminal provides an easy way to download software and install it.
Open a terminal with Ctrl+Alt+T aund enter the following.
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-get install netbeans
This link might be helpful.
The last question I do not understand. "proper reference" in what sense?
edited Apr 13 '15 at 11:21
answered Apr 13 '15 at 9:07
Niklas LindskogNiklas Lindskog
16410
16410
error occure ::: studio@studio-desktop:~$ sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install netbeans Error: need a single repository as argument
– lokesh
Apr 13 '15 at 9:33
One command at a time :)
– Niklas Lindskog
Apr 13 '15 at 9:46
For beginning Windows users, you should let them use the software repository first! You're way too smart! Dumb yourself down a bit! ;-) (correct answer, so still upvoted)
– Fabby
Apr 13 '15 at 10:55
add a comment |
error occure ::: studio@studio-desktop:~$ sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install netbeans Error: need a single repository as argument
– lokesh
Apr 13 '15 at 9:33
One command at a time :)
– Niklas Lindskog
Apr 13 '15 at 9:46
For beginning Windows users, you should let them use the software repository first! You're way too smart! Dumb yourself down a bit! ;-) (correct answer, so still upvoted)
– Fabby
Apr 13 '15 at 10:55
error occure ::: studio@studio-desktop:~$ sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install netbeans Error: need a single repository as argument
– lokesh
Apr 13 '15 at 9:33
error occure ::: studio@studio-desktop:~$ sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install netbeans Error: need a single repository as argument
– lokesh
Apr 13 '15 at 9:33
One command at a time :)
– Niklas Lindskog
Apr 13 '15 at 9:46
One command at a time :)
– Niklas Lindskog
Apr 13 '15 at 9:46
For beginning Windows users, you should let them use the software repository first! You're way too smart! Dumb yourself down a bit! ;-) (correct answer, so still upvoted)
– Fabby
Apr 13 '15 at 10:55
For beginning Windows users, you should let them use the software repository first! You're way too smart! Dumb yourself down a bit! ;-) (correct answer, so still upvoted)
– Fabby
Apr 13 '15 at 10:55
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f608667%2fproblem-with-installing-softwares%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
your question contains multiple question at once, for installing java 1.8 look at askubuntu.com/questions/56104/…
– bolzano
Apr 13 '15 at 9:23
have a look at How to install software on Ubuntu for a Windows User...
– Fabby
Apr 13 '15 at 10:51