Hello all, I'm running CentOS 6.4.
Today I tried installing monodevelop and this is the result of the installation: http://bin.cakephp.org/view/258829139
Now. When I went to my terminal and ran monodevelop... nothing. When I tried to locate the actual executable by running find . -name "*monodevelop*" (kinda overkill, but figured that I'd get this option out of the way), I couldn't find anything. So, now, I'm scratching my head and wondering what to do next :) . Where did I mess up? Am I not starting monodevelop correctly? If so, how should I start it?
Yves S. Garret wrote:
Hello all, I'm running CentOS 6.4.
Today I tried installing monodevelop and this is the result of the installation: http://bin.cakephp.org/view/258829139
Now. When I went to my terminal and ran monodevelop... nothing. When I tried to locate the actual executable by running find . -name "*monodevelop*" (kinda overkill, but figured that I'd get this option out of the way), I couldn't find anything. So, now, I'm
scratching
my head and wondering what to do next :) . Where did I mess up? Am I not starting monodevelop correctly? If so, how should I start it?
It may not have done your PATH correctly. Easy answer: rpm -ql monodevelop
which gives you a full path listing of all the files.
mark
I just tried that... weird...
$ rpm -ql monodevelop package monodevelop is not installed
Even more weird, when I look at the list of installed packages, this is what I see: http://bin.cakephp.org/view/455219047
It's as if monodevelop is not installed?
On Mon, May 20, 2013 at 12:58 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
Hello all, I'm running CentOS 6.4.
Today I tried installing monodevelop and this is the result of the installation: http://bin.cakephp.org/view/258829139
Now. When I went to my terminal and ran monodevelop... nothing. When I tried to locate the actual executable by running find . -name "*monodevelop*" (kinda overkill, but figured that I'd get this option out of the way), I couldn't find anything. So, now, I'm
scratching
my head and wondering what to do next :) . Where did I mess up? Am I not starting monodevelop correctly? If so, how should I start it?
It may not have done your PATH correctly. Easy answer: rpm -ql monodevelop
which gives you a full path listing of all the files.
mark
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On Mon, 20 May 2013 13:06:08 -0400 Yves S. Garret wrote:
It's as if monodevelop is not installed?
Perhaps it isn't. Your initial post indicates that you have base, epel, extras and updates repositories enabled. I have the same on this computer.
"yum search monodevelop" tells me "no matches found."
So where did you find the monodevelop rpm that you think you installed?
From here:
http://fealves78.blogspot.com/2012/08/install-mono-and-monodevelop-on-centos...
On Mon, May 20, 2013 at 1:12 PM, Frank Cox theatre@melvilletheatre.comwrote:
On Mon, 20 May 2013 13:06:08 -0400 Yves S. Garret wrote:
It's as if monodevelop is not installed?
Perhaps it isn't. Your initial post indicates that you have base, epel, extras and updates repositories enabled. I have the same on this computer.
"yum search monodevelop" tells me "no matches found."
So where did you find the monodevelop rpm that you think you installed?
-- MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On Mon, May 20, 2013 at 01:18:59PM -0400, Yves S. Garret wrote:
From here:
http://fealves78.blogspot.com/2012/08/install-mono-and-monodevelop-on-centos...
That's an unvetted repo that is mentioned in that article, and from the looks of it is providing unsigned packages? Bleah.
John
On Mon, 20 May 2013 12:25:38 -0500 John R. Dennison wrote:
That's an unvetted repo that is mentioned in that article, and from the looks of it is providing unsigned packages? Bleah.
I also don't see any place where they are providing source rpms in their repo, though I didn't spend a whole lot of time searching. Therefore, it would be difficult/impossible to check their spec file and see what that package actually does and where it wants to put stuff.
On 5/20/2013 10:33 AM, Frank Cox wrote:
I also don't see any place where they are providing source rpms in their repo, though I didn't spend a whole lot of time searching. Therefore, it would be difficult/impossible to check their spec file and see what that package actually does and where it wants to put stuff.
rpm -ql packagename
or,
rpm -qlf rpmfile.rpm
On Mon, 20 May 2013 12:25:08 -0700 John R Pierce wrote:
On 5/20/2013 10:33 AM, Frank Cox wrote:
I also don't see any place where they are providing source rpms in their repo, though I didn't spend a whole lot of time searching. Therefore, it would be difficult/impossible to check their spec file and see what that package actually does and where it wants to put stuff.
rpm -ql packagename
or,
rpm -qlf rpmfile.rpm
It's entirely possible that I'm missing something, but how does that tell me what pre- and post-install steps the rpm does, or what patches are applied to the binaries? All I get is a list of files and directories. I don't think it's possible to extract a spec file from a binary rpm. Or is it?
On 5/20/2013 12:28 PM, Frank Cox wrote:
It's entirely possible that I'm missing something, but how does that tell me what pre- and post-install steps the rpm does, or what patches are applied to the binaries? All I get is a list of files and directories. I don't think it's possible to extract a spec file from a binary rpm. Or is it?
Ah, i thought the OP was asking where the files were installed.
On Mon, 2013-05-20 at 12:56 -0700, John R Pierce wrote:
On 5/20/2013 12:28 PM, Frank Cox wrote:
It's entirely possible that I'm missing something, but how does that tell me what pre- and post-install steps the rpm does, or what patches are applied to the binaries? All I get is a list of files and directories. I don't think it's possible to extract a spec file from a binary rpm. Or is it?
Ah, i thought the OP was asking where the files were installed.
As such it is not possible to retrieve the complete spec. The actions can be viewed however with the -- script option to rpm, eg: rpm -q --scripts binutils
I do not see how one can see what patches are installed.
The problem the OP has comes from the fact that the rpm is not signed, so it must be installed with the --nogpgcheck option to yum. Without the option IIRC yum complains about the missing signature and does not install the package.
On Mon, May 20, 2013 at 10:59:35PM +0200, Louis Lagendijk wrote:
The problem the OP has comes from the fact that the rpm is not signed, so it must be installed with the --nogpgcheck option to yum. Without the option IIRC yum complains about the missing signature and does not install the package.
You could have let it go at the first line: The problem is indeed that the rpms are not signed. --nogpgcheck is not a viable option on a server you care about unless you are 1000000% sure (ie. audited everything yourself and/or built the rpm yourself) that things are germane.
John
On Mon, 2013-05-20 at 16:15 -0500, John R. Dennison wrote:
On Mon, May 20, 2013 at 10:59:35PM +0200, Louis Lagendijk wrote:
The problem the OP has comes from the fact that the rpm is not signed, so it must be installed with the --nogpgcheck option to yum. Without the option IIRC yum complains about the missing signature and does not install the package.
You could have let it go at the first line: The problem is indeed that the rpms are not signed. --nogpgcheck is not a viable option on a server you care about unless you are 1000000% sure (ie. audited everything yourself and/or built the rpm yourself) that things are germane.
Indeed, installing an RPM from an unknown source, even if it is signed (with a key from the same source) is taking a big risk. I assumed that the OP understood that.....
On Mon, May 20, 2013 at 11:12:52AM -0600, Frank Cox wrote:
So where did you find the monodevelop rpm that you think you installed?
Why is mono-core unsigned?
John
On Mon, May 20, 2013 at 1:24 PM, John R. Dennison jrd@gerdesas.com wrote:
On Mon, May 20, 2013 at 11:12:52AM -0600, Frank Cox wrote:
So where did you find the monodevelop rpm that you think you installed?
Why is mono-core unsigned?
John
-- The hardest part of raising a child is teaching them to ride bicycles. A shaky child on a bicycle for the first time needs both support and freedom. The realization that this is what the child will always need can hit hard.
-- Sloan Wilson (1920-2003), American author, The Man in the Gray Flannel Suit (1976)
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
I don't know.
Yves S. Garret wrote:
On Mon, May 20, 2013 at 12:58 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
Hello all, I'm running CentOS 6.4.
Today I tried installing monodevelop and this is the result of the installation: http://bin.cakephp.org/view/258829139
Now. When I went to my terminal and ran monodevelop... nothing. When I tried to locate the actual executable by running find . -name "*monodevelop*" (kinda overkill, but figured that I'd get this option out of the way), I couldn't find anything. So, now, I'm
scratching
my head and wondering what to do next :) . Where did I mess up? Am I not starting monodevelop correctly? If so, how should I start it?
It may not have done your PATH correctly. Easy answer: rpm -ql monodevelop
which gives you a full path listing of all the files.
I just tried that... weird...
$ rpm -ql monodevelop package monodevelop is not installed
Even more weird, when I look at the list of installed packages, this is what I see: http://bin.cakephp.org/view/455219047
It's as if monodevelop is not installed?
Right. rpm -qa | grep -i monodevelop
If that gives you nothing, try yum list monodevelop.
And please don't top post.
mark
On Mon, May 20, 2013 at 1:22 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
On Mon, May 20, 2013 at 12:58 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
Hello all, I'm running CentOS 6.4.
Today I tried installing monodevelop and this is the result of the installation: http://bin.cakephp.org/view/258829139
Now. When I went to my terminal and ran monodevelop... nothing. When I tried to locate the actual executable by running find . -name "*monodevelop*" (kinda overkill, but figured that I'd get this option out of the way), I couldn't find anything. So, now, I'm
scratching
my head and wondering what to do next :) . Where did I mess up? Am I not starting monodevelop correctly? If so, how should I start it?
It may not have done your PATH correctly. Easy answer: rpm -ql monodevelop
which gives you a full path listing of all the files.
I just tried that... weird...
$ rpm -ql monodevelop package monodevelop is not installed
Even more weird, when I look at the list of installed packages, this is what I see: http://bin.cakephp.org/view/455219047
It's as if monodevelop is not installed?
Right. rpm -qa | grep -i monodevelop
If that gives you nothing, try yum list monodevelop.
And please don't top post.
mark
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
I'll keep it in mind to not top post.
And to answer your question, here is the output: http://bin.cakephp.org/view/217568741
Yves S. Garret wrote:
On Mon, May 20, 2013 at 1:22 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
On Mon, May 20, 2013 at 12:58 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
Hello all, I'm running CentOS 6.4.
Today I tried installing monodevelop and this is the result of the installation: http://bin.cakephp.org/view/258829139
Now. When I went to my terminal and ran monodevelop... nothing.
When
I tried to locate the actual executable by running find . -name "*monodevelop*" (kinda overkill, but figured that I'd
get
this option out of the way), I couldn't find anything. So, now,
I'm
scratching
my head and wondering what to do next :) . Where did I mess up?
Am
I not starting monodevelop correctly? If so, how should I start
it?
<snip>
$ rpm -ql monodevelop package monodevelop is not installed
Even more weird, when I look at the list of installed packages, this is what I see: http://bin.cakephp.org/view/455219047
It's as if monodevelop is not installed?
Right. rpm -qa | grep -i monodevelop
If that gives you nothing, try yum list monodevelop.
<snip>
And to answer your question, here is the output: http://bin.cakephp.org/view/217568741
And there's your answer - it doesn't like the repo. Also, you really should pay attention to the other folks' comments, questioning the security of what you want to install.
mark
On Mon, May 20, 2013 at 2:02 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
On Mon, May 20, 2013 at 1:22 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
On Mon, May 20, 2013 at 12:58 PM, m.roth@5-cent.us wrote:
Yves S. Garret wrote:
Hello all, I'm running CentOS 6.4.
Today I tried installing monodevelop and this is the result of the installation: http://bin.cakephp.org/view/258829139
Now. When I went to my terminal and ran monodevelop... nothing.
When
I tried to locate the actual executable by running find . -name "*monodevelop*" (kinda overkill, but figured that I'd
get
this option out of the way), I couldn't find anything. So, now,
I'm
scratching
my head and wondering what to do next :) . Where did I mess up?
Am
I not starting monodevelop correctly? If so, how should I start
it?
<snip> >> > $ rpm -ql monodevelop >> > package monodevelop is not installed >> > >> > Even more weird, when I look at the list of installed packages, this >> > is what I see: >> > http://bin.cakephp.org/view/455219047 >> > >> > It's as if monodevelop is not installed? >> >> Right. rpm -qa | grep -i monodevelop >> >> If that gives you nothing, try yum list monodevelop. <snip> > And to answer your question, here is the output: > http://bin.cakephp.org/view/217568741
And there's your answer - it doesn't like the repo. Also, you really should pay attention to the other folks' comments, questioning the security of what you want to install.
mark
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
I just deleted that repo.
And yes, I knew I was taking a risk. To be honest, I wasn't sure what to do next after hitting my head against the wall so much, hence such drastic measure.
On Mon, 20 May 2013 14:23:51 -0400 Yves S. Garret wrote:
And yes, I knew I was taking a risk. To be honest, I wasn't sure what to do next after hitting my head against the wall so much, hence such drastic measure.
You may be asking the wrong question.
What were/are you trying to accomplish (outside of just "install monodevelop", which I had never heard of before today)?
Is your objective simply to install a good programmer's editor/IDE? If so, for what programming language? For example, perhaps something like vi, emacs, geany or eclipse would meet your needs, depending on what your needs actually are.
Is your objective to do mono API programming using something like C#? If so, is there any particular reason why you want to use that instead of some other programming language?
If you tell us what you're really trying to do, perhaps we can give you a recommendation for what your best course of action would be.
On Mon, May 20, 2013 at 2:37 PM, Frank Cox theatre@melvilletheatre.comwrote:
On Mon, 20 May 2013 14:23:51 -0400 Yves S. Garret wrote:
And yes, I knew I was taking a risk. To be honest, I wasn't sure what to do next after hitting my head against the wall so much, hence such drastic measure.
You may be asking the wrong question.
What were/are you trying to accomplish (outside of just "install monodevelop", which I had never heard of before today)?
Is your objective simply to install a good programmer's editor/IDE? If so, for what programming language? For example, perhaps something like vi, emacs, geany or eclipse would meet your needs, depending on what your needs actually are.
Is your objective to do mono API programming using something like C#? If so, is there any particular reason why you want to use that instead of some other programming language?
If you tell us what you're really trying to do, perhaps we can give you a recommendation for what your best course of action would be.
-- MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
I would like to do some coding in C#. The problem that I was encountering is if your code is split up over several files (you have a factory class and a widget class and then, just for fun, a bird class) is getting all of the files to include correctly and link correctly. I've tried monodevelop on my Mac, it did the trick and I wanted to do the same on my CentOS machine.
Am 20.05.2013 19:06, schrieb Yves S. Garret:
It's as if monodevelop is not installed?
Of course it isn't. Your original result:
clearly shows yum aborting with an error:
Package mono-core-2.10.5-1.el6.i686.rpm is not signed
and not installing anything.
HTH T.