deb file repositry fails during apt-get update due to not having a Release file












0















I previously created two folders full of .debs and followed This question to be able to add them to my /etc/apt/sources.list file: by doing to following:



cd ~/me/debs
dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
echo "deb file:/home/me/debs ./" >> /etc/apt/sources.list


However now when I went to create another folder and reload the repos with sudo apt-get update I get the following errors.



Get:6 file:/home/me/debs ./ Release
Err:6 file:/home/me/debs ./ Release
File not found - /home/me/debs/./Release (2: No such file or directory)
E: The repository 'file:/home/me/debs ./ Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.


I have tried creating the Release file using touch, however the error changes to: E: The repository 'file:/home/me/debs ./ Release' is not signed. after it tries to find a Releases.gpg file.



All posts I've seen with this error have to deal with acutal sources that aren't local, and I wonder if there's some way I allow apt to include the repo without having a Releases file.










share|improve this question



























    0















    I previously created two folders full of .debs and followed This question to be able to add them to my /etc/apt/sources.list file: by doing to following:



    cd ~/me/debs
    dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
    echo "deb file:/home/me/debs ./" >> /etc/apt/sources.list


    However now when I went to create another folder and reload the repos with sudo apt-get update I get the following errors.



    Get:6 file:/home/me/debs ./ Release
    Err:6 file:/home/me/debs ./ Release
    File not found - /home/me/debs/./Release (2: No such file or directory)
    E: The repository 'file:/home/me/debs ./ Release' does not have a Release file.
    N: Updating from such a repository can't be done securely, and is therefore disabled by default.
    N: See apt-secure(8) manpage for repository creation and user configuration details.


    I have tried creating the Release file using touch, however the error changes to: E: The repository 'file:/home/me/debs ./ Release' is not signed. after it tries to find a Releases.gpg file.



    All posts I've seen with this error have to deal with acutal sources that aren't local, and I wonder if there's some way I allow apt to include the repo without having a Releases file.










    share|improve this question

























      0












      0








      0








      I previously created two folders full of .debs and followed This question to be able to add them to my /etc/apt/sources.list file: by doing to following:



      cd ~/me/debs
      dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
      echo "deb file:/home/me/debs ./" >> /etc/apt/sources.list


      However now when I went to create another folder and reload the repos with sudo apt-get update I get the following errors.



      Get:6 file:/home/me/debs ./ Release
      Err:6 file:/home/me/debs ./ Release
      File not found - /home/me/debs/./Release (2: No such file or directory)
      E: The repository 'file:/home/me/debs ./ Release' does not have a Release file.
      N: Updating from such a repository can't be done securely, and is therefore disabled by default.
      N: See apt-secure(8) manpage for repository creation and user configuration details.


      I have tried creating the Release file using touch, however the error changes to: E: The repository 'file:/home/me/debs ./ Release' is not signed. after it tries to find a Releases.gpg file.



      All posts I've seen with this error have to deal with acutal sources that aren't local, and I wonder if there's some way I allow apt to include the repo without having a Releases file.










      share|improve this question














      I previously created two folders full of .debs and followed This question to be able to add them to my /etc/apt/sources.list file: by doing to following:



      cd ~/me/debs
      dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
      echo "deb file:/home/me/debs ./" >> /etc/apt/sources.list


      However now when I went to create another folder and reload the repos with sudo apt-get update I get the following errors.



      Get:6 file:/home/me/debs ./ Release
      Err:6 file:/home/me/debs ./ Release
      File not found - /home/me/debs/./Release (2: No such file or directory)
      E: The repository 'file:/home/me/debs ./ Release' does not have a Release file.
      N: Updating from such a repository can't be done securely, and is therefore disabled by default.
      N: See apt-secure(8) manpage for repository creation and user configuration details.


      I have tried creating the Release file using touch, however the error changes to: E: The repository 'file:/home/me/debs ./ Release' is not signed. after it tries to find a Releases.gpg file.



      All posts I've seen with this error have to deal with acutal sources that aren't local, and I wonder if there's some way I allow apt to include the repo without having a Releases file.







      apt updates repository






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 6 at 12:07









      Tonis F. PiipTonis F. Piip

      1111




      1111






















          1 Answer
          1






          active

          oldest

          votes


















          0














          A working solution was to add [trusted=yes] to the line:



          deb [trusted=yes] file:/home/me/debs ./





          share|improve this answer
























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2faskubuntu.com%2fquestions%2f1116089%2fdeb-file-repositry-fails-during-apt-get-update-due-to-not-having-a-release-file%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            A working solution was to add [trusted=yes] to the line:



            deb [trusted=yes] file:/home/me/debs ./





            share|improve this answer




























              0














              A working solution was to add [trusted=yes] to the line:



              deb [trusted=yes] file:/home/me/debs ./





              share|improve this answer


























                0












                0








                0







                A working solution was to add [trusted=yes] to the line:



                deb [trusted=yes] file:/home/me/debs ./





                share|improve this answer













                A working solution was to add [trusted=yes] to the line:



                deb [trusted=yes] file:/home/me/debs ./






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Feb 6 at 15:46









                Tonis F. PiipTonis F. Piip

                1111




                1111






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • 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%2faskubuntu.com%2fquestions%2f1116089%2fdeb-file-repositry-fails-during-apt-get-update-due-to-not-having-a-release-file%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

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?