Installing a package from Debian unstable into testing without setting priorities

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












To install a package from Debian Unstable into my Testing release I've followed a solution found at Unix & Linux.



First, I added unstable as repository in /etc/apt/sources.list.d/unstable.list:



$ sudo cat /etc/apt/sources.list.d/unstable.list
deb http://ftp.pl.debian.org/debian/ unstable main contrib non-free
deb-src http://ftp.pl.debian.org/debian/ unstable main contrib non-free


Second, I set priorities for testing:



$ sudo cat /etc/apt/apt.conf.d/default-release
APT::Default-Release "testing";


After executing apt update update I searched for a package nautilus-actions which should be available for Sid. However, running apt search nautilus-actions give no result. Why?










share|improve this question

























    up vote
    0
    down vote

    favorite












    To install a package from Debian Unstable into my Testing release I've followed a solution found at Unix & Linux.



    First, I added unstable as repository in /etc/apt/sources.list.d/unstable.list:



    $ sudo cat /etc/apt/sources.list.d/unstable.list
    deb http://ftp.pl.debian.org/debian/ unstable main contrib non-free
    deb-src http://ftp.pl.debian.org/debian/ unstable main contrib non-free


    Second, I set priorities for testing:



    $ sudo cat /etc/apt/apt.conf.d/default-release
    APT::Default-Release "testing";


    After executing apt update update I searched for a package nautilus-actions which should be available for Sid. However, running apt search nautilus-actions give no result. Why?










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      To install a package from Debian Unstable into my Testing release I've followed a solution found at Unix & Linux.



      First, I added unstable as repository in /etc/apt/sources.list.d/unstable.list:



      $ sudo cat /etc/apt/sources.list.d/unstable.list
      deb http://ftp.pl.debian.org/debian/ unstable main contrib non-free
      deb-src http://ftp.pl.debian.org/debian/ unstable main contrib non-free


      Second, I set priorities for testing:



      $ sudo cat /etc/apt/apt.conf.d/default-release
      APT::Default-Release "testing";


      After executing apt update update I searched for a package nautilus-actions which should be available for Sid. However, running apt search nautilus-actions give no result. Why?










      share|improve this question













      To install a package from Debian Unstable into my Testing release I've followed a solution found at Unix & Linux.



      First, I added unstable as repository in /etc/apt/sources.list.d/unstable.list:



      $ sudo cat /etc/apt/sources.list.d/unstable.list
      deb http://ftp.pl.debian.org/debian/ unstable main contrib non-free
      deb-src http://ftp.pl.debian.org/debian/ unstable main contrib non-free


      Second, I set priorities for testing:



      $ sudo cat /etc/apt/apt.conf.d/default-release
      APT::Default-Release "testing";


      After executing apt update update I searched for a package nautilus-actions which should be available for Sid. However, running apt search nautilus-actions give no result. Why?







      debian apt






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Sep 10 at 18:13









      menteith

      1718




      1718




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          The reason you can’t install the package in either testing or unstable is that it was removed a year ago because it’s obsolete. It won’t be part of the next release. It’s supposed to be replaced by filemanager-actions but that doesn’t appear to be packaged in Debian (it’s been requested but not yet packaged).



          It’s still listed as available in debports for arm64 but that’s only because it hasn’t been cleaned up there; you can’t actually download it from debports (if you follow the links you’ll end up with a 404).






          share|improve this answer





























            up vote
            1
            down vote













            As your link says it's a debports package, so it is only available on arm64 architecture.
            Are you sure you're using an arm64 based machine?






            share|improve this answer




















            • Thanks, I didn't know that. I don't run that kind of machine.
              – menteith
              Sep 10 at 18:31






            • 1




              No, it’s not “only available on arm64”. The debports listing is a leftover and doesn’t point to an available file. It’s an obsolete package which has been removed.
              – Stephen Kitt
              Sep 10 at 18:47











            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',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            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%2f468074%2finstalling-a-package-from-debian-unstable-into-testing-without-setting-prioritie%23new-answer', 'question_page');

            );

            Post as a guest






























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote



            accepted










            The reason you can’t install the package in either testing or unstable is that it was removed a year ago because it’s obsolete. It won’t be part of the next release. It’s supposed to be replaced by filemanager-actions but that doesn’t appear to be packaged in Debian (it’s been requested but not yet packaged).



            It’s still listed as available in debports for arm64 but that’s only because it hasn’t been cleaned up there; you can’t actually download it from debports (if you follow the links you’ll end up with a 404).






            share|improve this answer


























              up vote
              1
              down vote



              accepted










              The reason you can’t install the package in either testing or unstable is that it was removed a year ago because it’s obsolete. It won’t be part of the next release. It’s supposed to be replaced by filemanager-actions but that doesn’t appear to be packaged in Debian (it’s been requested but not yet packaged).



              It’s still listed as available in debports for arm64 but that’s only because it hasn’t been cleaned up there; you can’t actually download it from debports (if you follow the links you’ll end up with a 404).






              share|improve this answer
























                up vote
                1
                down vote



                accepted







                up vote
                1
                down vote



                accepted






                The reason you can’t install the package in either testing or unstable is that it was removed a year ago because it’s obsolete. It won’t be part of the next release. It’s supposed to be replaced by filemanager-actions but that doesn’t appear to be packaged in Debian (it’s been requested but not yet packaged).



                It’s still listed as available in debports for arm64 but that’s only because it hasn’t been cleaned up there; you can’t actually download it from debports (if you follow the links you’ll end up with a 404).






                share|improve this answer














                The reason you can’t install the package in either testing or unstable is that it was removed a year ago because it’s obsolete. It won’t be part of the next release. It’s supposed to be replaced by filemanager-actions but that doesn’t appear to be packaged in Debian (it’s been requested but not yet packaged).



                It’s still listed as available in debports for arm64 but that’s only because it hasn’t been cleaned up there; you can’t actually download it from debports (if you follow the links you’ll end up with a 404).







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Sep 10 at 18:45

























                answered Sep 10 at 18:39









                Stephen Kitt

                147k22323392




                147k22323392






















                    up vote
                    1
                    down vote













                    As your link says it's a debports package, so it is only available on arm64 architecture.
                    Are you sure you're using an arm64 based machine?






                    share|improve this answer




















                    • Thanks, I didn't know that. I don't run that kind of machine.
                      – menteith
                      Sep 10 at 18:31






                    • 1




                      No, it’s not “only available on arm64”. The debports listing is a leftover and doesn’t point to an available file. It’s an obsolete package which has been removed.
                      – Stephen Kitt
                      Sep 10 at 18:47















                    up vote
                    1
                    down vote













                    As your link says it's a debports package, so it is only available on arm64 architecture.
                    Are you sure you're using an arm64 based machine?






                    share|improve this answer




















                    • Thanks, I didn't know that. I don't run that kind of machine.
                      – menteith
                      Sep 10 at 18:31






                    • 1




                      No, it’s not “only available on arm64”. The debports listing is a leftover and doesn’t point to an available file. It’s an obsolete package which has been removed.
                      – Stephen Kitt
                      Sep 10 at 18:47













                    up vote
                    1
                    down vote










                    up vote
                    1
                    down vote









                    As your link says it's a debports package, so it is only available on arm64 architecture.
                    Are you sure you're using an arm64 based machine?






                    share|improve this answer












                    As your link says it's a debports package, so it is only available on arm64 architecture.
                    Are you sure you're using an arm64 based machine?







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Sep 10 at 18:15









                    Ipor Sircer

                    9,3481920




                    9,3481920











                    • Thanks, I didn't know that. I don't run that kind of machine.
                      – menteith
                      Sep 10 at 18:31






                    • 1




                      No, it’s not “only available on arm64”. The debports listing is a leftover and doesn’t point to an available file. It’s an obsolete package which has been removed.
                      – Stephen Kitt
                      Sep 10 at 18:47

















                    • Thanks, I didn't know that. I don't run that kind of machine.
                      – menteith
                      Sep 10 at 18:31






                    • 1




                      No, it’s not “only available on arm64”. The debports listing is a leftover and doesn’t point to an available file. It’s an obsolete package which has been removed.
                      – Stephen Kitt
                      Sep 10 at 18:47
















                    Thanks, I didn't know that. I don't run that kind of machine.
                    – menteith
                    Sep 10 at 18:31




                    Thanks, I didn't know that. I don't run that kind of machine.
                    – menteith
                    Sep 10 at 18:31




                    1




                    1




                    No, it’s not “only available on arm64”. The debports listing is a leftover and doesn’t point to an available file. It’s an obsolete package which has been removed.
                    – Stephen Kitt
                    Sep 10 at 18:47





                    No, it’s not “only available on arm64”. The debports listing is a leftover and doesn’t point to an available file. It’s an obsolete package which has been removed.
                    – Stephen Kitt
                    Sep 10 at 18:47


















                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f468074%2finstalling-a-package-from-debian-unstable-into-testing-without-setting-prioritie%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay