LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 05-14-2017, 05:47 AM   #1
Asciente
Member
 
Registered: May 2017
Location: Surakarta, Central java, Indonesia
Distribution: Debian and MX-linux
Posts: 53

Rep: Reputation: Disabled
Visual Basic dependency problems


Hi All,
I want to install vbnc to run some windows program on my Debian Jessie
After downloaded the package from packages.debian.org, the main file mono-vbnc_3.8-1_all needs libmono-microsoft-visualbasic11.0-cil_3.8-1_all, and the second file needs another file, and so on (as how dependency works).
But, when I come to the last file, it needs the previous file which I've downloaded (quite confusing)
Here is the detail :
mono-vbnc_3.8-1_all needs libmono-microsoft-visualbasic11.0-cil_3.8-1_all
libmono-microsoft-visualbasic11.0-cil_3.8-1_all needs libmono-microsoft-visualbasic10.0-cil_3.8-1_all
libmono-microsoft-visualbasic10.0-cil_3.8-1_all needs libmono-corlib4.5-cil_3.2.8+dfsg-10_all
libmono-corlib4.5-cil_3.2.8+dfsg-10_all needs mono-runtime_3.2.8+dfsg-10_i386
mono-runtime_3.2.8+dfsg-10_i386 needs mono-runtime-sgen_3.2.8+dfsg-10_i386
mono-runtime-sgen_3.2.8+dfsg-10_i386 needs mono-runtime-common_3.2.8+dfsg-10_i386
mono-runtime-common_3.2.8+dfsg-10_i386 needs mono-gac_3.2.8+dfsg-10_all
mono-gac_3.2.8+dfsg-10_all needs mono-4.0-gac_3.2.8+dfsg-10_all
mono-4.0-gac_3.2.8+dfsg-10_all needs libmono-corlib4.5-cil_3.2.8+dfsg-10_all

Look that like it goes to tail, then back to head again.

Last edited by Asciente; 05-14-2017 at 05:50 AM.
 
Old 05-14-2017, 05:54 AM   #2
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 22,780

Rep: Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567
what did you try (which commands ....) exactly?
 
Old 05-14-2017, 06:06 AM   #3
Asciente
Member
 
Registered: May 2017
Location: Surakarta, Central java, Indonesia
Distribution: Debian and MX-linux
Posts: 53

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by pan64 View Post
what did you try (which commands ....) exactly?
I try to install it using gdebi package installer
I right click the file, then choose open with gdebi package installer
Then gdebi says dependency is not satisfiable and bla bla bla
 
Old 05-14-2017, 06:14 AM   #4
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 22,780

Rep: Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567
you do not need to download the packages, but use apt to install them. That should solve dependency issues automatically.
if you have downloaded those files you may need to install them "in one", not one by one. dpkg -i <list all of those packages>
 
Old 05-14-2017, 06:42 AM   #5
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by Asciente View Post
I want to install vbnc to run some windows program on my Debian Jessie
shouldn't you just install mono then?
please show us this windows program you are trying to run.
also show us how you got the idea that vbnc is what you need (some internet article?).
 
Old 05-14-2017, 03:54 PM   #6
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,639

Rep: Reputation: 2653Reputation: 2653Reputation: 2653Reputation: 2653Reputation: 2653Reputation: 2653Reputation: 2653Reputation: 2653Reputation: 2653Reputation: 2653Reputation: 2653
mono is the linux version of C# and dot net

for the Microsofts odd version of "BASIC" they called Visual basic ( not to be confused with the real "BASIC" language )

you might want to use a microsoft operating system

you might be able to use the mono-vbnc
BUT use apt to install it
DO NOT !!!! just download random deb files and manually install them

-- USE apt ( or sysnaptic )
 
Old 05-14-2017, 10:30 PM   #7
Asciente
Member
 
Registered: May 2017
Location: Surakarta, Central java, Indonesia
Distribution: Debian and MX-linux
Posts: 53

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ondoho View Post
shouldn't you just install mono then?
please show us this windows program you are trying to run.
also show us how you got the idea that vbnc is what you need (some internet article?).
The program was made by my programmer using .exe extention, we usually work it in windows and now I try to use Debian 8.8 (Jessie).
I've installed Wine and able to open some windows program, but some of them not. I read a post in a website (forgot to note it) that we will need to install visualbasic too to be able to run windows program properly.
 
Old 05-14-2017, 10:32 PM   #8
Asciente
Member
 
Registered: May 2017
Location: Surakarta, Central java, Indonesia
Distribution: Debian and MX-linux
Posts: 53

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by John VV View Post
mono is the linux version of C# and dot net

for the Microsofts odd version of "BASIC" they called Visual basic ( not to be confused with the real "BASIC" language )

you might want to use a microsoft operating system

you might be able to use the mono-vbnc
BUT use apt to install it
DO NOT !!!! just download random deb files and manually install them

-- USE apt ( or sysnaptic )
In this case, what should I do with synaptic to get that program.
In my old Debian 7.2, we have wine and microsoft.net framework 1.
 
Old 05-15-2017, 02:18 AM   #9
remma12
Member
 
Registered: May 2017
Distribution: Arch
Posts: 65

Rep: Reputation: 28
Quote:
Originally Posted by Asciente View Post
In this case, what should I do with synaptic to get that program.
In my old Debian 7.2, we have wine and microsoft.net framework 1.
Code:
sudo apt-get install mono-complete
Should get you going in no time
 
1 members found this post helpful.
Old 05-16-2017, 03:07 AM   #10
Asciente
Member
 
Registered: May 2017
Location: Surakarta, Central java, Indonesia
Distribution: Debian and MX-linux
Posts: 53

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by remma12 View Post
Code:
sudo apt-get install mono-complete
Should get you going in no time
Terminal said this :
E: Unable to locate package mono-complete
 
Old 05-16-2017, 03:28 AM   #11
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 22,780

Rep: Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567Reputation: 7567
probably: http://www.mono-project.com/download...oad-lin-debian
 
Old 05-19-2017, 12:01 AM   #12
Asciente
Member
 
Registered: May 2017
Location: Surakarta, Central java, Indonesia
Distribution: Debian and MX-linux
Posts: 53

Original Poster
Rep: Reputation: Disabled
Hi, All
I've succesfully added debian package repositories to my synaptic, it's easier to download and install packages now.
Finally get what I need.
Thanks All
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Portable Visual Basic/Visual C++ (Like) for Linux and Windows? Xeratul Programming 3 10-02-2014 04:56 AM
mod_mono 2.10 problems with running Visual Basic asp.net pages j.smith1981 Linux - Software 1 08-25-2013 09:53 AM
Stupid Question: Microsoft Visual Studio 6.0 (A.K.A. Visual Basic 6) Will it run? S0RD3N Linux - Software 8 05-07-2008 08:42 PM
running Visual Basic/Visual Fox Pro in Linux? depam Linux - Software 9 02-11-2006 03:42 PM
Visual Basic 6 DaveyB Linux - Software 2 08-19-2004 12:47 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:48 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration