How do I enable CentOS Repositories on RHEL Red Hat?












4















I'm in the process of purchasing a RHEL license. In the meantime, I'd like to utilize CentOS 7 repos on my RHEL 7. I created a /etc/yum.repos.d/centos.repo file in the /etc/yum.repos.d directory but I don't know how to move past that. Most of the information I found online either points to fedora repos or is referring to CentOS 5. Below is something I found online and copy pasted onto my centos.repo file. Thank you.



[centos]
name=CentOS $releasever - $basearch
baseurl=http://ftp.heanet.ie/pub/centos/7/os/$basearch/
enabled=1
gpgcheck=0

[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
$basearch&repo=os
baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
priority=1

#released updates
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
$basearch&repo=updates
baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
priority=1

#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
$basearch&repo=addons
#baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
priority=1

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
$basearch&repo=extras
baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
priority=1

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
$basearch&repo=centosplus
baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
priority=2

#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
$basearch&repo=contrib
baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
priority=2









share|improve this question





























    4















    I'm in the process of purchasing a RHEL license. In the meantime, I'd like to utilize CentOS 7 repos on my RHEL 7. I created a /etc/yum.repos.d/centos.repo file in the /etc/yum.repos.d directory but I don't know how to move past that. Most of the information I found online either points to fedora repos or is referring to CentOS 5. Below is something I found online and copy pasted onto my centos.repo file. Thank you.



    [centos]
    name=CentOS $releasever - $basearch
    baseurl=http://ftp.heanet.ie/pub/centos/7/os/$basearch/
    enabled=1
    gpgcheck=0

    [base]
    name=CentOS-$releasever - Base
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
    $basearch&repo=os
    baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    priority=1

    #released updates
    [updates]
    name=CentOS-$releasever - Updates
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
    $basearch&repo=updates
    baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
    priority=1

    #packages used/produced in the build but not released
    [addons]
    name=CentOS-$releasever - Addons
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
    $basearch&repo=addons
    #baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
    priority=1

    #additional packages that may be useful
    [extras]
    name=CentOS-$releasever - Extras
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
    $basearch&repo=extras
    baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
    priority=1

    #additional packages that extend functionality of existing packages
    [centosplus]
    name=CentOS-$releasever - Plus
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
    $basearch&repo=centosplus
    baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
    priority=2

    #contrib - packages by Centos Users
    [contrib]
    name=CentOS-$releasever - Contrib
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
    $basearch&repo=contrib
    baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
    enabled=0
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
    priority=2









    share|improve this question



























      4












      4








      4


      2






      I'm in the process of purchasing a RHEL license. In the meantime, I'd like to utilize CentOS 7 repos on my RHEL 7. I created a /etc/yum.repos.d/centos.repo file in the /etc/yum.repos.d directory but I don't know how to move past that. Most of the information I found online either points to fedora repos or is referring to CentOS 5. Below is something I found online and copy pasted onto my centos.repo file. Thank you.



      [centos]
      name=CentOS $releasever - $basearch
      baseurl=http://ftp.heanet.ie/pub/centos/7/os/$basearch/
      enabled=1
      gpgcheck=0

      [base]
      name=CentOS-$releasever - Base
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=os
      baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
      priority=1

      #released updates
      [updates]
      name=CentOS-$releasever - Updates
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=updates
      baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=1

      #packages used/produced in the build but not released
      [addons]
      name=CentOS-$releasever - Addons
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=addons
      #baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=1

      #additional packages that may be useful
      [extras]
      name=CentOS-$releasever - Extras
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=extras
      baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=1

      #additional packages that extend functionality of existing packages
      [centosplus]
      name=CentOS-$releasever - Plus
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=centosplus
      baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=2

      #contrib - packages by Centos Users
      [contrib]
      name=CentOS-$releasever - Contrib
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=contrib
      baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
      enabled=0
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=2









      share|improve this question
















      I'm in the process of purchasing a RHEL license. In the meantime, I'd like to utilize CentOS 7 repos on my RHEL 7. I created a /etc/yum.repos.d/centos.repo file in the /etc/yum.repos.d directory but I don't know how to move past that. Most of the information I found online either points to fedora repos or is referring to CentOS 5. Below is something I found online and copy pasted onto my centos.repo file. Thank you.



      [centos]
      name=CentOS $releasever - $basearch
      baseurl=http://ftp.heanet.ie/pub/centos/7/os/$basearch/
      enabled=1
      gpgcheck=0

      [base]
      name=CentOS-$releasever - Base
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=os
      baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
      priority=1

      #released updates
      [updates]
      name=CentOS-$releasever - Updates
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=updates
      baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=1

      #packages used/produced in the build but not released
      [addons]
      name=CentOS-$releasever - Addons
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=addons
      #baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=1

      #additional packages that may be useful
      [extras]
      name=CentOS-$releasever - Extras
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=extras
      baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=1

      #additional packages that extend functionality of existing packages
      [centosplus]
      name=CentOS-$releasever - Plus
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=centosplus
      baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
      enabled=1
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=2

      #contrib - packages by Centos Users
      [contrib]
      name=CentOS-$releasever - Contrib
      mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=
      $basearch&repo=contrib
      baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
      enabled=0
      gpgcheck=1
      gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
      priority=2






      centos rhel yum repository






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 8 '18 at 15:20









      Jeff Schaller

      43.3k1159139




      43.3k1159139










      asked Mar 23 '18 at 12:32









      user2220115user2220115

      21114




      21114






















          2 Answers
          2






          active

          oldest

          votes


















          5














          Delete this centos.repo (or change enabled=0 for all) and Create a new repository centos1.repo in /etc/yum.repos.d/ with the content:



          [centos]
          name=CentOS-7
          baseurl=http://ftp.heanet.ie/pub/centos/7/os/x86_64/
          enabled=1
          gpgcheck=1
          gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7


          Then run



          yum repolist


          Now check if you can install any package like



          yum install nmap -y


          Done!!!






          share|improve this answer





















          • 1





            It would be nice if OP ticked this as an accepted answer to let those of us who are searching, know that this is a solution.

            – Dark Star1
            Nov 29 '18 at 9:11



















          0














          You can use repo-file from CentOS, but need to prepare it:





          1. Replace $releasever inside this file with the appropriate release number (e.g. 7 for RHEL-7):



            sed -i 's/$releasever/7/g' /etc/yum.repos.d/CentOS-Base.repo



          2. Download key:



            curl http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7 >/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


            or change inside repo-file gpgkey's to url, as in @erTugRul answer:



            gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7







          share|improve this answer








          New contributor




          SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f433046%2fhow-do-i-enable-centos-repositories-on-rhel-red-hat%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            5














            Delete this centos.repo (or change enabled=0 for all) and Create a new repository centos1.repo in /etc/yum.repos.d/ with the content:



            [centos]
            name=CentOS-7
            baseurl=http://ftp.heanet.ie/pub/centos/7/os/x86_64/
            enabled=1
            gpgcheck=1
            gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7


            Then run



            yum repolist


            Now check if you can install any package like



            yum install nmap -y


            Done!!!






            share|improve this answer





















            • 1





              It would be nice if OP ticked this as an accepted answer to let those of us who are searching, know that this is a solution.

              – Dark Star1
              Nov 29 '18 at 9:11
















            5














            Delete this centos.repo (or change enabled=0 for all) and Create a new repository centos1.repo in /etc/yum.repos.d/ with the content:



            [centos]
            name=CentOS-7
            baseurl=http://ftp.heanet.ie/pub/centos/7/os/x86_64/
            enabled=1
            gpgcheck=1
            gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7


            Then run



            yum repolist


            Now check if you can install any package like



            yum install nmap -y


            Done!!!






            share|improve this answer





















            • 1





              It would be nice if OP ticked this as an accepted answer to let those of us who are searching, know that this is a solution.

              – Dark Star1
              Nov 29 '18 at 9:11














            5












            5








            5







            Delete this centos.repo (or change enabled=0 for all) and Create a new repository centos1.repo in /etc/yum.repos.d/ with the content:



            [centos]
            name=CentOS-7
            baseurl=http://ftp.heanet.ie/pub/centos/7/os/x86_64/
            enabled=1
            gpgcheck=1
            gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7


            Then run



            yum repolist


            Now check if you can install any package like



            yum install nmap -y


            Done!!!






            share|improve this answer















            Delete this centos.repo (or change enabled=0 for all) and Create a new repository centos1.repo in /etc/yum.repos.d/ with the content:



            [centos]
            name=CentOS-7
            baseurl=http://ftp.heanet.ie/pub/centos/7/os/x86_64/
            enabled=1
            gpgcheck=1
            gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7


            Then run



            yum repolist


            Now check if you can install any package like



            yum install nmap -y


            Done!!!







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 2 '18 at 7:36

























            answered Mar 23 '18 at 13:13









            erTugRulerTugRul

            25511




            25511








            • 1





              It would be nice if OP ticked this as an accepted answer to let those of us who are searching, know that this is a solution.

              – Dark Star1
              Nov 29 '18 at 9:11














            • 1





              It would be nice if OP ticked this as an accepted answer to let those of us who are searching, know that this is a solution.

              – Dark Star1
              Nov 29 '18 at 9:11








            1




            1





            It would be nice if OP ticked this as an accepted answer to let those of us who are searching, know that this is a solution.

            – Dark Star1
            Nov 29 '18 at 9:11





            It would be nice if OP ticked this as an accepted answer to let those of us who are searching, know that this is a solution.

            – Dark Star1
            Nov 29 '18 at 9:11













            0














            You can use repo-file from CentOS, but need to prepare it:





            1. Replace $releasever inside this file with the appropriate release number (e.g. 7 for RHEL-7):



              sed -i 's/$releasever/7/g' /etc/yum.repos.d/CentOS-Base.repo



            2. Download key:



              curl http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7 >/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


              or change inside repo-file gpgkey's to url, as in @erTugRul answer:



              gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7







            share|improve this answer








            New contributor




            SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.

























              0














              You can use repo-file from CentOS, but need to prepare it:





              1. Replace $releasever inside this file with the appropriate release number (e.g. 7 for RHEL-7):



                sed -i 's/$releasever/7/g' /etc/yum.repos.d/CentOS-Base.repo



              2. Download key:



                curl http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7 >/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


                or change inside repo-file gpgkey's to url, as in @erTugRul answer:



                gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7







              share|improve this answer








              New contributor




              SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.























                0












                0








                0







                You can use repo-file from CentOS, but need to prepare it:





                1. Replace $releasever inside this file with the appropriate release number (e.g. 7 for RHEL-7):



                  sed -i 's/$releasever/7/g' /etc/yum.repos.d/CentOS-Base.repo



                2. Download key:



                  curl http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7 >/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


                  or change inside repo-file gpgkey's to url, as in @erTugRul answer:



                  gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7







                share|improve this answer








                New contributor




                SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.










                You can use repo-file from CentOS, but need to prepare it:





                1. Replace $releasever inside this file with the appropriate release number (e.g. 7 for RHEL-7):



                  sed -i 's/$releasever/7/g' /etc/yum.repos.d/CentOS-Base.repo



                2. Download key:



                  curl http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7 >/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


                  or change inside repo-file gpgkey's to url, as in @erTugRul answer:



                  gpgkey=http://ftp.heanet.ie/pub/centos/7/os/x86_64/RPM-GPG-KEY-CentOS-7








                share|improve this answer








                New contributor




                SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                share|improve this answer



                share|improve this answer






                New contributor




                SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                answered 1 hour ago









                SergASergA

                1011




                1011




                New contributor




                SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                New contributor





                SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                SergA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f433046%2fhow-do-i-enable-centos-repositories-on-rhel-red-hat%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    サソリ

                    広島県道265号伴広島線

                    Setup Asymptote in Texstudio