Unable to install Linux header for current kernel with pacmancan we check remote login information using...

Should I choose Itemized or Standard deduction?

Walking in a rotating spacecraft and Newton's 3rd Law of Motion

On what did Lego base the appearance of the new Hogwarts minifigs?

Can I retract my name from an already published manuscript?

How to properly claim credit for peer review?

Is there a way to help users from having to clicking emails twice before logging into a new sandbox

How can I mix up weapons for large groups of similar monsters/characters?

Why is commutativity optional in multiplication for rings?

Can chords be played on the flute?

How to acknowledge an embarrassing job interview, now that I work directly with the interviewer?

Is my plan for fixing my water heater leak bad?

ip vs ifconfig commands pros and cons

Could quantum mechanics be necessary to analyze some biology scenarios?

Word to be used for "standing with your toes pointing out"

Why is my solution for the partial pressures of two different gases incorrect?

What happens if a wizard reaches level 20 but has no 3rd-level spells that they can use with the Signature Spells feature?

For Loop and Sum

Dilemma of explaining to interviewer that he is the reason for declining second interview

How to avoid being sexist when trying to employ someone to function in a very sexist environment?

Why zero tolerance on nudity in space?

What's a good word to describe a public place that looks like it wouldn't be rough?

Predict mars robot position

Do commercial flights continue with an engine out?

Find the number of ways to express 1050 as sum of consecutive integers



Unable to install Linux header for current kernel with pacman


can we check remote login information using finger commandWhy has my Battery Icon stopped updating in Linux?Installing xorg-x11-devel package in SLES 11 SP2Installing new driver on Linux, missing the 'Build' directoryUnable to use wireless adapter on Kali Linux(ARM) due to missing linux headersHow to SWITCH to a new version of Kali Linux?Package Manager installation for Linux from scratch (LFS)Unable to install guest additions in Kali 2018yum install php dependency errors













2















I have installed kernel version 3.16.1-1 but i am unable to install the linux headers, as pacman attempts to install the latest version. How do i install the right kernel headers? I am using a UDOO Quad.



# uname -r
3.16.1-1-ARCH

# pacman -S linux-armv7-headers
resolving dependencies...
looking for inter-conflicts...
:: linux-armv7-headers and linux-am33x-headers are in conflict (linux-headers). Remove linux-am33x-headers? [y/N] y

Packages (2): linux-am33x-headers-4.1.3-3 [removal] linux-armv7-headers-4.1.4-1

Total Download Size: 6.26 MiB
Total Installed Size: 43.26 MiB
Net Upgrade Size: 1.59 MiB

# pacman -S linux-armv7-headers-3.16.1-1
error: target not found: linux-armv7-headers-3.16.1-1









share|improve this question



























    2















    I have installed kernel version 3.16.1-1 but i am unable to install the linux headers, as pacman attempts to install the latest version. How do i install the right kernel headers? I am using a UDOO Quad.



    # uname -r
    3.16.1-1-ARCH

    # pacman -S linux-armv7-headers
    resolving dependencies...
    looking for inter-conflicts...
    :: linux-armv7-headers and linux-am33x-headers are in conflict (linux-headers). Remove linux-am33x-headers? [y/N] y

    Packages (2): linux-am33x-headers-4.1.3-3 [removal] linux-armv7-headers-4.1.4-1

    Total Download Size: 6.26 MiB
    Total Installed Size: 43.26 MiB
    Net Upgrade Size: 1.59 MiB

    # pacman -S linux-armv7-headers-3.16.1-1
    error: target not found: linux-armv7-headers-3.16.1-1









    share|improve this question

























      2












      2








      2


      1






      I have installed kernel version 3.16.1-1 but i am unable to install the linux headers, as pacman attempts to install the latest version. How do i install the right kernel headers? I am using a UDOO Quad.



      # uname -r
      3.16.1-1-ARCH

      # pacman -S linux-armv7-headers
      resolving dependencies...
      looking for inter-conflicts...
      :: linux-armv7-headers and linux-am33x-headers are in conflict (linux-headers). Remove linux-am33x-headers? [y/N] y

      Packages (2): linux-am33x-headers-4.1.3-3 [removal] linux-armv7-headers-4.1.4-1

      Total Download Size: 6.26 MiB
      Total Installed Size: 43.26 MiB
      Net Upgrade Size: 1.59 MiB

      # pacman -S linux-armv7-headers-3.16.1-1
      error: target not found: linux-armv7-headers-3.16.1-1









      share|improve this question














      I have installed kernel version 3.16.1-1 but i am unable to install the linux headers, as pacman attempts to install the latest version. How do i install the right kernel headers? I am using a UDOO Quad.



      # uname -r
      3.16.1-1-ARCH

      # pacman -S linux-armv7-headers
      resolving dependencies...
      looking for inter-conflicts...
      :: linux-armv7-headers and linux-am33x-headers are in conflict (linux-headers). Remove linux-am33x-headers? [y/N] y

      Packages (2): linux-am33x-headers-4.1.3-3 [removal] linux-armv7-headers-4.1.4-1

      Total Download Size: 6.26 MiB
      Total Installed Size: 43.26 MiB
      Net Upgrade Size: 1.59 MiB

      # pacman -S linux-armv7-headers-3.16.1-1
      error: target not found: linux-armv7-headers-3.16.1-1






      linux arch-linux






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 5 '15 at 10:55









      JavaCakeJavaCake

      11115




      11115






















          2 Answers
          2






          active

          oldest

          votes


















          1














          You probably just need to specify the version when you try to install:



          pacman -S linux-armv7-headers-3.16.1-1





          share|improve this answer
























          • As you can see i have already tried that, and it failed.

            – JavaCake
            Aug 5 '15 at 19:26











          • Maybe it's not in the package database. Did you try to search: pacman -Ss linux-.*-headers?

            – gogators
            Aug 6 '15 at 17:52



















          1














          Update the database.



          $ sudo pacman -Syy


          Then update your linux



          $ sudo pacman -S linux


          Reboot so new kernel loads. Then install linux-header.



          $ sudo pacman -S linux-headers


          Or whichever kernel you want.



          NOTE: See comments below. This can break your system.






          share|improve this answer





















          • 1





            Be careful with this. After running those first 2 commands and rebooting, I am unable to get back to the login screen. Likely just a quirk of the distro that I'm using (Antergos w/ Cinnamon), but I expect that other arch noobs like myself will find this answer and try it.

            – Eric Seastrand
            Nov 13 '17 at 23:15











          • @eric pacman -Syy can break the system. Did you check if gdm started using Wayland instead of x11? See here wiki.archlinux.org/index.php/GDM (at bottom)

            – Dilawar
            Nov 14 '17 at 3:06











          • It was in a virtual machine, so I already rolled back to an earlier snapshot. When I get some time later, I'll see if I can reproduce it for the sake of learning and helping others :)

            – Eric Seastrand
            Nov 14 '17 at 12:27











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          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%2fsuperuser.com%2fquestions%2f951055%2funable-to-install-linux-header-for-current-kernel-with-pacman%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









          1














          You probably just need to specify the version when you try to install:



          pacman -S linux-armv7-headers-3.16.1-1





          share|improve this answer
























          • As you can see i have already tried that, and it failed.

            – JavaCake
            Aug 5 '15 at 19:26











          • Maybe it's not in the package database. Did you try to search: pacman -Ss linux-.*-headers?

            – gogators
            Aug 6 '15 at 17:52
















          1














          You probably just need to specify the version when you try to install:



          pacman -S linux-armv7-headers-3.16.1-1





          share|improve this answer
























          • As you can see i have already tried that, and it failed.

            – JavaCake
            Aug 5 '15 at 19:26











          • Maybe it's not in the package database. Did you try to search: pacman -Ss linux-.*-headers?

            – gogators
            Aug 6 '15 at 17:52














          1












          1








          1







          You probably just need to specify the version when you try to install:



          pacman -S linux-armv7-headers-3.16.1-1





          share|improve this answer













          You probably just need to specify the version when you try to install:



          pacman -S linux-armv7-headers-3.16.1-1






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 5 '15 at 16:44









          gogatorsgogators

          1,113612




          1,113612













          • As you can see i have already tried that, and it failed.

            – JavaCake
            Aug 5 '15 at 19:26











          • Maybe it's not in the package database. Did you try to search: pacman -Ss linux-.*-headers?

            – gogators
            Aug 6 '15 at 17:52



















          • As you can see i have already tried that, and it failed.

            – JavaCake
            Aug 5 '15 at 19:26











          • Maybe it's not in the package database. Did you try to search: pacman -Ss linux-.*-headers?

            – gogators
            Aug 6 '15 at 17:52

















          As you can see i have already tried that, and it failed.

          – JavaCake
          Aug 5 '15 at 19:26





          As you can see i have already tried that, and it failed.

          – JavaCake
          Aug 5 '15 at 19:26













          Maybe it's not in the package database. Did you try to search: pacman -Ss linux-.*-headers?

          – gogators
          Aug 6 '15 at 17:52





          Maybe it's not in the package database. Did you try to search: pacman -Ss linux-.*-headers?

          – gogators
          Aug 6 '15 at 17:52













          1














          Update the database.



          $ sudo pacman -Syy


          Then update your linux



          $ sudo pacman -S linux


          Reboot so new kernel loads. Then install linux-header.



          $ sudo pacman -S linux-headers


          Or whichever kernel you want.



          NOTE: See comments below. This can break your system.






          share|improve this answer





















          • 1





            Be careful with this. After running those first 2 commands and rebooting, I am unable to get back to the login screen. Likely just a quirk of the distro that I'm using (Antergos w/ Cinnamon), but I expect that other arch noobs like myself will find this answer and try it.

            – Eric Seastrand
            Nov 13 '17 at 23:15











          • @eric pacman -Syy can break the system. Did you check if gdm started using Wayland instead of x11? See here wiki.archlinux.org/index.php/GDM (at bottom)

            – Dilawar
            Nov 14 '17 at 3:06











          • It was in a virtual machine, so I already rolled back to an earlier snapshot. When I get some time later, I'll see if I can reproduce it for the sake of learning and helping others :)

            – Eric Seastrand
            Nov 14 '17 at 12:27
















          1














          Update the database.



          $ sudo pacman -Syy


          Then update your linux



          $ sudo pacman -S linux


          Reboot so new kernel loads. Then install linux-header.



          $ sudo pacman -S linux-headers


          Or whichever kernel you want.



          NOTE: See comments below. This can break your system.






          share|improve this answer





















          • 1





            Be careful with this. After running those first 2 commands and rebooting, I am unable to get back to the login screen. Likely just a quirk of the distro that I'm using (Antergos w/ Cinnamon), but I expect that other arch noobs like myself will find this answer and try it.

            – Eric Seastrand
            Nov 13 '17 at 23:15











          • @eric pacman -Syy can break the system. Did you check if gdm started using Wayland instead of x11? See here wiki.archlinux.org/index.php/GDM (at bottom)

            – Dilawar
            Nov 14 '17 at 3:06











          • It was in a virtual machine, so I already rolled back to an earlier snapshot. When I get some time later, I'll see if I can reproduce it for the sake of learning and helping others :)

            – Eric Seastrand
            Nov 14 '17 at 12:27














          1












          1








          1







          Update the database.



          $ sudo pacman -Syy


          Then update your linux



          $ sudo pacman -S linux


          Reboot so new kernel loads. Then install linux-header.



          $ sudo pacman -S linux-headers


          Or whichever kernel you want.



          NOTE: See comments below. This can break your system.






          share|improve this answer















          Update the database.



          $ sudo pacman -Syy


          Then update your linux



          $ sudo pacman -S linux


          Reboot so new kernel loads. Then install linux-header.



          $ sudo pacman -S linux-headers


          Or whichever kernel you want.



          NOTE: See comments below. This can break your system.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 12 mins ago

























          answered Nov 2 '17 at 7:09









          DilawarDilawar

          155118




          155118








          • 1





            Be careful with this. After running those first 2 commands and rebooting, I am unable to get back to the login screen. Likely just a quirk of the distro that I'm using (Antergos w/ Cinnamon), but I expect that other arch noobs like myself will find this answer and try it.

            – Eric Seastrand
            Nov 13 '17 at 23:15











          • @eric pacman -Syy can break the system. Did you check if gdm started using Wayland instead of x11? See here wiki.archlinux.org/index.php/GDM (at bottom)

            – Dilawar
            Nov 14 '17 at 3:06











          • It was in a virtual machine, so I already rolled back to an earlier snapshot. When I get some time later, I'll see if I can reproduce it for the sake of learning and helping others :)

            – Eric Seastrand
            Nov 14 '17 at 12:27














          • 1





            Be careful with this. After running those first 2 commands and rebooting, I am unable to get back to the login screen. Likely just a quirk of the distro that I'm using (Antergos w/ Cinnamon), but I expect that other arch noobs like myself will find this answer and try it.

            – Eric Seastrand
            Nov 13 '17 at 23:15











          • @eric pacman -Syy can break the system. Did you check if gdm started using Wayland instead of x11? See here wiki.archlinux.org/index.php/GDM (at bottom)

            – Dilawar
            Nov 14 '17 at 3:06











          • It was in a virtual machine, so I already rolled back to an earlier snapshot. When I get some time later, I'll see if I can reproduce it for the sake of learning and helping others :)

            – Eric Seastrand
            Nov 14 '17 at 12:27








          1




          1





          Be careful with this. After running those first 2 commands and rebooting, I am unable to get back to the login screen. Likely just a quirk of the distro that I'm using (Antergos w/ Cinnamon), but I expect that other arch noobs like myself will find this answer and try it.

          – Eric Seastrand
          Nov 13 '17 at 23:15





          Be careful with this. After running those first 2 commands and rebooting, I am unable to get back to the login screen. Likely just a quirk of the distro that I'm using (Antergos w/ Cinnamon), but I expect that other arch noobs like myself will find this answer and try it.

          – Eric Seastrand
          Nov 13 '17 at 23:15













          @eric pacman -Syy can break the system. Did you check if gdm started using Wayland instead of x11? See here wiki.archlinux.org/index.php/GDM (at bottom)

          – Dilawar
          Nov 14 '17 at 3:06





          @eric pacman -Syy can break the system. Did you check if gdm started using Wayland instead of x11? See here wiki.archlinux.org/index.php/GDM (at bottom)

          – Dilawar
          Nov 14 '17 at 3:06













          It was in a virtual machine, so I already rolled back to an earlier snapshot. When I get some time later, I'll see if I can reproduce it for the sake of learning and helping others :)

          – Eric Seastrand
          Nov 14 '17 at 12:27





          It was in a virtual machine, so I already rolled back to an earlier snapshot. When I get some time later, I'll see if I can reproduce it for the sake of learning and helping others :)

          – Eric Seastrand
          Nov 14 '17 at 12:27


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Super User!


          • 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%2fsuperuser.com%2fquestions%2f951055%2funable-to-install-linux-header-for-current-kernel-with-pacman%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

          Couldn't open a raw socket. Error: Permission denied (13) (nmap)Is it possible to run networking commands...

          VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

          Why not use the yoke to control yaw, as well as pitch and roll? Announcing the arrival of...