General :: Fedora Repository Not Providing Up-to-date Versions Of Software?
Aug 13, 2010
I am using Linpus lite (a fedora based linux) on an ACER ONE notebook. I use a GUI to install/update or remove software. It is called pirut. I believe it a GUI of the yum command. The repository this install program uses is the fedora one. I find the following description of the repository in the menus of that GUI:
Name: Fedora Description:Fedora 8 - i386 Mirror list : h[URL]... The problem is the following: The versions I can install from that GUI are outdate. For example, the firefox I have is 2.0.0.14 although the newest one available at the firefox website is 3.6.8. The same with openoffice, gcc and many many other tools.
This is embarrassing: I wanted recently to install a software on my own which was not available at that repository. This software requires recent versions of many tools. It's embarassing to have to update them manually..
I assumed the default repository of fedora should have access to the newest versions. If that is true, then the problem is in my system and not in the repositories. In that case, does any one have a clue on how to fix that problem? Now if the repository I use is indeed outdated, Should I change to another repository? Can anyone indicate which repository is compatible with my system and how to add it?
View 6 Replies
ADVERTISEMENT
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
Jan 8, 2011
I've noticed that Synaptic shows VLC 1.0.6 as the latest version of VLC. Except this is not true and 1.0.6 is way out of date. Version 1.0.6 does not even have a REPEAT icon button for the control panel. But newer versions do. Running Windows I can download VLC version 1.1.5 and make use of a REPEAT icon.Is there a way to update the repository? Or a way to tell Ubuntu developers that the VLC repository is way out of date and needs updating? I'm running 10.04 LTS--I thought this was supposed to deliver longterm updates?
View 9 Replies
View Related
Aug 23, 2010
I am currently running multiple VPS's of which one is a Hardy based LAMP install with PLESK. I have just one gripe about running Hardy on this VPS: PHP 5.2 is horribly outdated!! It has 5.2.4 in the repos, whilst 5.2.14 was released a while ago. As an LTS server distro you would expect these kinds of packages to be updated to ensure security? Please don't tell me I can use Dotdeb, it was never meant for Ubuntu and I have had problems with it in the past.
View 5 Replies
View Related
Jan 10, 2016
I noticed today when I was offered by synaptic to update some packages that there seemed to be two versions available from the same repository (stable). How could that happen?
For instance if I check package "xscreensaver" installed version is 5.30-1+b1 and versions available are;
5.34-1 (testing)5.30-1+deb8u1(stable)5.30-1+b1 (stable)
Below is my /etc/apt/sources.list. I'm not sure why, but rows 1 and 6 are identical except for stable beeing replaced by jessie. Row 3 and 7 are almost same too. Because jessie=stable (at the moment), is there any point with having duplicated rows in sources.list?
Code:
Select alldeb http://ftp.se.debian.org/debian/ stable main non-free contrib
deb http://ftp.debian.org/debian/ stable-updates main non-free contrib
deb http://security.debian.org/ stable/updates main non-free contrib
deb http://ftp.se.debian.org/debian/ testing main non-free
deb http://ftp.se.debian.org/debian/ jessie contrib non-free mainĀ <--- Same as first row?
deb http://security.debian.org/ jessie/updates contrib non-free main
View 14 Replies
View Related
Dec 21, 2010
I am looking for explanation:
have two ubuntu 10.10 installations
both have the same update state
both have the same settings in software packet sources[code]....
Still the synaptic has different version of clamav in it, one has 0.96.4 and the other has 0.96.5.Even one other installation of 10.04 has the 0.96.5 in the repository. Why can one installation show different version then the other?
View 3 Replies
View Related
Jun 3, 2011
I installed Ubuntu Server 8.10, 9.04, 10.04, until I discovered that the packages of these versions to upgrade and install graphics settings are not available, then install the current version is 11.04 and there I found that repositories responded and set me right. Then the repositories of previous versions are not available? When I install the current version on all packages that I need to back packs and save it for if I need it later.
How do I get the packages and put together a repository itself if others were dashed this is still operating, and maintenance would be needed?
View 9 Replies
View Related
Mar 13, 2009
Anybody know the secret to get Rosegarden providing sound.
I got Jack and Hydrogen working but not Rosegarden.
Jack is working does Rosegarden really work?
View 2 Replies
View Related
Feb 18, 2011
how can i provide authentication to the user, when he submits his name n password on the internet browser?im unable to fetch username n password from browser?
View 2 Replies
View Related
Oct 11, 2010
I have two machines between which I need to share a folder.On server1, I have the user 'appuser' that needs to access (read/write/delete) on this share.On server2, 'root' accesses this share and writes to it.I have the following in /etc/exports on server1:/home/app-share 999.999.99.99/28(rw,insecure,sync,no_root_squash)where the number is the IP address. How can I change this to allow 'appuser' access?
View 1 Replies
View Related
Jan 4, 2011
I've been looking around the net for executing a shell script. My basic understanding is that after setting executable permissions and providing a path (#!/bin/sh) in the first line of the script, I can type ./myscript to execute instead of sh myscript. This is not working for me. I can run "sh myscript" but not "./myscript" even though I know for sure I have across the board execute permission and my sh path is correct. I'm working on a redhat linux station.
View 6 Replies
View Related
Jul 30, 2010
I want to automate the following manual process.Currently, I am encryptying a set of files using openssl as follows:Encrypt file.txt to file.out using 256-bit AES in CBC mode $ openssl enc -aes-256-cbc -salt -in file1 -out file1.enI am then prompted for a password, which is then used to encrypt the fileWhen decrypting, I type $ openssl enc -d -aes-256-cbc -infile1.enc -out fileI am then prompted for the password - which again, I manually type.I want to automate this process of en/decryption - so I need to find a way of providing openssh with the password.
My first thought is whether it is possible to read the password from a file (say)? Or is there a better way of doing this?Also, I suppose that I will have to place restriction on who can view the password file - otherwise, that defeats the whole objective of using a password. I am thinking to run the bash script as a specific user, and then give only that user read rights to the contents of that file.Is this the way its done - or is there a better way?Ofcourse all of this leads to yet another question - which is, how to run a bash script as another user - without having to type the user pwd at the terminal.
View 1 Replies
View Related
Mar 12, 2010
I am using CRON to create a new, blank file, every minute, in a specific location on my web server. After web searching, and reading man pages, I get the impression that the following command is supposed to work:touch /home/mydomain/var/folder/attachments/`date +%H%M`.txtThis should give me a new file with a file name that is the current hour and minute.However, when executed, the CRON mailer reports:touch /home/mydomain/var/folder/attachments/`date +/bin/sh: -c: line 0: unexpected EOF while looking for matching /bin/sh: -c: line 1: syntax error: unexpected end of fileSo, it looks like shell is seeing the plus (+) sign as an EOFObviously, nothing get created.What would be the easiest, single line command to create an empty file, at a given location, with a time based file name
View 5 Replies
View Related
Apr 22, 2010
Anyone have a ksh solution to convert julian date to gregorian date?
View 6 Replies
View Related
Mar 17, 2011
I have Fedora 13 in a VPS. I cannot work with yum. I got this error: [Errno 256] No more mirrors to try # yum list Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. verify its path and try again.
View 4 Replies
View Related
Dec 1, 2009
I have install fedora 12 (i686) from Live CD. Now i want to install some package. I typed comand like this:
Code:
yum install some_package_name
But i have an error:
Code:
Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. verify its path and try again i looked at /etc/yum.repos.d:
Quote:
[fedora]
name=Fedora $releasever - $basearch
failovermethod=priority
#baseurl=http://download.fedoraproject.org/pub/fedora/linux/releases/$releasever/Everything/$basearch/os/
[code]....
View 2 Replies
View Related
Dec 15, 2009
[root@127 scott]# yum update Loaded plugins: presto, refresh-packagekit [URL]: [Errno 14] PYCURL ERROR 7 - "" Trying other mirror. [URL]: [Errno 14] PYCURL ERROR 7 - "" Trying other mirror. Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora.
verify its path and try again ...browsed through solutions like using yum clear and setting proxy in yum.conf
View 9 Replies
View Related
Dec 22, 2009
Here's the details to this mornings update error:
Error Type: <class 'yum.Errors.RepoError'>
Error Value: Error getting repository data for installed, repository not found
File : /usr/share/PackageKit/helpers/yum/yumBackend.py, line 3125, in <module>
main()
File : /usr/share/PackageKit/helpers/yum/yumBackend.py, line 3122, in main
code....
It mentioned bug report but I don't know where that is. I'll try later.
View 9 Replies
View Related
Feb 14, 2010
Today I installed Fedora12 from the DVD, so this is my first contact with all of you. The last years I ran very well with gentoo, but the time for system maintenance got to big the last few times I updated the system, so I decided to change and here am I. The Problem: My system is newly installed from the DVD and I was trying to run the first update, but got the following errormassage by KPackageKit:
Code:
Error Type:
Error Value: Error getting repository data for installed, repository not found
File : /usr/share/PackageKit/helpers/yum/yumBackend.py, line 3125, in
main()
File : /usr/share/PackageKit/helpers/yum/yumBackend.py, line 3122, in main
backend.dispatcher(sys.argv[1:])
File : /usr/lib/python2.6/site-packages/packagekit/backend.py, line 710, in dispatcher
self.dispatch_command(args[0], args[1:])
[Code]...
It occured after informing me about the amount of packages that need to be updated and a message about some dependencies that have to be newly installed. At the moment I'm a bit lost about what to do. Also I realy don't know which system-information would be useful - let me know and I will answer.
View 2 Replies
View Related
Jun 14, 2010
When I try to install some programs, like Asunder, I get the following:
Code:
[root@localhost theAdmiral]# yum install asunder
Loaded plugins: presto, refresh-packagekit
Could not retrieve mirrorlist http://rpm.livna.org/mirrorlist error was
14: PYCURL ERROR 7 - ""
Error: Cannot retrieve repository metadata (repomd.xml) for repository: livna. Please verify its path and try again
[Code]...
View 14 Replies
View Related
Jul 28, 2010
I installed Fedora 13 in my new system from DVD image. Now I want to update all repositories. I coul'nt update. error message as below: Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. verify its path and try again
View 3 Replies
View Related
Aug 8, 2011
I cant get yum to work
every time I go to install something it gives this output code...
View 1 Replies
View Related
Nov 14, 2009
I installed FC10, but do not find xfig (command not found)..then I do password:xxxxxxx, and then do the following $yum install xfig, and I get the following error Loaded plugins: refresh-packagekit [URL].. [Errno 14] HTTP Error 401: Unauthorized Trying other mirror. Error: Cannot retrieve repository metadata (repomd.xml) for repository: adobe-linux-i386.
View 14 Replies
View Related
Dec 27, 2009
yum is completely broken. I cannot install or update any software. yum is always throwing:
Code: Loaded plugins: presto, refresh-packagekit Could not retrieve mirrorlist http://mirrors.rpmfusion.org/mirrorlist?repo=free-fedora-12&arch=x86_64 error was 14: PYCURL ERROR 7 - "" Error: Cannot retrieve repository metadata (repomd.xml) for repository: rpmfusion-free. Please verify its path and try again I have tried globally to disable the gpg check as stated in other threads. I have no proxies or such in yum.conf or in my bashrc. If I manually click on the link it will resolve in firefox so I am sure it is not my net connection per se, it seems yum or curl is adding a : to the end of the url thats why it wont resolve properly.
I have done a yum clean all , which didnt really help either. reinstalling the rpmfusion repos isnt an option either as I start getting curl errors in the terminal. I am really at a loss here and am completely out of ideas as I cant install any updates or software , at first I thought the repositories were having problems with the holidays but this has been going on for 4 days now. /var/log/messages isnt showing anything either.
[Code]....
View 3 Replies
View Related
Apr 19, 2010
I just installed Fedora Core 12 and when attempting use the update utility am receiving the following error:
[code]...
View 3 Replies
View Related
Jun 9, 2010
I updated my up to date F12 to F13. I have what must be a 640X480 display with no way to change it. I get an error:
"Error: Cannot retrieve repository metadata (repomd.xml) for repository: pgdg90. Please verify its path and try again" on all Yum commands so no yum installs are possible. I don't have the /usr/bin/GLX command So theAIGLX doesn't work.
View 1 Replies
View Related
Dec 14, 2009
I'm having trouble getting my fusion repos to work. When I try to install something that uses them I get:-
Loaded plugins: presto, refresh-packagekit
rpmfusion-free | 3.9 kB 00:00
http://download1.rpmfusion.org/free/...ta/repomd.xml: [Errno -1] Error importing repomd.xml for rpmfusion-free: Damaged repomd.xml file
[code]....
View 3 Replies
View Related
Feb 7, 2010
I did a clean install of Fedora 12 (AMD64) two days ago and I have been trying to update the packages. But it won't work. I keep getting these errors. I tried both Software Update and command-line utility to update. code...
View 4 Replies
View Related
Mar 18, 2011
I just did a fresh install of F14 using a Live USB. I can't do a yum update, I'm getting Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora.I've done a yum clean all and I've tried coping the .repos from another F14 system that's working fine.
View 4 Replies
View Related
May 5, 2011
While installing CodeLite on F13,there is some error:
[root@localhost ~]# yum install codelite
Loaded plugins: presto, refresh-packagekit
Could not retrieve mirrorlist
HTTP Error 404 : mirroslist
Error: Cannot retrieve repository metadata (repomd.xml) for repository: rpmfusion-free. Please verify its path and try again
what i should do to resolve this question?(the computer can conntect to network,because I'm in China?)
I have googling this question,but those methods didn't work
View 1 Replies
View Related