Good day I'm trying to enable the fedora-source and updates-source repos, using this command:
sudo dnf --enablerepo=fedora-source repolist
The result of the command is that the fedora-source seems enabled (it has a * in front of its name) but there is no fedora-source.repo in /etc/yum.repos.d/
Can anyone say me how to proceed?
Thanks Luigi.
On 07/23/2015 10:44 AM, luigi.vtt@gmail.com wrote:
I'm trying to enable the fedora-source and updates-source repos, using this command:
sudo dnf --enablerepo=fedora-source repolist
The result of the command is that the fedora-source seems enabled (it has a * in front of its name) but there is no fedora-source.repo in/etc/yum.repos.d/
Can anyone say me how to proceed?
$ grep fedora-source /etc/yum.repos.d/*.repo /etc/yum.repos.d/fedora.repo:[fedora-source] /etc/yum.repos.d/fedora.repo:mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=fedora-source-$releasever&am...
;)
Multiple repos may be contained in a single repo file.
Regards, Michael
On Thu, 23 Jul 2015 17:44:45 +0200, luigi.vtt@gmail.com wrote:
Good day I'm trying to enable the fedora-source and updates-source repos, using this command:
sudo dnf --enablerepo=fedora-source repolist
The result of the command is that the fedora-source seems enabled (it has a * in front of its name) but there is no fedora-source.repo in /etc/yum.repos.d/
Can anyone say me how to proceed?
Open /etc/yum.repos.d/fedora.repo and notice it's an INI-style file, where the repo names are the section ids in brackets.
On 07/23/2015 10:33 AM, Michael Schwendt wrote:
Open /etc/yum.repos.d/fedora.repo and notice it's an INI-style file, where the repo names are the section ids in brackets.
On a side note (C#) I've long felt that one of the worst decisions Microsoft ever made was abandoning the human readable (and editable) .ini file and replacing it with the binary Windows Registry that takes a special program to edit and can fsck up your system at any moment because one bit flipped.