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
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.
– ddybing Sep 26 '19 at 19:30chmod
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.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 '19 at 19:51dkms status
andsudo lshw -C network
. Start comments to me with @heynnema or I'll surely miss them. – heynnema Sep 28 '19 at 07:24