Fedora :: Install And Use Multiple Versions Of Gcc (on F15)?
Jun 6, 2011
For my work it is extremely useful to have multiple versions of gcc available. I've done this in the past under Ubuntu simply by enabling alternative or older repositories but in Fedora land I've not been able to find a standard automated way of doing this. Can anybody point me in the right direction?
View 13 Replies
ADVERTISEMENT
Sep 29, 2010
I do quite a bit of testing of a FOSS package, which I install from rpm. At any one time there may be 3 versions ( current release, new release candidate, and snapshot of trunk) that I wish to test. If I stick to normal naming conventions (i.e. current release fred-2010.0...rpm, release candidate fred-2010.2...rpm, and trunk fred-2010.3...rpm) it seems to me that I can only have one version installed at any one time. Is there a 'proper' way of managing this (using the package manager), so that I can have multiple versions installed at any one time?
View 10 Replies
View Related
Apr 9, 2011
How to install multiple versions of GCC on Fedora 12? Using yum, I upgraded my g++ to 4.4.4-10. I want to install a second version 4.6.0 of GCC.
[Code]...
View 9 Replies
View Related
Jan 1, 2010
Some times i need the older version of some packages in my system...side by side with the new one.i.e mostly i found older version openssl package for supporting dependency of some programs Can I keep the following libraries at the same time in my system by installing multiple versions of openssl?
[Code]...
View 3 Replies
View Related
Aug 22, 2010
On my lenny+backports+debianmultimedia desktop I see two annoyances. 1st: There are multiple versions of same packages. But while attempting to remove the older versions I see apt-get is removing some essential packages. Is there any way to kill this duplicacy of packages? Here is a list of packages whose multiple instances are installed:
xulrunner-1.9.0.19-3
xulrunner-1.9.1.11-1~bpo50+1
cpp-4:4.3.2-2
cpp-4.3-4.3.4-6~bpo50+1
g++-4:4.3.2-2
g++-4.3-4.3.4-6~bpo50+1
[Code]...
Note: Just for sanity's sake I want to remove the extra versions and disable that error message, except that I don't see any problem.
View 6 Replies
View Related
Feb 1, 2011
I'm using latest Ubuntu version 10.10 and I want to try Firefox Beta, but don't want to replace the one I;m using now which is 3.6.13.
I have downloaded Firefox 4 Beta andd extacted file to a /Home Folder/(My username)/Firefox 4 (Beta)/
and I wen to that folder and clicked on the Firefox link bu version 3.6.13 came up. in another window. Do I have to close Firefox ad re open it or do I have to do something else?
View 1 Replies
View Related
Feb 25, 2011
I have installed GCC 4.5.1 using senaptic. But typing gcc in any terminal still calls the older version of gcc. I see that in /usr/bin gcc is a link to the older gcc. Would it be OK to replace that link with the new one poiting to the newer version of GCC?
View 3 Replies
View Related
Feb 24, 2010
I have a dual boot desktop with WinXP on C: and Ubuntu on D:. GRUB 2 handles the start-up. Having installed multiple updates to Ubuntu, my GRUB menu now lists:
2.5.31-19-generic
2.5.31-17-generic
2.5.31-16-generic
2.5.31-15-generic
2.5.31-14-generic
and (recovery mode) for each of the above, along with the mem test and WinXP.Is there any reason I need to list all these variants of Ubuntu? If not, can I simply edit them from the GRUB config file or must I do something else to actually uninstall them?
View 2 Replies
View Related
May 26, 2010
I am not sure if this is the right section to ask this question (sorry if it isnt). Anyway, I want to build and install 3 different softwares:OpenCV, Player, Stage. These are required for my school projects and research etc. Now, I need to install them in this manner:
Opencv-2.0.0, player-2.1.3 and stage-2.1.1 and Opencv-2.1.0, player-3.0.1 and stage-3.2.2
The reason for this is, these are the sets of versions that talk to each other without problems. And I need the older versions for a project that I'm currently working on and its always nice to have the newest version installed on the system. If its only a single version install, its pretty easy and I can do it.Since I want to install multiple versions of the same software I could use some help. I am not sure whether I can install all of the them in the default directory (/usr/local/). So, I can set up a separate directory on my home folder. But thats as far as I've gotten to. I am particularly concerned whether one version would break another. Is there anything that I can do to avoid this?
View 3 Replies
View Related
Jan 20, 2010
I want to have 2 diffrent versions of a package installed at same time. This is the command i use "apt-get install myprogram=versionID" Problem is, that when i install the version i wanna add, it REPLACE it with the old I dont wanna replace, i wanna keep them both.
View 2 Replies
View Related
Feb 4, 2010
The main problem is that the software was developed about 15 years ago and is incompatible with the most current version of Java. I would like to know how to install an older version of Java so that I can use it with just this one application, without changing the version of Java that I use for everything else.
View 1 Replies
View Related
Mar 17, 2011
When I turn on my computer, because of frequent updates it will display several versions of Ubuntu 10.10 that I can choose from. I wonder if it is possible to delete some of the older versions and how. I think having several versions of Ubuntu uses up a lot of space in the hard drive.
View 4 Replies
View Related
Feb 11, 2011
I have matlab installed on a network (I am not the administrator) and we usually start the program by typing "matlab", then choosing one of the version options from the menu i.e. typing "n". So because of this, trying to run matlab programs or commands directly like this... matlab -r ProgramName
...does not work. I just get the menu as usual and everything else is ignored. I assume the admin has overridden the matlab command with their own custom script. So my question is can I start a specific version of the program by specifying the folder that the version is in? I thought it might be something like /opt/matlab/version -r programname
this might look foolish, but I am a bit of a linux noob. Let me know if I should just ask my administrator but I thought there might be something easy I am missing.
View 1 Replies
View Related
Jun 18, 2011
I have a page which is going to be internationalized, and available in more languages. It contains PHP scripts to load, let's say, current user's data from database and the internationalized content itself, like "Welcome user" message. The problem for me is the fact, that internationalized content is not continual, and it's all over the page mixed with php scripts.
I don't want to use eval(). I've got 2 , they are, however, not good enough. 1. One file per language version, with scripts included - there will be many languages, so there would have to be many files with redundant data. Also if I wanted to change structure of script, I would have to change it in all pages. 2. Load international data from db, while scripts are on the page - not sure about good database structure I mean, how would I get the right content from database? (content would be split into rows, columns, or something?)
View 8 Replies
View Related
Jul 17, 2009
I'm missing a fundamental that I just cant seem to wrap my head around with setting up repositories with RepoSync. I set up a local repository when my system was running version 5.2. Everything ran like a top up until the release of 5.3 Upon release I ran the standard yum on my 5.2 server which upgraded it to 5.3 and thats where my mental block is catching me up.
When I run a reposync It seems that all I'm able to download is the 5.2 packages. I'm trying to figure out how I can manage both a 5.2 repo along side a 5.3 repo with reposync and figure out what needs to be done to properly make reposync pull down the latest updates for the newer version. My original thinking was that once my repo server was upgraded to 5.3 it would start pulling the 5.3 updates but obviously I'm way off base since that is not happening.
View 1 Replies
View Related
Jan 17, 2010
i wanna install older versions of fedora(10 or 11), and after looking everywhere, i found that if you search the available mirrors through the download page. This allows you to select mirrors with the version you want. I didnt know if that was the way to get older versions or if there is another way.
View 2 Replies
View Related
May 30, 2011
Does Fedora Now Prompt End Users To Install New Versions? If so, what a terrible idea and how do I disable it? So, I get a late night call from one of the people I support with their PC. You know, the basic PC user who barely knows enough to be dangerous. I'm sure we all have friends like this, who we help out and keep Linux running for them. Anyway, he says Fedora prompted him to upgrade to Fedora 15 (from 13) and of course, he says OK. He usually says OK when fedora asks to update his software.
Now things are hosed, he can't get on-line and worst of all, he's running F15 with Gnome3 and can't find his way around or do the things he's used to doing. Why on earth would fedora prompt to upgrade to a new version via the net? (..btw - he said it took forever.. ) I'm sure this exact scenario will be played out 1000s of times and peeps like me will be wasting lots of time straightening things out after the fact. Seems to me Fedora should not prompt for full version upgrades. It's trouble waiting to happen and that kind of thing should be user initiated by someone who actually knows what they are doing, so as to avoid the scenario that just played out with me.
View 7 Replies
View Related
Jan 19, 2011
I tried to install on an Armari Gravistar machine Open Suse 11.3 and 11.2 at 64 bit but both haven't worked, after the welcome I press install, it loads something and then the computer is on the screen black and nothing happens. The 11.3 at 32 bit installs but in this manner I cannot use the 16GB RAM of the machine.
View 1 Replies
View Related
Jun 30, 2011
I'm not to clear on the difference between LTS versions and other versions, but think I may want to go with LTS. Can someone tell me if my thinking is correct given the following situation: I have some very cool, but very expensive software installed with a group license from my school, a school which I am not going to be attending for too much longer. So I want to go as long as possible without reinstalling Ubuntu, because once the product is licensed it will be licensed until I reinstall Ubuntu (or I uninstall the program). So I think this is going to require me keep the Ubuntu version I install as long as possible.
So in this case, should I go with 10.04LTS or should I just install Natty Narwhal and keep that as long as possible? It looks like 10.04LTS will be "supported" longer, but I'm not exactly clear on all that "supported" entails. Presumable it means security and software updates will be available for 10.04LTS for much longer than 11.x versions? So I'm thinking I should go with 10.04LTS
Is my thinking correct in going with 10.04LTS? Edit: It was pointed out that this would be against my contractual agreements. Which I suppose is probably true.
View 8 Replies
View Related
Sep 23, 2010
installed the latest version of R ( R.2.11.1) in my machine and I can run that by simply typing "R" in terminal but I need to install the old version of R ( R.2.9.2) since some packages don't support the new version. I have the .tar.gz file of old version. How can I install that? How do I run in terminal ?
View 1 Replies
View Related
Jun 4, 2010
How can i install different versions of linux like ubundu,redhat etc in a pc and how it can be added in grub or lilo loader.widows is already installed
View 14 Replies
View Related
Jun 23, 2010
Is it possible to install two versions of vim (6.3 and 7.2)?
Currently have 6.3 installed and was wondering if I can install 7.2 on a diff directory...
I have CentOS 4.8
View 5 Replies
View Related
May 8, 2010
so I get my t410 today. the hdd is 250g with three primary partitions: 1) 1.17g 2) 221g win7os and 3) recovery 9.7g. I plan to install a windows vista, opensuse 11.2 and fedora 12. I know first to shrink the partition to make room. but i still don't know exactly. say, i shrink win7os partition to 40g and create an extended partition of 221-40 =181g, and then add partiton /boot, /swap, /home, /... and a number of partitons for vista and a number of similar partitions for fedora. But I doubt I wouldn't be able to install vista when opensuse installation is done.
View 1 Replies
View Related
Jul 17, 2010
1. I have dual booted Suse and Win Xp in past. Can idea be applied to different versions of Suse? I have a working Suse11.2 , and I have a spare partition (15GB) which can be re-formated.
2. Can i do a clean new install to the spare partition? Thus ending with two working Suse versions? ( Separate /home partitions). This would allow a) reserve of a working system while checking that 11.3 works. Then remove 11.2 later , and how to do that.
View 9 Replies
View Related
May 25, 2011
I need to build HDF library from sources. This library requires libjpeg-6b and won't compile with newer libjpeg-8 which already available.
Well, I download and install libjpeg-6b, but can't understand how to force use this library instead system default.
P.S.: I try to find any SlackBuilds for HDF4, but found them only for HDF5.
View 3 Replies
View Related
Jan 30, 2009
I have just loaded the FC9 onto a HP/Compaq D510 2.8Ghz/Intel graphic card. Everything when as expected during the install but on login I get the following set of errors. The follow Panels encounters a problem.
[Code].....
View 3 Replies
View Related
May 31, 2010
Say I have this computer and this computer has a 1TB hard disk. I install Fedora 13 on this disk and let the installer do as it wishes with this 1TB of space. I'm going to end up with the LVM thingy. (Can you tell yet that I know nothing about LVM?). Can I, at a later date, use some of the available space to create another partition to install another OS on. Can I create multiple partitions to install several other OS's on?
View 7 Replies
View Related
Aug 13, 2010
that's it! I got OpenSuse 11.2 and the size of the Repo has exceeded the 4 GB limit. This means that the mirror doesn't fit on my USB-stick anymore, nor would it fit on aDVD-RAM/RW (thus I can't distribute the updates anymore). Yes, there are bigger USB-sticks and BR-RWs, but in the end it is pure insanity!
View 1 Replies
View Related
Apr 28, 2011
In terminal type these commands:
Afterward go into your login screen and there should be a box saying Ubuntu scroll down on it and pick Gnome.
(NOTE do not have system programs or apps running it will cause install to fail.)
I tried this out works perfectly.
View 4 Replies
View Related
Mar 7, 2009
install of Fedora, always used Debian or Ubuntu before now, and am looking for versions of localepurge, deborphan and debfoster - do they exist in the Fedora Software Repository?
View 10 Replies
View Related