RTL8812AE WiFi card driver install failsRealtek RTL8812AE has slower connection in Ubuntu than in WindowsWriting a “Hello World” Device Driver for kernel 2.6 using EclipseWhy isn't this driver install working (sudo code)?Why does compiling the “alx” driver from “compat-wireless” fail?Installation of 3rd party soundcard driverInstalling Gallium 0.4 on SVGA3D; build: RELEASE; LLVM; Virtual machineTrying to install driver for TP Link TL-WN822N v4, make command failsCannot connect to WiFi on Ubuntu 14.04.5Can't install TP-link Archer T4U V3 driver on 19.04
How to participate in group conversations as an outsider?
What would happen if the Queen died immediately before a general election?
Could a technologically advanced society exist as a feudal monarchy?
Controlling a robot blindfolded on a 9x9 grid
How true are Trump’s claims about NATO spending?
How to educate bachelor and master exchange students from Asia?
Selective reduction of nitro group to amine, in benzene ring containing nitrile?
Fixing the fields in an incorrectly generated file
Keeping data in old Database (SQL 2008) identical to new Database (SQL 2016)?
How could pirates reasonably transport dinosaurs in captivity, some of them enormous, across oceans?
Can socialism and capitalism coexist in the same country?
What is the origin of 没 as an alternative to 不?
How to delete data extensions if I can't access them?
How to salvage money from a call option that has lost value?
Can a VASIMR Plasma engine be used for vertical takeoff?
In OOP, isn't the 'protected' keyword required?
Do any countries have a procedure that allows a constituent part of that country to become independent unilaterally?
Aces, twos, threes, and fours in a row
Prospective employer asking for my current pay slip during interview
Certainly naive, but I do not understand why this compiles?
Is the ESRI ArcGIS definition of California Albers projection using units of feet correct?
Looking for a restaurant in Vienna with a name similar to "An die 2 Linsen" that served huge Schnitzel
Resigned after working at company for 2 months. A year later, I would like to apply for a different position at that same company. Is it worth trying?
What do these chord annotations mean?
RTL8812AE WiFi card driver install fails
Realtek RTL8812AE has slower connection in Ubuntu than in WindowsWriting a “Hello World” Device Driver for kernel 2.6 using EclipseWhy isn't this driver install working (sudo code)?Why does compiling the “alx” driver from “compat-wireless” fail?Installation of 3rd party soundcard driverInstalling Gallium 0.4 on SVGA3D; build: RELEASE; LLVM; Virtual machineTrying to install driver for TP Link TL-WN822N v4, make command failsCannot connect to WiFi on Ubuntu 14.04.5Can't install TP-link Archer T4U V3 driver on 19.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
Trying to install some drivers for my RTL8812AE WiFi card.
I was able to install Sophos by downloading it, dragging the .sh file into terminal and it did it through there.
Can't get it to work for my WiFi card installer, though.
some warnings being treated as errors
make[2]: *** [scripts/Makefile.build:286: /home/***/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1
make[1]: *** [Makefile:1606: _module_/home/***/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic'
make: *** [Makefile:1323: modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg
drivers software-installation realtek-wireless
|
show 4 more comments
Trying to install some drivers for my RTL8812AE WiFi card.
I was able to install Sophos by downloading it, dragging the .sh file into terminal and it did it through there.
Can't get it to work for my WiFi card installer, though.
some warnings being treated as errors
make[2]: *** [scripts/Makefile.build:286: /home/***/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1
make[1]: *** [Makefile:1606: _module_/home/***/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic'
make: *** [Makefile:1323: modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg
drivers software-installation realtek-wireless
1
You may need to grant the execution permission. Runchmod u+x installer.sh
within the same directory as the installer,installer.sh
being the filename of your installer. You should then be able to run the file by issuing the command./installer.sh
within the same directory. The explanation is that the file may not be marked as executable, and that is what the above command does.chmod
is a command used to set permissions on files and directories.u
means set the permissions for the current user only andx
means granting execution permission.
– ddybing
Sep 26 at 19:30
I get this <pre>Authentication requested [root] for make clean: Password: su: Authentication failure Authentication requested [root] for make driver: Password: su: Authentication failure ################################################## Compile make driver error: 1 Please check error Mesg </pre>
– venomx
Sep 26 at 19:49
1
It sounds like the installer needs root permissions. You can either runsudo su -
to get to a root prompt and then run the installer by issuing the command./installer.sh
, or you can just runsudo ./installer.sh
. In both cases you'll be asked to enter a password, this is your own login password. If that doesn't work, your user may not be allowed to use the sudo command, but that's a separate issue.
– ddybing
Sep 26 at 19:51
<pre>some warnings being treated as errors make[2]: *** [scripts/Makefile.build:286: /home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1 make[1]: *** [Makefile:1606: _module_/home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic' make: *** [Makefile:1323: modules] Error 2 ############################################### Compile make driver error: 2 Please check error Mesg </pre>
– venomx
Sep 26 at 19:54
@venomx As you see, there's no formatting in Comments. Would you please click edit and add that information from the two comments above into the question, where there is formatting, then delete the comments by clicking on delete at the end of each? Please do not click Add Comment, please use edit instead. Formatting tips are at askubuntu.com/editing-help#code
– K7AAY
Sep 26 at 20:11
|
show 4 more comments
Trying to install some drivers for my RTL8812AE WiFi card.
I was able to install Sophos by downloading it, dragging the .sh file into terminal and it did it through there.
Can't get it to work for my WiFi card installer, though.
some warnings being treated as errors
make[2]: *** [scripts/Makefile.build:286: /home/***/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1
make[1]: *** [Makefile:1606: _module_/home/***/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic'
make: *** [Makefile:1323: modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg
drivers software-installation realtek-wireless
Trying to install some drivers for my RTL8812AE WiFi card.
I was able to install Sophos by downloading it, dragging the .sh file into terminal and it did it through there.
Can't get it to work for my WiFi card installer, though.
some warnings being treated as errors
make[2]: *** [scripts/Makefile.build:286: /home/***/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1
make[1]: *** [Makefile:1606: _module_/home/***/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic'
make: *** [Makefile:1323: modules] Error 2
##################################################
Compile make driver error: 2
Please check error Mesg
drivers software-installation realtek-wireless
drivers software-installation realtek-wireless
edited Sep 26 at 20:13
K7AAY
7,9065 gold badges22 silver badges52 bronze badges
7,9065 gold badges22 silver badges52 bronze badges
asked Sep 26 at 19:08
venomxvenomx
454 bronze badges
454 bronze badges
1
You may need to grant the execution permission. Runchmod u+x installer.sh
within the same directory as the installer,installer.sh
being the filename of your installer. You should then be able to run the file by issuing the command./installer.sh
within the same directory. The explanation is that the file may not be marked as executable, and that is what the above command does.chmod
is a command used to set permissions on files and directories.u
means set the permissions for the current user only andx
means granting execution permission.
– ddybing
Sep 26 at 19:30
I get this <pre>Authentication requested [root] for make clean: Password: su: Authentication failure Authentication requested [root] for make driver: Password: su: Authentication failure ################################################## Compile make driver error: 1 Please check error Mesg </pre>
– venomx
Sep 26 at 19:49
1
It sounds like the installer needs root permissions. You can either runsudo su -
to get to a root prompt and then run the installer by issuing the command./installer.sh
, or you can just runsudo ./installer.sh
. In both cases you'll be asked to enter a password, this is your own login password. If that doesn't work, your user may not be allowed to use the sudo command, but that's a separate issue.
– ddybing
Sep 26 at 19:51
<pre>some warnings being treated as errors make[2]: *** [scripts/Makefile.build:286: /home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1 make[1]: *** [Makefile:1606: _module_/home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic' make: *** [Makefile:1323: modules] Error 2 ############################################### Compile make driver error: 2 Please check error Mesg </pre>
– venomx
Sep 26 at 19:54
@venomx As you see, there's no formatting in Comments. Would you please click edit and add that information from the two comments above into the question, where there is formatting, then delete the comments by clicking on delete at the end of each? Please do not click Add Comment, please use edit instead. Formatting tips are at askubuntu.com/editing-help#code
– K7AAY
Sep 26 at 20:11
|
show 4 more comments
1
You may need to grant the execution permission. Runchmod u+x installer.sh
within the same directory as the installer,installer.sh
being the filename of your installer. You should then be able to run the file by issuing the command./installer.sh
within the same directory. The explanation is that the file may not be marked as executable, and that is what the above command does.chmod
is a command used to set permissions on files and directories.u
means set the permissions for the current user only andx
means granting execution permission.
– ddybing
Sep 26 at 19:30
I get this <pre>Authentication requested [root] for make clean: Password: su: Authentication failure Authentication requested [root] for make driver: Password: su: Authentication failure ################################################## Compile make driver error: 1 Please check error Mesg </pre>
– venomx
Sep 26 at 19:49
1
It sounds like the installer needs root permissions. You can either runsudo su -
to get to a root prompt and then run the installer by issuing the command./installer.sh
, or you can just runsudo ./installer.sh
. In both cases you'll be asked to enter a password, this is your own login password. If that doesn't work, your user may not be allowed to use the sudo command, but that's a separate issue.
– ddybing
Sep 26 at 19:51
<pre>some warnings being treated as errors make[2]: *** [scripts/Makefile.build:286: /home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1 make[1]: *** [Makefile:1606: _module_/home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic' make: *** [Makefile:1323: modules] Error 2 ############################################### Compile make driver error: 2 Please check error Mesg </pre>
– venomx
Sep 26 at 19:54
@venomx As you see, there's no formatting in Comments. Would you please click edit and add that information from the two comments above into the question, where there is formatting, then delete the comments by clicking on delete at the end of each? Please do not click Add Comment, please use edit instead. Formatting tips are at askubuntu.com/editing-help#code
– K7AAY
Sep 26 at 20:11
1
1
You may need to grant the execution permission. Run
chmod u+x installer.sh
within the same directory as the installer, installer.sh
being the filename of your installer. You should then be able to run the file by issuing the command ./installer.sh
within the same directory. The explanation is that the file may not be marked as executable, and that is what the above command does. chmod
is a command used to set permissions on files and directories. u
means set the permissions for the current user only and x
means granting execution permission.– ddybing
Sep 26 at 19:30
You may need to grant the execution permission. Run
chmod u+x installer.sh
within the same directory as the installer, installer.sh
being the filename of your installer. You should then be able to run the file by issuing the command ./installer.sh
within the same directory. The explanation is that the file may not be marked as executable, and that is what the above command does. chmod
is a command used to set permissions on files and directories. u
means set the permissions for the current user only and x
means granting execution permission.– ddybing
Sep 26 at 19:30
I get this <pre>Authentication requested [root] for make clean: Password: su: Authentication failure Authentication requested [root] for make driver: Password: su: Authentication failure ################################################## Compile make driver error: 1 Please check error Mesg </pre>
– venomx
Sep 26 at 19:49
I get this <pre>Authentication requested [root] for make clean: Password: su: Authentication failure Authentication requested [root] for make driver: Password: su: Authentication failure ################################################## Compile make driver error: 1 Please check error Mesg </pre>
– venomx
Sep 26 at 19:49
1
1
It sounds like the installer needs root permissions. You can either run
sudo su -
to get to a root prompt and then run the installer by issuing the command ./installer.sh
, or you can just run sudo ./installer.sh
. In both cases you'll be asked to enter a password, this is your own login password. If that doesn't work, your user may not be allowed to use the sudo command, but that's a separate issue.– ddybing
Sep 26 at 19:51
It sounds like the installer needs root permissions. You can either run
sudo su -
to get to a root prompt and then run the installer by issuing the command ./installer.sh
, or you can just run sudo ./installer.sh
. In both cases you'll be asked to enter a password, this is your own login password. If that doesn't work, your user may not be allowed to use the sudo command, but that's a separate issue.– ddybing
Sep 26 at 19:51
<pre>some warnings being treated as errors make[2]: *** [scripts/Makefile.build:286: /home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1 make[1]: *** [Makefile:1606: _module_/home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic' make: *** [Makefile:1323: modules] Error 2 ############################################### Compile make driver error: 2 Please check error Mesg </pre>
– venomx
Sep 26 at 19:54
<pre>some warnings being treated as errors make[2]: *** [scripts/Makefile.build:286: /home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1 make[1]: *** [Makefile:1606: _module_/home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic' make: *** [Makefile:1323: modules] Error 2 ############################################### Compile make driver error: 2 Please check error Mesg </pre>
– venomx
Sep 26 at 19:54
@venomx As you see, there's no formatting in Comments. Would you please click edit and add that information from the two comments above into the question, where there is formatting, then delete the comments by clicking on delete at the end of each? Please do not click Add Comment, please use edit instead. Formatting tips are at askubuntu.com/editing-help#code
– K7AAY
Sep 26 at 20:11
@venomx As you see, there's no formatting in Comments. Would you please click edit and add that information from the two comments above into the question, where there is formatting, then delete the comments by clicking on delete at the end of each? Please do not click Add Comment, please use edit instead. Formatting tips are at askubuntu.com/editing-help#code
– K7AAY
Sep 26 at 20:11
|
show 4 more comments
0
active
oldest
votes
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/4.0/"u003ecc by-sa 4.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
);
);
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%2f1176918%2frtl8812ae-wifi-card-driver-install-fails%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%2f1176918%2frtl8812ae-wifi-card-driver-install-fails%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
1
You may need to grant the execution permission. Run
chmod u+x installer.sh
within the same directory as the installer,installer.sh
being the filename of your installer. You should then be able to run the file by issuing the command./installer.sh
within the same directory. The explanation is that the file may not be marked as executable, and that is what the above command does.chmod
is a command used to set permissions on files and directories.u
means set the permissions for the current user only andx
means granting execution permission.– ddybing
Sep 26 at 19:30
I get this <pre>Authentication requested [root] for make clean: Password: su: Authentication failure Authentication requested [root] for make driver: Password: su: Authentication failure ################################################## Compile make driver error: 1 Please check error Mesg </pre>
– venomx
Sep 26 at 19:49
1
It sounds like the installer needs root permissions. You can either run
sudo su -
to get to a root prompt and then run the installer by issuing the command./installer.sh
, or you can just runsudo ./installer.sh
. In both cases you'll be asked to enter a password, this is your own login password. If that doesn't work, your user may not be allowed to use the sudo command, but that's a separate issue.– ddybing
Sep 26 at 19:51
<pre>some warnings being treated as errors make[2]: *** [scripts/Makefile.build:286: /home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903/core/rtw_cmd.o] Error 1 make[1]: *** [Makefile:1606: _module_/home/****/Documents/RTL8812AE_Linux_v4.3.2_12208.20140904/driver/rtl8812AE_linux_v4.3.2_12208.20140903] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-5.0.0-29-generic' make: *** [Makefile:1323: modules] Error 2 ############################################### Compile make driver error: 2 Please check error Mesg </pre>
– venomx
Sep 26 at 19:54
@venomx As you see, there's no formatting in Comments. Would you please click edit and add that information from the two comments above into the question, where there is formatting, then delete the comments by clicking on delete at the end of each? Please do not click Add Comment, please use edit instead. Formatting tips are at askubuntu.com/editing-help#code
– K7AAY
Sep 26 at 20:11