make command not working ERROR 2
up vote
0
down vote
favorite
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
add a comment |
up vote
0
down vote
favorite
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
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
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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
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
drivers compiling make
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
add a comment |
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
add a comment |
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.
it didn't worked
– Ashish Pal
Jul 22 '14 at 15:07
add a comment |
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
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
|
show 10 more comments
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.
it didn't worked
– Ashish Pal
Jul 22 '14 at 15:07
add a comment |
up vote
0
down vote
Install the drivers from Ubuntu Main Repository:
sudo apt-get install linux-firmware-nonfree
then reboot.
it didn't worked
– Ashish Pal
Jul 22 '14 at 15:07
add a comment |
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.
Install the drivers from Ubuntu Main Repository:
sudo apt-get install linux-firmware-nonfree
then reboot.
answered Jul 22 '14 at 14:58
user308564
it didn't worked
– Ashish Pal
Jul 22 '14 at 15:07
add a comment |
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
add a comment |
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
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
|
show 10 more comments
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
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
|
show 10 more comments
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
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
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
|
show 10 more comments
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
|
show 10 more comments
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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