i-NEX Not Installing on UBUNTU 18.04





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















Can anybody offer a working solution on how to install iNEX monitoring tool system/hardware information application on my Ubuntu 18.04?
I have tried several different things from different websites.
I keep getting errors. Why is this so hard? Why do I have to enter my password after every command? Can't there be an easier way? Windows does it, why can't Ubuntu and Linux do it?



I'm partially blind, and all I want to do is load a simple app to get some simple answers. I could have taken my machine apart and put it back together in the time that I've spent researching this topic and entering several lines of text for every suggestion.










share|improve this question




















  • 2





    Please edit your question to clearly indicate which version of Ubuntu you are using, and to include as much detail about the 'so many errors' as possible. Complete terminal output would be best. Yes, there probably are easier ways, but you chose non-Ubuntu (PPA) software, which can sometimes be complicated. The ranting is not appreciated.

    – user535733
    Oct 26 '18 at 14:32




















0















Can anybody offer a working solution on how to install iNEX monitoring tool system/hardware information application on my Ubuntu 18.04?
I have tried several different things from different websites.
I keep getting errors. Why is this so hard? Why do I have to enter my password after every command? Can't there be an easier way? Windows does it, why can't Ubuntu and Linux do it?



I'm partially blind, and all I want to do is load a simple app to get some simple answers. I could have taken my machine apart and put it back together in the time that I've spent researching this topic and entering several lines of text for every suggestion.










share|improve this question




















  • 2





    Please edit your question to clearly indicate which version of Ubuntu you are using, and to include as much detail about the 'so many errors' as possible. Complete terminal output would be best. Yes, there probably are easier ways, but you chose non-Ubuntu (PPA) software, which can sometimes be complicated. The ranting is not appreciated.

    – user535733
    Oct 26 '18 at 14:32
















0












0








0








Can anybody offer a working solution on how to install iNEX monitoring tool system/hardware information application on my Ubuntu 18.04?
I have tried several different things from different websites.
I keep getting errors. Why is this so hard? Why do I have to enter my password after every command? Can't there be an easier way? Windows does it, why can't Ubuntu and Linux do it?



I'm partially blind, and all I want to do is load a simple app to get some simple answers. I could have taken my machine apart and put it back together in the time that I've spent researching this topic and entering several lines of text for every suggestion.










share|improve this question
















Can anybody offer a working solution on how to install iNEX monitoring tool system/hardware information application on my Ubuntu 18.04?
I have tried several different things from different websites.
I keep getting errors. Why is this so hard? Why do I have to enter my password after every command? Can't there be an easier way? Windows does it, why can't Ubuntu and Linux do it?



I'm partially blind, and all I want to do is load a simple app to get some simple answers. I could have taken my machine apart and put it back together in the time that I've spent researching this topic and entering several lines of text for every suggestion.







command-line






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 27 '18 at 7:09









karel

61.1k13132155




61.1k13132155










asked Oct 26 '18 at 14:15









JohnJohn

61




61








  • 2





    Please edit your question to clearly indicate which version of Ubuntu you are using, and to include as much detail about the 'so many errors' as possible. Complete terminal output would be best. Yes, there probably are easier ways, but you chose non-Ubuntu (PPA) software, which can sometimes be complicated. The ranting is not appreciated.

    – user535733
    Oct 26 '18 at 14:32
















  • 2





    Please edit your question to clearly indicate which version of Ubuntu you are using, and to include as much detail about the 'so many errors' as possible. Complete terminal output would be best. Yes, there probably are easier ways, but you chose non-Ubuntu (PPA) software, which can sometimes be complicated. The ranting is not appreciated.

    – user535733
    Oct 26 '18 at 14:32










2




2





Please edit your question to clearly indicate which version of Ubuntu you are using, and to include as much detail about the 'so many errors' as possible. Complete terminal output would be best. Yes, there probably are easier ways, but you chose non-Ubuntu (PPA) software, which can sometimes be complicated. The ranting is not appreciated.

– user535733
Oct 26 '18 at 14:32







Please edit your question to clearly indicate which version of Ubuntu you are using, and to include as much detail about the 'so many errors' as possible. Complete terminal output would be best. Yes, there probably are easier ways, but you chose non-Ubuntu (PPA) software, which can sometimes be complicated. The ranting is not appreciated.

– user535733
Oct 26 '18 at 14:32












2 Answers
2






active

oldest

votes


















3














I-Nex currently doesn't have a Bionic Release so you will have to use the Zesty repository:



sudo -s

echo 'deb http://ppa.launchpad.net/i-nex-development-team/daily/ubuntu zesty main' >> /etc/apt/sources.list

exit


I-Nex requires the Gambas runtimes, so if you don't have them, you will have to add that repository also (it is up-to-date):



sudo add-apt-repository ppa:gambas-team/gambas3


Now update your sources and install:



sudo apt update

sudo apt install gambas3-dev gambas3-gb-image gambas3-gb-qt5 gambas3-gb-form gambas3-gb-desktop gambas3-gb-form-stock -y

sudo apt install i-nex





share|improve this answer


























  • Adding the gambas PPA worked a treat. I installed using the I-Nex .deb so needed to perform a 'sudo apt -f install' to find and install the dependencies.

    – Andrew
    Jan 3 at 15:13



















-1














Installing i-Nex on Ubuntu
To install i-Nex on Ubuntu, do the following:



Step 1. Open a terminal (in Unity use the CTRL + ALT + T keys);
Step 2. If you do not already have it, add the program repository with this command or use this tutorial;



sudo add-apt-repository ppa: i-nex-development-team / stable
Step 3. (optional) If you do not already have it, also add the program runtime repository with command below:



sudo add-apt-repository ppa: nemh / gambas3
Step 4. Update the APT with the command:



sudo apt-get update
Step 5. Now install the program with the command:



sudo apt-get install i-nex
How to install i-Nex manually or in other distros
For those who could not install with the above procedure, do not want to add the repository or want to try to install in another Debian-based distribution, you can pick up the DEB file from the program on that link and install it manually (double-clicking on it).



But remember! By choosing this type of installation, you will not receive any updates to the program.



Ready! Now, when you want to start the program, type i-nex in the Dash (or in a terminal, followed by the TAB key).



Uninstalling i-Nex on Ubuntu and derivatives
To uninstall i-Nex in Ubuntu and its derivatives, do the following:



Step 1. Open a terminal;
Step 2. Uninstall the program, using the commands below;



sudo apt-get remove i-nex --auto-remove






share|improve this answer



















  • 4





    Are you sure those PPAs cover the version of Ubuntu that John is using?

    – user535733
    Oct 26 '18 at 14:30






  • 1





    @user535733 Both are old PPAs and doesn't this look like a very sloppy copy/paste from somewhere else?

    – GabrielaGarcia
    Oct 27 '18 at 5:47











  • Hello Sergio, Thank you very much for the quick response. I will try this right away and let you know. Thanks again for your help! John

    – John
    Oct 27 '18 at 23:41












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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1087470%2fi-nex-not-installing-on-ubuntu-18-04%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









3














I-Nex currently doesn't have a Bionic Release so you will have to use the Zesty repository:



sudo -s

echo 'deb http://ppa.launchpad.net/i-nex-development-team/daily/ubuntu zesty main' >> /etc/apt/sources.list

exit


I-Nex requires the Gambas runtimes, so if you don't have them, you will have to add that repository also (it is up-to-date):



sudo add-apt-repository ppa:gambas-team/gambas3


Now update your sources and install:



sudo apt update

sudo apt install gambas3-dev gambas3-gb-image gambas3-gb-qt5 gambas3-gb-form gambas3-gb-desktop gambas3-gb-form-stock -y

sudo apt install i-nex





share|improve this answer


























  • Adding the gambas PPA worked a treat. I installed using the I-Nex .deb so needed to perform a 'sudo apt -f install' to find and install the dependencies.

    – Andrew
    Jan 3 at 15:13
















3














I-Nex currently doesn't have a Bionic Release so you will have to use the Zesty repository:



sudo -s

echo 'deb http://ppa.launchpad.net/i-nex-development-team/daily/ubuntu zesty main' >> /etc/apt/sources.list

exit


I-Nex requires the Gambas runtimes, so if you don't have them, you will have to add that repository also (it is up-to-date):



sudo add-apt-repository ppa:gambas-team/gambas3


Now update your sources and install:



sudo apt update

sudo apt install gambas3-dev gambas3-gb-image gambas3-gb-qt5 gambas3-gb-form gambas3-gb-desktop gambas3-gb-form-stock -y

sudo apt install i-nex





share|improve this answer


























  • Adding the gambas PPA worked a treat. I installed using the I-Nex .deb so needed to perform a 'sudo apt -f install' to find and install the dependencies.

    – Andrew
    Jan 3 at 15:13














3












3








3







I-Nex currently doesn't have a Bionic Release so you will have to use the Zesty repository:



sudo -s

echo 'deb http://ppa.launchpad.net/i-nex-development-team/daily/ubuntu zesty main' >> /etc/apt/sources.list

exit


I-Nex requires the Gambas runtimes, so if you don't have them, you will have to add that repository also (it is up-to-date):



sudo add-apt-repository ppa:gambas-team/gambas3


Now update your sources and install:



sudo apt update

sudo apt install gambas3-dev gambas3-gb-image gambas3-gb-qt5 gambas3-gb-form gambas3-gb-desktop gambas3-gb-form-stock -y

sudo apt install i-nex





share|improve this answer















I-Nex currently doesn't have a Bionic Release so you will have to use the Zesty repository:



sudo -s

echo 'deb http://ppa.launchpad.net/i-nex-development-team/daily/ubuntu zesty main' >> /etc/apt/sources.list

exit


I-Nex requires the Gambas runtimes, so if you don't have them, you will have to add that repository also (it is up-to-date):



sudo add-apt-repository ppa:gambas-team/gambas3


Now update your sources and install:



sudo apt update

sudo apt install gambas3-dev gambas3-gb-image gambas3-gb-qt5 gambas3-gb-form gambas3-gb-desktop gambas3-gb-form-stock -y

sudo apt install i-nex






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 14 '18 at 9:06

























answered Nov 14 '18 at 8:03









Rick VRick V

485




485













  • Adding the gambas PPA worked a treat. I installed using the I-Nex .deb so needed to perform a 'sudo apt -f install' to find and install the dependencies.

    – Andrew
    Jan 3 at 15:13



















  • Adding the gambas PPA worked a treat. I installed using the I-Nex .deb so needed to perform a 'sudo apt -f install' to find and install the dependencies.

    – Andrew
    Jan 3 at 15:13

















Adding the gambas PPA worked a treat. I installed using the I-Nex .deb so needed to perform a 'sudo apt -f install' to find and install the dependencies.

– Andrew
Jan 3 at 15:13





Adding the gambas PPA worked a treat. I installed using the I-Nex .deb so needed to perform a 'sudo apt -f install' to find and install the dependencies.

– Andrew
Jan 3 at 15:13













-1














Installing i-Nex on Ubuntu
To install i-Nex on Ubuntu, do the following:



Step 1. Open a terminal (in Unity use the CTRL + ALT + T keys);
Step 2. If you do not already have it, add the program repository with this command or use this tutorial;



sudo add-apt-repository ppa: i-nex-development-team / stable
Step 3. (optional) If you do not already have it, also add the program runtime repository with command below:



sudo add-apt-repository ppa: nemh / gambas3
Step 4. Update the APT with the command:



sudo apt-get update
Step 5. Now install the program with the command:



sudo apt-get install i-nex
How to install i-Nex manually or in other distros
For those who could not install with the above procedure, do not want to add the repository or want to try to install in another Debian-based distribution, you can pick up the DEB file from the program on that link and install it manually (double-clicking on it).



But remember! By choosing this type of installation, you will not receive any updates to the program.



Ready! Now, when you want to start the program, type i-nex in the Dash (or in a terminal, followed by the TAB key).



Uninstalling i-Nex on Ubuntu and derivatives
To uninstall i-Nex in Ubuntu and its derivatives, do the following:



Step 1. Open a terminal;
Step 2. Uninstall the program, using the commands below;



sudo apt-get remove i-nex --auto-remove






share|improve this answer



















  • 4





    Are you sure those PPAs cover the version of Ubuntu that John is using?

    – user535733
    Oct 26 '18 at 14:30






  • 1





    @user535733 Both are old PPAs and doesn't this look like a very sloppy copy/paste from somewhere else?

    – GabrielaGarcia
    Oct 27 '18 at 5:47











  • Hello Sergio, Thank you very much for the quick response. I will try this right away and let you know. Thanks again for your help! John

    – John
    Oct 27 '18 at 23:41
















-1














Installing i-Nex on Ubuntu
To install i-Nex on Ubuntu, do the following:



Step 1. Open a terminal (in Unity use the CTRL + ALT + T keys);
Step 2. If you do not already have it, add the program repository with this command or use this tutorial;



sudo add-apt-repository ppa: i-nex-development-team / stable
Step 3. (optional) If you do not already have it, also add the program runtime repository with command below:



sudo add-apt-repository ppa: nemh / gambas3
Step 4. Update the APT with the command:



sudo apt-get update
Step 5. Now install the program with the command:



sudo apt-get install i-nex
How to install i-Nex manually or in other distros
For those who could not install with the above procedure, do not want to add the repository or want to try to install in another Debian-based distribution, you can pick up the DEB file from the program on that link and install it manually (double-clicking on it).



But remember! By choosing this type of installation, you will not receive any updates to the program.



Ready! Now, when you want to start the program, type i-nex in the Dash (or in a terminal, followed by the TAB key).



Uninstalling i-Nex on Ubuntu and derivatives
To uninstall i-Nex in Ubuntu and its derivatives, do the following:



Step 1. Open a terminal;
Step 2. Uninstall the program, using the commands below;



sudo apt-get remove i-nex --auto-remove






share|improve this answer



















  • 4





    Are you sure those PPAs cover the version of Ubuntu that John is using?

    – user535733
    Oct 26 '18 at 14:30






  • 1





    @user535733 Both are old PPAs and doesn't this look like a very sloppy copy/paste from somewhere else?

    – GabrielaGarcia
    Oct 27 '18 at 5:47











  • Hello Sergio, Thank you very much for the quick response. I will try this right away and let you know. Thanks again for your help! John

    – John
    Oct 27 '18 at 23:41














-1












-1








-1







Installing i-Nex on Ubuntu
To install i-Nex on Ubuntu, do the following:



Step 1. Open a terminal (in Unity use the CTRL + ALT + T keys);
Step 2. If you do not already have it, add the program repository with this command or use this tutorial;



sudo add-apt-repository ppa: i-nex-development-team / stable
Step 3. (optional) If you do not already have it, also add the program runtime repository with command below:



sudo add-apt-repository ppa: nemh / gambas3
Step 4. Update the APT with the command:



sudo apt-get update
Step 5. Now install the program with the command:



sudo apt-get install i-nex
How to install i-Nex manually or in other distros
For those who could not install with the above procedure, do not want to add the repository or want to try to install in another Debian-based distribution, you can pick up the DEB file from the program on that link and install it manually (double-clicking on it).



But remember! By choosing this type of installation, you will not receive any updates to the program.



Ready! Now, when you want to start the program, type i-nex in the Dash (or in a terminal, followed by the TAB key).



Uninstalling i-Nex on Ubuntu and derivatives
To uninstall i-Nex in Ubuntu and its derivatives, do the following:



Step 1. Open a terminal;
Step 2. Uninstall the program, using the commands below;



sudo apt-get remove i-nex --auto-remove






share|improve this answer













Installing i-Nex on Ubuntu
To install i-Nex on Ubuntu, do the following:



Step 1. Open a terminal (in Unity use the CTRL + ALT + T keys);
Step 2. If you do not already have it, add the program repository with this command or use this tutorial;



sudo add-apt-repository ppa: i-nex-development-team / stable
Step 3. (optional) If you do not already have it, also add the program runtime repository with command below:



sudo add-apt-repository ppa: nemh / gambas3
Step 4. Update the APT with the command:



sudo apt-get update
Step 5. Now install the program with the command:



sudo apt-get install i-nex
How to install i-Nex manually or in other distros
For those who could not install with the above procedure, do not want to add the repository or want to try to install in another Debian-based distribution, you can pick up the DEB file from the program on that link and install it manually (double-clicking on it).



But remember! By choosing this type of installation, you will not receive any updates to the program.



Ready! Now, when you want to start the program, type i-nex in the Dash (or in a terminal, followed by the TAB key).



Uninstalling i-Nex on Ubuntu and derivatives
To uninstall i-Nex in Ubuntu and its derivatives, do the following:



Step 1. Open a terminal;
Step 2. Uninstall the program, using the commands below;



sudo apt-get remove i-nex --auto-remove







share|improve this answer












share|improve this answer



share|improve this answer










answered Oct 26 '18 at 14:29









sergiosergio

1




1








  • 4





    Are you sure those PPAs cover the version of Ubuntu that John is using?

    – user535733
    Oct 26 '18 at 14:30






  • 1





    @user535733 Both are old PPAs and doesn't this look like a very sloppy copy/paste from somewhere else?

    – GabrielaGarcia
    Oct 27 '18 at 5:47











  • Hello Sergio, Thank you very much for the quick response. I will try this right away and let you know. Thanks again for your help! John

    – John
    Oct 27 '18 at 23:41














  • 4





    Are you sure those PPAs cover the version of Ubuntu that John is using?

    – user535733
    Oct 26 '18 at 14:30






  • 1





    @user535733 Both are old PPAs and doesn't this look like a very sloppy copy/paste from somewhere else?

    – GabrielaGarcia
    Oct 27 '18 at 5:47











  • Hello Sergio, Thank you very much for the quick response. I will try this right away and let you know. Thanks again for your help! John

    – John
    Oct 27 '18 at 23:41








4




4





Are you sure those PPAs cover the version of Ubuntu that John is using?

– user535733
Oct 26 '18 at 14:30





Are you sure those PPAs cover the version of Ubuntu that John is using?

– user535733
Oct 26 '18 at 14:30




1




1





@user535733 Both are old PPAs and doesn't this look like a very sloppy copy/paste from somewhere else?

– GabrielaGarcia
Oct 27 '18 at 5:47





@user535733 Both are old PPAs and doesn't this look like a very sloppy copy/paste from somewhere else?

– GabrielaGarcia
Oct 27 '18 at 5:47













Hello Sergio, Thank you very much for the quick response. I will try this right away and let you know. Thanks again for your help! John

– John
Oct 27 '18 at 23:41





Hello Sergio, Thank you very much for the quick response. I will try this right away and let you know. Thanks again for your help! John

– John
Oct 27 '18 at 23:41


















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1087470%2fi-nex-not-installing-on-ubuntu-18-04%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

How did Captain America manage to do this?

迪纳利

南乌拉尔铁路局