I have installed Ubuntu Mate 16.04 in a VBox to test it. So i like to install netbeans on Ubuntu over the command line:
sh Netbeans…sh
so i get the error.desc in easy form “Java is missing”.
So my question is, is there a way to install new software with the newest version with a few commands over the command line?
I used apt-get install, but it didn´t work.
Second Question:
Why i can´t install software over the gui?` I found no option to install with a mouseclick.
it is not so hard or at least it wasn’t in the past (haven’t testes 16.04). I personally always have troubles to install JDK via command line for that I always use the software center once you have that installed you will install netbeans in no time.
Apt-get is the package manager we all use (which has recently been changed to just apt). You have a build in information system that you may already know about that works on just about everything, called the manual pages (man for short). In terminal…
Code: man apt-get
or man <name of command>
The software center (and the others) is a gui front end for apt.
16o4 should offer the latest packages, but if it falls short you can search the ppa’s for the latest releast.
@Bonekit - You’ve recieved excellent advice from @anon42388993
Here’s a write up that covers many different situations you might encounter as a developer … Install Software
A while ago I read a suggestion for an order in which to run apt update/upgrade/autoremove/dist-upgrade, so I ended up adding this to my .bash_aliases:
The name sup came from “sudo upgrades”, but really although it’s a stupid name, I’ve kept it because I’ve gotten in the habit of typing it. You don’t need the echo lines of course, but it helps me when I watch it.