Getting error in compiling install.sh of a wireless driver





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















I am trying to install a wireless driver that is provided with the adapter. but running




sudo bash install.sh




I am getting the error. According to the readme file this should be the install script basically but it shows errors during the process. so the output from the commands and the errors are:




cc1: some warnings being treated as errors
scripts/Makefile.build:325: recipe for target '/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105/core/rtw_cmd.o' failed
make[2]: *** [/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105/core/rtw_cmd.o] Error 1
Makefile:1534: recipe for target '_module_/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105' failed
make[1]: *** [_module_/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.18.0-17-generic'
Makefile:504: recipe for target 'modules' failed
make: *** [modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg



And the link to the wireless driver is https://drive.google.com/open?id=1o2QwkaKErzGZrzNmzmFaHg9FsmE0HrmD If anybody knows what the problem is and how to solve it please do tell.










share|improve this question







New contributor




The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • It is quite unlikely that a circa-2012 driver suite will ever build on any recent Ubuntu version as you've seen. Let's find a better way. Please edit your question to add the result of the terminal command: lsusb. Welcome to Ask Ubuntu.

    – chili555
    yesterday













  • @chili555 the result is: 0bda:f179 Realtek Semicondictor Corp.

    – The Blank
    yesterday


















0















I am trying to install a wireless driver that is provided with the adapter. but running




sudo bash install.sh




I am getting the error. According to the readme file this should be the install script basically but it shows errors during the process. so the output from the commands and the errors are:




cc1: some warnings being treated as errors
scripts/Makefile.build:325: recipe for target '/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105/core/rtw_cmd.o' failed
make[2]: *** [/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105/core/rtw_cmd.o] Error 1
Makefile:1534: recipe for target '_module_/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105' failed
make[1]: *** [_module_/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.18.0-17-generic'
Makefile:504: recipe for target 'modules' failed
make: *** [modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg



And the link to the wireless driver is https://drive.google.com/open?id=1o2QwkaKErzGZrzNmzmFaHg9FsmE0HrmD If anybody knows what the problem is and how to solve it please do tell.










share|improve this question







New contributor




The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • It is quite unlikely that a circa-2012 driver suite will ever build on any recent Ubuntu version as you've seen. Let's find a better way. Please edit your question to add the result of the terminal command: lsusb. Welcome to Ask Ubuntu.

    – chili555
    yesterday













  • @chili555 the result is: 0bda:f179 Realtek Semicondictor Corp.

    – The Blank
    yesterday














0












0








0








I am trying to install a wireless driver that is provided with the adapter. but running




sudo bash install.sh




I am getting the error. According to the readme file this should be the install script basically but it shows errors during the process. so the output from the commands and the errors are:




cc1: some warnings being treated as errors
scripts/Makefile.build:325: recipe for target '/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105/core/rtw_cmd.o' failed
make[2]: *** [/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105/core/rtw_cmd.o] Error 1
Makefile:1534: recipe for target '_module_/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105' failed
make[1]: *** [_module_/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.18.0-17-generic'
Makefile:504: recipe for target 'modules' failed
make: *** [modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg



And the link to the wireless driver is https://drive.google.com/open?id=1o2QwkaKErzGZrzNmzmFaHg9FsmE0HrmD If anybody knows what the problem is and how to solve it please do tell.










share|improve this question







New contributor




The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I am trying to install a wireless driver that is provided with the adapter. but running




sudo bash install.sh




I am getting the error. According to the readme file this should be the install script basically but it shows errors during the process. so the output from the commands and the errors are:




cc1: some warnings being treated as errors
scripts/Makefile.build:325: recipe for target '/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105/core/rtw_cmd.o' failed
make[2]: *** [/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105/core/rtw_cmd.o] Error 1
Makefile:1534: recipe for target '_module_/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105' failed
make[1]: *** [_module_/home/the_blank/Desktop/RTL8188C_8192C_USB_linux_v3.4.4_4749.20121105/driver/rtl8188C_8192C_usb_linux_v3.4.4_4749.20121105] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.18.0-17-generic'
Makefile:504: recipe for target 'modules' failed
make: *** [modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg



And the link to the wireless driver is https://drive.google.com/open?id=1o2QwkaKErzGZrzNmzmFaHg9FsmE0HrmD If anybody knows what the problem is and how to solve it please do tell.







drivers compiling make






share|improve this question







New contributor




The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









The BlankThe Blank

83




83




New contributor




The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






The Blank is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • It is quite unlikely that a circa-2012 driver suite will ever build on any recent Ubuntu version as you've seen. Let's find a better way. Please edit your question to add the result of the terminal command: lsusb. Welcome to Ask Ubuntu.

    – chili555
    yesterday













  • @chili555 the result is: 0bda:f179 Realtek Semicondictor Corp.

    – The Blank
    yesterday



















  • It is quite unlikely that a circa-2012 driver suite will ever build on any recent Ubuntu version as you've seen. Let's find a better way. Please edit your question to add the result of the terminal command: lsusb. Welcome to Ask Ubuntu.

    – chili555
    yesterday













  • @chili555 the result is: 0bda:f179 Realtek Semicondictor Corp.

    – The Blank
    yesterday

















It is quite unlikely that a circa-2012 driver suite will ever build on any recent Ubuntu version as you've seen. Let's find a better way. Please edit your question to add the result of the terminal command: lsusb. Welcome to Ask Ubuntu.

– chili555
yesterday







It is quite unlikely that a circa-2012 driver suite will ever build on any recent Ubuntu version as you've seen. Let's find a better way. Please edit your question to add the result of the terminal command: lsusb. Welcome to Ask Ubuntu.

– chili555
yesterday















@chili555 the result is: 0bda:f179 Realtek Semicondictor Corp.

– The Blank
yesterday





@chili555 the result is: 0bda:f179 Realtek Semicondictor Corp.

– The Blank
yesterday










1 Answer
1






active

oldest

votes


















0














Please get a temporary working internet connection by ethernet, tethering or any means possible. Open a terminal and do:



sudo apt update
sudo apt install build-essential git dkms linux-headers-generic
git clone https://github.com/kelebek333/rtl8188fu
cd rtl8188fu
sudo dpkg -i rtl*.deb


The process dpkg will take a few moments, please be patient. Next, do:



sudo modprobe rtl8188fu


Your wireless should be working.






share|improve this answer
























  • can I install the zip clone of git offline by downloading the zip clone from the link?

    – The Blank
    yesterday













  • Assuming that you have the necessary prerequisites installed, you can certainly do so. Are you unable to temporarily get an internet connection on the Ubuntu machine?

    – chili555
    yesterday











  • No I have temporary internet connection.

    – The Blank
    yesterday











  • Then simply follow each step as I gave it. It works. I already tried it on my 4.18.0-17 installation.

    – chili555
    yesterday











  • Thanks a million brother it really super awesomely worked. This is probably my best moment. awesome. Thanks again. And I was able to install it with the zip clone too.

    – The Blank
    yesterday












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
});


}
});






The Blank is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1132993%2fgetting-error-in-compiling-install-sh-of-a-wireless-driver%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














Please get a temporary working internet connection by ethernet, tethering or any means possible. Open a terminal and do:



sudo apt update
sudo apt install build-essential git dkms linux-headers-generic
git clone https://github.com/kelebek333/rtl8188fu
cd rtl8188fu
sudo dpkg -i rtl*.deb


The process dpkg will take a few moments, please be patient. Next, do:



sudo modprobe rtl8188fu


Your wireless should be working.






share|improve this answer
























  • can I install the zip clone of git offline by downloading the zip clone from the link?

    – The Blank
    yesterday













  • Assuming that you have the necessary prerequisites installed, you can certainly do so. Are you unable to temporarily get an internet connection on the Ubuntu machine?

    – chili555
    yesterday











  • No I have temporary internet connection.

    – The Blank
    yesterday











  • Then simply follow each step as I gave it. It works. I already tried it on my 4.18.0-17 installation.

    – chili555
    yesterday











  • Thanks a million brother it really super awesomely worked. This is probably my best moment. awesome. Thanks again. And I was able to install it with the zip clone too.

    – The Blank
    yesterday
















0














Please get a temporary working internet connection by ethernet, tethering or any means possible. Open a terminal and do:



sudo apt update
sudo apt install build-essential git dkms linux-headers-generic
git clone https://github.com/kelebek333/rtl8188fu
cd rtl8188fu
sudo dpkg -i rtl*.deb


The process dpkg will take a few moments, please be patient. Next, do:



sudo modprobe rtl8188fu


Your wireless should be working.






share|improve this answer
























  • can I install the zip clone of git offline by downloading the zip clone from the link?

    – The Blank
    yesterday













  • Assuming that you have the necessary prerequisites installed, you can certainly do so. Are you unable to temporarily get an internet connection on the Ubuntu machine?

    – chili555
    yesterday











  • No I have temporary internet connection.

    – The Blank
    yesterday











  • Then simply follow each step as I gave it. It works. I already tried it on my 4.18.0-17 installation.

    – chili555
    yesterday











  • Thanks a million brother it really super awesomely worked. This is probably my best moment. awesome. Thanks again. And I was able to install it with the zip clone too.

    – The Blank
    yesterday














0












0








0







Please get a temporary working internet connection by ethernet, tethering or any means possible. Open a terminal and do:



sudo apt update
sudo apt install build-essential git dkms linux-headers-generic
git clone https://github.com/kelebek333/rtl8188fu
cd rtl8188fu
sudo dpkg -i rtl*.deb


The process dpkg will take a few moments, please be patient. Next, do:



sudo modprobe rtl8188fu


Your wireless should be working.






share|improve this answer













Please get a temporary working internet connection by ethernet, tethering or any means possible. Open a terminal and do:



sudo apt update
sudo apt install build-essential git dkms linux-headers-generic
git clone https://github.com/kelebek333/rtl8188fu
cd rtl8188fu
sudo dpkg -i rtl*.deb


The process dpkg will take a few moments, please be patient. Next, do:



sudo modprobe rtl8188fu


Your wireless should be working.







share|improve this answer












share|improve this answer



share|improve this answer










answered yesterday









chili555chili555

39.1k55281




39.1k55281













  • can I install the zip clone of git offline by downloading the zip clone from the link?

    – The Blank
    yesterday













  • Assuming that you have the necessary prerequisites installed, you can certainly do so. Are you unable to temporarily get an internet connection on the Ubuntu machine?

    – chili555
    yesterday











  • No I have temporary internet connection.

    – The Blank
    yesterday











  • Then simply follow each step as I gave it. It works. I already tried it on my 4.18.0-17 installation.

    – chili555
    yesterday











  • Thanks a million brother it really super awesomely worked. This is probably my best moment. awesome. Thanks again. And I was able to install it with the zip clone too.

    – The Blank
    yesterday



















  • can I install the zip clone of git offline by downloading the zip clone from the link?

    – The Blank
    yesterday













  • Assuming that you have the necessary prerequisites installed, you can certainly do so. Are you unable to temporarily get an internet connection on the Ubuntu machine?

    – chili555
    yesterday











  • No I have temporary internet connection.

    – The Blank
    yesterday











  • Then simply follow each step as I gave it. It works. I already tried it on my 4.18.0-17 installation.

    – chili555
    yesterday











  • Thanks a million brother it really super awesomely worked. This is probably my best moment. awesome. Thanks again. And I was able to install it with the zip clone too.

    – The Blank
    yesterday

















can I install the zip clone of git offline by downloading the zip clone from the link?

– The Blank
yesterday







can I install the zip clone of git offline by downloading the zip clone from the link?

– The Blank
yesterday















Assuming that you have the necessary prerequisites installed, you can certainly do so. Are you unable to temporarily get an internet connection on the Ubuntu machine?

– chili555
yesterday





Assuming that you have the necessary prerequisites installed, you can certainly do so. Are you unable to temporarily get an internet connection on the Ubuntu machine?

– chili555
yesterday













No I have temporary internet connection.

– The Blank
yesterday





No I have temporary internet connection.

– The Blank
yesterday













Then simply follow each step as I gave it. It works. I already tried it on my 4.18.0-17 installation.

– chili555
yesterday





Then simply follow each step as I gave it. It works. I already tried it on my 4.18.0-17 installation.

– chili555
yesterday













Thanks a million brother it really super awesomely worked. This is probably my best moment. awesome. Thanks again. And I was able to install it with the zip clone too.

– The Blank
yesterday





Thanks a million brother it really super awesomely worked. This is probably my best moment. awesome. Thanks again. And I was able to install it with the zip clone too.

– The Blank
yesterday










The Blank is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















The Blank is a new contributor. Be nice, and check out our Code of Conduct.













The Blank is a new contributor. Be nice, and check out our Code of Conduct.












The Blank is a new contributor. Be nice, and check out our Code of Conduct.
















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%2f1132993%2fgetting-error-in-compiling-install-sh-of-a-wireless-driver%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

GameSpot

connect to host localhost port 22: Connection refused

Getting a Wifi WPA2 wifi connection