-
What to do next?
Hai friends,i am running backtrack 5 R1 on VMware.I cant connect backtrack to the wifi network i am having in my college.I have gone through a lot of tuts even from our fourms too.I have installed Brodcom 32 bit linux drivers to my backtrack
when i tried to install that at the first time i got an error saying too few arguments to call the ieee80211_channel_to_frequency(notif_bss_info->channel (i hope this is the one ,sorry i forgot to copy that)
then i changed the code from
freq = ieee80211_channel_to_frequency(notif_bss_info->channel
#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39)
,(notif_bss_info->channel <= CH_MAX_2G_CHANNEL) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ
#endif
);
To
freq = ieee80211_channel_to_frequency(notif_bss_info->channel
#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39)
,(notif_bss_info->channel <= CH_MAX_2G_CHANNEL) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ
#else
,(notif_bss_info->channel <= CH_MAX_2G_CHANNEL) ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ
#endif
);
Then
i got this
root@bt:/media# make
KBUILD_NOPEDANTIC=1 make -C /lib/modules/`uname -r`/build M=`pwd`
make[1]: Entering directory `/usr/src/linux-source-2.6.39.4'
WARNING: Symbol version dump /usr/src/linux-source-2.6.39.4/Module.symvers
is missing; modules will have no dependencies and modversions.
CFG80211 API is prefered for this kernel version
Using CFG80211 API
Building modules, stage 2.
CFG80211 API is prefered for this kernel version
Using CFG80211 API
MODPOST 1 modules
WARNING: modpost: missing MODULE_LICENSE() in /media/wl.o
see include/linux/module.h for more information
make[1]: Leaving directory `/usr/src/linux-source-2.6.39.4'
My laptop model is Compaq 515 and i having Brodcom 802.11g network adapter
I dont know what to do next please help me
-
Member
Re: What to do next?
Is this a USB or internal wireless card?
-
Re: What to do next?
Its the internal wireless card.
-
Member
Re: What to do next?
You can't use internal wireless card in a VM. The Guest OS will threat the wireless card as an ethernet adapter.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules