make command not working ERROR 2











up vote
0
down vote

favorite
1












I was trying to install Realtek_RTS5229_Linux_Driver_v1.07 which I downloaded from [here][1]



When I run the make command I get the following error:-



make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-32-generic'
make: *** [LINUX] Error 2


I have 64 bit Ubuntu 12.04 LTS installed.










share|improve this question
























  • Your link is not working, can you please add the correct one?
    – chaos
    Jul 22 '14 at 13:45










  • here is the link WebUser:AxPL9s3k@95.130.192.218/pc/crc/…
    – Ashish Pal
    Jul 22 '14 at 14:17















up vote
0
down vote

favorite
1












I was trying to install Realtek_RTS5229_Linux_Driver_v1.07 which I downloaded from [here][1]



When I run the make command I get the following error:-



make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-32-generic'
make: *** [LINUX] Error 2


I have 64 bit Ubuntu 12.04 LTS installed.










share|improve this question
























  • Your link is not working, can you please add the correct one?
    – chaos
    Jul 22 '14 at 13:45










  • here is the link WebUser:AxPL9s3k@95.130.192.218/pc/crc/…
    – Ashish Pal
    Jul 22 '14 at 14:17













up vote
0
down vote

favorite
1









up vote
0
down vote

favorite
1






1





I was trying to install Realtek_RTS5229_Linux_Driver_v1.07 which I downloaded from [here][1]



When I run the make command I get the following error:-



make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-32-generic'
make: *** [LINUX] Error 2


I have 64 bit Ubuntu 12.04 LTS installed.










share|improve this question















I was trying to install Realtek_RTS5229_Linux_Driver_v1.07 which I downloaded from [here][1]



When I run the make command I get the following error:-



make[1]: Leaving directory `/usr/src/linux-headers-3.13.0-32-generic'
make: *** [LINUX] Error 2


I have 64 bit Ubuntu 12.04 LTS installed.







drivers compiling make






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 22 '14 at 13:44









chaos

18.9k85667




18.9k85667










asked Jul 22 '14 at 13:36









Ashish Pal

19125




19125












  • Your link is not working, can you please add the correct one?
    – chaos
    Jul 22 '14 at 13:45










  • here is the link WebUser:AxPL9s3k@95.130.192.218/pc/crc/…
    – Ashish Pal
    Jul 22 '14 at 14:17


















  • Your link is not working, can you please add the correct one?
    – chaos
    Jul 22 '14 at 13:45










  • here is the link WebUser:AxPL9s3k@95.130.192.218/pc/crc/…
    – Ashish Pal
    Jul 22 '14 at 14:17
















Your link is not working, can you please add the correct one?
– chaos
Jul 22 '14 at 13:45




Your link is not working, can you please add the correct one?
– chaos
Jul 22 '14 at 13:45












here is the link WebUser:AxPL9s3k@95.130.192.218/pc/crc/…
– Ashish Pal
Jul 22 '14 at 14:17




here is the link WebUser:AxPL9s3k@95.130.192.218/pc/crc/…
– Ashish Pal
Jul 22 '14 at 14:17










2 Answers
2






active

oldest

votes

















up vote
0
down vote













Install the drivers from Ubuntu Main Repository:



sudo apt-get install linux-firmware-nonfree


then reboot.






share|improve this answer





















  • it didn't worked
    – Ashish Pal
    Jul 22 '14 at 15:07


















up vote
0
down vote













I believe the file is too old to compile on Ubuntu 14.04. It won't compile on my system either. I notice that there are a number of files in your package named rtsx.something. There are several drivers called rtsx built in:



/lib/modules/3.13.0-32-generic/kernel/drivers/memstick/host/rtsx_pci_ms.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mfd/rtsx_pci.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mmc/host/rtsx_pci_sdmmc.ko


Are you certain that the driver you need isn't already present? What does this tell us about the device?



lspci -nn


I suggest you try:



sudo apt-get install git
git clone https://github.com/mcfloundinho/rts5229.git
cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229


It makes with one warning but no errors on my system.



Please edit /etc/modprobe.d/blacklist.conf to change this line:



#Wireless drivers conflicting with rt3562sta


To this, with a space:



# Wireless drivers conflicting with rt3562sta


Proofread, save and close the text editor.



You have compiled the driver for your currently running kernel only. When Update Manager installs a newer linux-image, after the requested reboot, re-compile:



cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229





share|improve this answer























  • I have ubuntu 12.04 not 14.04
    – Ashish Pal
    Jul 22 '14 at 14:29










  • I have ubuntu 12.04 not 14.04 and lspci -nn shows a big list of all Host bridge and in the last I found this 01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c) 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader [10ec:5229] (rev 01) 03:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290] 03:00.1 Bluetooth [0d11]: Ralink corp. RT3290 Bluetooth [1814:3298]
    – Ashish Pal
    Jul 22 '14 at 14:32










  • Although you have 12.04, your kernel, 3.13.0-xx, is the newer kernel used in 14.04. Please see my edit above in a few minutes.
    – chili555
    Jul 22 '14 at 14:39










  • Till sudo make install everything goes fine but sudo modprobe rts5229 gives error WARNING: /etc/modprobe.d/blacklist.conf line 56: ignoring bad line starting with '“blacklist' FATAL: Module rts5229 not found.
    – Ashish Pal
    Jul 22 '14 at 14:55












  • Please see my edit above. Notice the addition of sudo depmod -a
    – chili555
    Jul 22 '14 at 15:11













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',
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%2f501115%2fmake-command-not-working-error-2%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








up vote
0
down vote













Install the drivers from Ubuntu Main Repository:



sudo apt-get install linux-firmware-nonfree


then reboot.






share|improve this answer





















  • it didn't worked
    – Ashish Pal
    Jul 22 '14 at 15:07















up vote
0
down vote













Install the drivers from Ubuntu Main Repository:



sudo apt-get install linux-firmware-nonfree


then reboot.






share|improve this answer





















  • it didn't worked
    – Ashish Pal
    Jul 22 '14 at 15:07













up vote
0
down vote










up vote
0
down vote









Install the drivers from Ubuntu Main Repository:



sudo apt-get install linux-firmware-nonfree


then reboot.






share|improve this answer












Install the drivers from Ubuntu Main Repository:



sudo apt-get install linux-firmware-nonfree


then reboot.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jul 22 '14 at 14:58







user308564



















  • it didn't worked
    – Ashish Pal
    Jul 22 '14 at 15:07


















  • it didn't worked
    – Ashish Pal
    Jul 22 '14 at 15:07
















it didn't worked
– Ashish Pal
Jul 22 '14 at 15:07




it didn't worked
– Ashish Pal
Jul 22 '14 at 15:07












up vote
0
down vote













I believe the file is too old to compile on Ubuntu 14.04. It won't compile on my system either. I notice that there are a number of files in your package named rtsx.something. There are several drivers called rtsx built in:



/lib/modules/3.13.0-32-generic/kernel/drivers/memstick/host/rtsx_pci_ms.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mfd/rtsx_pci.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mmc/host/rtsx_pci_sdmmc.ko


Are you certain that the driver you need isn't already present? What does this tell us about the device?



lspci -nn


I suggest you try:



sudo apt-get install git
git clone https://github.com/mcfloundinho/rts5229.git
cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229


It makes with one warning but no errors on my system.



Please edit /etc/modprobe.d/blacklist.conf to change this line:



#Wireless drivers conflicting with rt3562sta


To this, with a space:



# Wireless drivers conflicting with rt3562sta


Proofread, save and close the text editor.



You have compiled the driver for your currently running kernel only. When Update Manager installs a newer linux-image, after the requested reboot, re-compile:



cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229





share|improve this answer























  • I have ubuntu 12.04 not 14.04
    – Ashish Pal
    Jul 22 '14 at 14:29










  • I have ubuntu 12.04 not 14.04 and lspci -nn shows a big list of all Host bridge and in the last I found this 01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c) 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader [10ec:5229] (rev 01) 03:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290] 03:00.1 Bluetooth [0d11]: Ralink corp. RT3290 Bluetooth [1814:3298]
    – Ashish Pal
    Jul 22 '14 at 14:32










  • Although you have 12.04, your kernel, 3.13.0-xx, is the newer kernel used in 14.04. Please see my edit above in a few minutes.
    – chili555
    Jul 22 '14 at 14:39










  • Till sudo make install everything goes fine but sudo modprobe rts5229 gives error WARNING: /etc/modprobe.d/blacklist.conf line 56: ignoring bad line starting with '“blacklist' FATAL: Module rts5229 not found.
    – Ashish Pal
    Jul 22 '14 at 14:55












  • Please see my edit above. Notice the addition of sudo depmod -a
    – chili555
    Jul 22 '14 at 15:11

















up vote
0
down vote













I believe the file is too old to compile on Ubuntu 14.04. It won't compile on my system either. I notice that there are a number of files in your package named rtsx.something. There are several drivers called rtsx built in:



/lib/modules/3.13.0-32-generic/kernel/drivers/memstick/host/rtsx_pci_ms.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mfd/rtsx_pci.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mmc/host/rtsx_pci_sdmmc.ko


Are you certain that the driver you need isn't already present? What does this tell us about the device?



lspci -nn


I suggest you try:



sudo apt-get install git
git clone https://github.com/mcfloundinho/rts5229.git
cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229


It makes with one warning but no errors on my system.



Please edit /etc/modprobe.d/blacklist.conf to change this line:



#Wireless drivers conflicting with rt3562sta


To this, with a space:



# Wireless drivers conflicting with rt3562sta


Proofread, save and close the text editor.



You have compiled the driver for your currently running kernel only. When Update Manager installs a newer linux-image, after the requested reboot, re-compile:



cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229





share|improve this answer























  • I have ubuntu 12.04 not 14.04
    – Ashish Pal
    Jul 22 '14 at 14:29










  • I have ubuntu 12.04 not 14.04 and lspci -nn shows a big list of all Host bridge and in the last I found this 01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c) 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader [10ec:5229] (rev 01) 03:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290] 03:00.1 Bluetooth [0d11]: Ralink corp. RT3290 Bluetooth [1814:3298]
    – Ashish Pal
    Jul 22 '14 at 14:32










  • Although you have 12.04, your kernel, 3.13.0-xx, is the newer kernel used in 14.04. Please see my edit above in a few minutes.
    – chili555
    Jul 22 '14 at 14:39










  • Till sudo make install everything goes fine but sudo modprobe rts5229 gives error WARNING: /etc/modprobe.d/blacklist.conf line 56: ignoring bad line starting with '“blacklist' FATAL: Module rts5229 not found.
    – Ashish Pal
    Jul 22 '14 at 14:55












  • Please see my edit above. Notice the addition of sudo depmod -a
    – chili555
    Jul 22 '14 at 15:11















up vote
0
down vote










up vote
0
down vote









I believe the file is too old to compile on Ubuntu 14.04. It won't compile on my system either. I notice that there are a number of files in your package named rtsx.something. There are several drivers called rtsx built in:



/lib/modules/3.13.0-32-generic/kernel/drivers/memstick/host/rtsx_pci_ms.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mfd/rtsx_pci.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mmc/host/rtsx_pci_sdmmc.ko


Are you certain that the driver you need isn't already present? What does this tell us about the device?



lspci -nn


I suggest you try:



sudo apt-get install git
git clone https://github.com/mcfloundinho/rts5229.git
cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229


It makes with one warning but no errors on my system.



Please edit /etc/modprobe.d/blacklist.conf to change this line:



#Wireless drivers conflicting with rt3562sta


To this, with a space:



# Wireless drivers conflicting with rt3562sta


Proofread, save and close the text editor.



You have compiled the driver for your currently running kernel only. When Update Manager installs a newer linux-image, after the requested reboot, re-compile:



cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229





share|improve this answer














I believe the file is too old to compile on Ubuntu 14.04. It won't compile on my system either. I notice that there are a number of files in your package named rtsx.something. There are several drivers called rtsx built in:



/lib/modules/3.13.0-32-generic/kernel/drivers/memstick/host/rtsx_pci_ms.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mfd/rtsx_pci.ko
/lib/modules/3.13.0-32-generic/kernel/drivers/mmc/host/rtsx_pci_sdmmc.ko


Are you certain that the driver you need isn't already present? What does this tell us about the device?



lspci -nn


I suggest you try:



sudo apt-get install git
git clone https://github.com/mcfloundinho/rts5229.git
cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229


It makes with one warning but no errors on my system.



Please edit /etc/modprobe.d/blacklist.conf to change this line:



#Wireless drivers conflicting with rt3562sta


To this, with a space:



# Wireless drivers conflicting with rt3562sta


Proofread, save and close the text editor.



You have compiled the driver for your currently running kernel only. When Update Manager installs a newer linux-image, after the requested reboot, re-compile:



cd rts5229
make clean
make
sudo make install
sudo depmod -a
sudo modprobe rts5229






share|improve this answer














share|improve this answer



share|improve this answer








edited Jul 22 '14 at 15:47

























answered Jul 22 '14 at 14:26









chili555

37.6k55077




37.6k55077












  • I have ubuntu 12.04 not 14.04
    – Ashish Pal
    Jul 22 '14 at 14:29










  • I have ubuntu 12.04 not 14.04 and lspci -nn shows a big list of all Host bridge and in the last I found this 01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c) 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader [10ec:5229] (rev 01) 03:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290] 03:00.1 Bluetooth [0d11]: Ralink corp. RT3290 Bluetooth [1814:3298]
    – Ashish Pal
    Jul 22 '14 at 14:32










  • Although you have 12.04, your kernel, 3.13.0-xx, is the newer kernel used in 14.04. Please see my edit above in a few minutes.
    – chili555
    Jul 22 '14 at 14:39










  • Till sudo make install everything goes fine but sudo modprobe rts5229 gives error WARNING: /etc/modprobe.d/blacklist.conf line 56: ignoring bad line starting with '“blacklist' FATAL: Module rts5229 not found.
    – Ashish Pal
    Jul 22 '14 at 14:55












  • Please see my edit above. Notice the addition of sudo depmod -a
    – chili555
    Jul 22 '14 at 15:11




















  • I have ubuntu 12.04 not 14.04
    – Ashish Pal
    Jul 22 '14 at 14:29










  • I have ubuntu 12.04 not 14.04 and lspci -nn shows a big list of all Host bridge and in the last I found this 01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c) 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader [10ec:5229] (rev 01) 03:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290] 03:00.1 Bluetooth [0d11]: Ralink corp. RT3290 Bluetooth [1814:3298]
    – Ashish Pal
    Jul 22 '14 at 14:32










  • Although you have 12.04, your kernel, 3.13.0-xx, is the newer kernel used in 14.04. Please see my edit above in a few minutes.
    – chili555
    Jul 22 '14 at 14:39










  • Till sudo make install everything goes fine but sudo modprobe rts5229 gives error WARNING: /etc/modprobe.d/blacklist.conf line 56: ignoring bad line starting with '“blacklist' FATAL: Module rts5229 not found.
    – Ashish Pal
    Jul 22 '14 at 14:55












  • Please see my edit above. Notice the addition of sudo depmod -a
    – chili555
    Jul 22 '14 at 15:11


















I have ubuntu 12.04 not 14.04
– Ashish Pal
Jul 22 '14 at 14:29




I have ubuntu 12.04 not 14.04
– Ashish Pal
Jul 22 '14 at 14:29












I have ubuntu 12.04 not 14.04 and lspci -nn shows a big list of all Host bridge and in the last I found this 01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c) 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader [10ec:5229] (rev 01) 03:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290] 03:00.1 Bluetooth [0d11]: Ralink corp. RT3290 Bluetooth [1814:3298]
– Ashish Pal
Jul 22 '14 at 14:32




I have ubuntu 12.04 not 14.04 and lspci -nn shows a big list of all Host bridge and in the last I found this 01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c) 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader [10ec:5229] (rev 01) 03:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290] 03:00.1 Bluetooth [0d11]: Ralink corp. RT3290 Bluetooth [1814:3298]
– Ashish Pal
Jul 22 '14 at 14:32












Although you have 12.04, your kernel, 3.13.0-xx, is the newer kernel used in 14.04. Please see my edit above in a few minutes.
– chili555
Jul 22 '14 at 14:39




Although you have 12.04, your kernel, 3.13.0-xx, is the newer kernel used in 14.04. Please see my edit above in a few minutes.
– chili555
Jul 22 '14 at 14:39












Till sudo make install everything goes fine but sudo modprobe rts5229 gives error WARNING: /etc/modprobe.d/blacklist.conf line 56: ignoring bad line starting with '“blacklist' FATAL: Module rts5229 not found.
– Ashish Pal
Jul 22 '14 at 14:55






Till sudo make install everything goes fine but sudo modprobe rts5229 gives error WARNING: /etc/modprobe.d/blacklist.conf line 56: ignoring bad line starting with '“blacklist' FATAL: Module rts5229 not found.
– Ashish Pal
Jul 22 '14 at 14:55














Please see my edit above. Notice the addition of sudo depmod -a
– chili555
Jul 22 '14 at 15:11






Please see my edit above. Notice the addition of sudo depmod -a
– chili555
Jul 22 '14 at 15:11




















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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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%2f501115%2fmake-command-not-working-error-2%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

Quarter-circle Tiles

build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

Mont Emei