I'm trying to setup my wifi on a fresh 13.04 install on a Toshiba Satellite L75D-A7280.
I'm still a linux noob, so I may have gone down the rabbit hole, but I've made it this far:
I've edited pci.h
as recommended, but I'm still getting this on make
:
make -C /lib/modules/3.8.0-19-generic/build M=/home/trevor/Downloads/realtek modules
make[1]: Entering directory `/usr/src/linux-headers-3.8.0-19-generic'
CC [M] /home/trevor/Downloads/realtek/base.o
In file included from /home/trevor/Downloads/realtek/base.c:39:0:
/home/trevor/Downloads/realtek/pci.h:30:1: error: unknown type name ‘fndef’
/home/trevor/Downloads/realtek/pci.h:33:2: error: #endif without #if
In file included from include/linux/pci.h:20:0,
from /home/trevor/Downloads/realtek/pci.h:39,
from /home/trevor/Downloads/realtek/base.c:39:
include/linux/mod_devicetable.h:12:1: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘typedef’
include/linux/mod_devicetable.h:21:2: error: unknown type name ‘kernel_ulong_t’
include/linux/mod_devicetable.h:36:2: error: unknown type name ‘kernel_ulong_t’
include/linux/mod_devicetable.h:37:33: error: ‘kernel_ulong_t’ undeclared here (not in a function)
include/linux/mod_devicetable.h:37:3: error: requested alignment is not an integer constant
include/linux/mod_devicetable.h:125:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:151:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:164:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:178:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:189:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:197:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:205:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:210:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:275:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:324:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:351:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:376:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:423:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:443:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:454:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:518:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:550:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:561:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
include/linux/mod_devicetable.h:592:2: error: expected specifier-qualifier-list before ‘kernel_ulong_t’
make[2]: *** [/home/trevor/Downloads/realtek/base.o] Error 1
make[1]: *** [_module_/home/trevor/Downloads/realtek] Error 2
make[1]: Leaving directory `/usr/src/linux-headers-3.8.0-19-generic'
make: *** [all] Error 2
How can I get my wireless working?
lspci -nnk | grep -iEA3 "(wireless|network)"
05:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8188EE Wireless Network Adapter [10ec:8179] (rev 01)
Subsystem: Realtek Semiconductor Co., Ltd. Device [10ec:0181]
wired connection working
I am happily connected and talking to the world on my first ubuntu lappie via the wired connection. I do not know what driver it's using. 13.04 saw it during installation.
lspci -nnk | grep -iEA3 "(wireless|network)"
– gertvdijk Jul 21 '13 at 22:00