Wireless not working on boot

I have an older PC (so it's not moving much...), and I'm trying to set up wireless connection trough a USB wireless adapter (Ralink Technology, Corp. RT2501USB Wireless Adapter).
I have the correct drivers installed, and everything set up (doulbe checked of course).
The wireless setup during boot-time does not works, and prints the error message
Could not associate $1 - try increasing WIRELESS_TIMEOUT and check network is WEP or has no security
If I run iwgetid immeadiateley after login, I get the following output:
$ iwgetid wlan0 -ra
00:00:00:00:00:00
On the other hand, if I try a
sudo /etc/rc.d/network start
after I log in, it works flawlessley.
I've tried the following:
--> setting WIRELESS_TIMEOUT to 10 seconds, does not works (only after boot)
--> double checking the setup lines
--> reading the /etc/rc.d/network script, and executing the commands manually, it works
$ sudo /etc/rc.d/network stop
$ sudo iwconfig wlan0 essid BodorWLAN key s:wikey
$ sudo iwgetid wlan0 -ra
[the MAC-ADDRESS of wlan0, differring from 00:00:00:00:00:00]
--> stopping and starting the /etc/rc.d/network script, it works
--> editing /etc/rc.d/network to print out the used varialbes and more verbose error messages (I've restored it since then, so I cannot post the results, all seemed to be ok.)
/etc/config.d/wireless:
# Settings for wireless cards
# For each wireless interface declared in INTERFACES (in rc.conf), declare
# a wlan_${IF} variable that contains the arguments to be passed to
# iwconfig(8). Then list the original interface name in the
# WLAN_INTERFACES array.
#wlan_eth0="eth0 mode managed essid default"
#WLAN_INTERFACES=(eth0)
/etc/rc.conf:
# /etc/rc.conf - Main Configuration for Arch Linux
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
# in the hardware clock being left untouched (useful for virtualization)
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
LOCALE="hu_HU.UTF-8"
HARDWARECLOCK="UTC"
TIMEZONE="Europe/Budapest"
KEYMAP="hu"
CONSOLEFONT="lat2-16.psfu.gz"
CONSOLEMAP=
USECOLOR="yes"
# HARDWARE
# MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
# MOD_BLACKLIST: Prevent udev from loading these modules
# MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
# NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
MOD_AUTOLOAD="yes"
#MOD_BLACKLIST=() #deprecated
MODULES=()
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="no"
# NETWORKING
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
HOSTNAME="curly-desktop"
# Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
# Interfaces to start at boot-up (in this order)
# Declare each interface then list in INTERFACES
# - prefix an entry in INTERFACES with a ! to disable it
# - no hyphens in your interface names - Bash doesn't like it
# DHCP: Set your interface to "dhcp" (eth0="dhcp")
# Wireless: See network profiles below
#Static IP example
#eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
eth0="dhcp"
wlan0="dhcp"
wlan_wlan0="wlan0 essid BodorWLAN key s:wikey"
INTERFACES=(eth0 wlan0)
# Routes to start at boot-up (in this order)
# Declare each route then list in ROUTES
# - prefix an entry in ROUTES with a ! to disable it
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
# Enable these network profiles at boot-up. These are only useful
# if you happen to need multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
# Network profiles are found in /etc/network.d
# This now requires the netcfg package
#NETWORKS=(main)
# DAEMONS
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
DAEMONS=(syslog-ng dbus hal network openntpd netfs crond alsa)
Note: I modified sensitive information (passwd, stb.)
I'm running out of ideas, since the network script appears to be working always except at boot time.
Last edited by dragonfi (2010-06-11 15:44:52)

Activating the usb hooks in the ramdisk did not done the job, as the network demon only runs late in boottime (maybe I'm just being imprecise, i'm meaning the part, where it already entered the final runlevel).
On the other hand, I did tracked down the problem, and I beliveve it's some kind of desing-flaw in the wireless USB utility. (Or I'm just not aware of a certain feature in it.)
I modified /etc/rc.d/network to resend the iwconfig to the device after the 2 second sleep, and it seems to work sometimes.
/etc/rc.d/network: (added lines in wi_up())
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
# wireless settings
[ -f /etc/conf.d/wireless ] && . /etc/conf.d/wireless
# ethernet bonding settings
[ -f /etc/conf.d/bonding ] && . /etc/conf.d/bonding
# bridge settings
[ -f /etc/conf.d/bridges ] && . /etc/conf.d/bridges
# dhcpcd settings
[ -f /etc/conf.d/dhcpcd ] && . /etc/conf.d/dhcpcd
ifup()
if [ "$1" = "" ]; then
echo "usage: $0 ifup <interface_name>"
return 1
fi
eval ifcfg="\$${1}"
# Get the name of the interface from the first token in the string
if [ "$ifcfg" = "dhcp" ]; then
ifname="$1"
else
ifname=${ifcfg%% *}
fi
/sbin/ifconfig $ifname up
wi_up $1 || return 1
if [ "$ifcfg" = "dhcp" ]; then
# remove the .pid file if it exists
/bin/rm -f /var/run/dhcpcd-${1}.pid >/dev/null 2>&1
/bin/rm -f /var/run/dhcpcd-${1}.cache >/dev/null 2>&1
/sbin/dhcpcd $DHCPCD_ARGS ${1}
else
/sbin/ifconfig $ifcfg
fi
return $?
wi_up()
eval iwcfg="\$wlan_${1}"
[ "$iwcfg" = "" ] && return 0
/usr/sbin/iwconfig $iwcfg
[[ -z "$WIRELESS_TIMEOUT" ]] && WIRELESS_TIMEOUT=2
sleep $WIRELESS_TIMEOUT
#added line below because wlan0 does not play nice..
/usr/sbin/iwconfig $iwcfg
bssid=`iwgetid $1 -ra`
if [[ "$bssid" = "00:00:00:00:00:00" ]]; then
printhl "Could not associate $1 - try increasing WIRELESS_TIMEOUT and check network is WEP or has no security"
return 1
fi
return 0
ifdown()
if [ "$1" = "" ]; then
echo "usage: $0 ifdown <interface_name>"
return 1
fi
eval ifcfg="\$${1}"
if [ "$ifcfg" = "dhcp" ]; then
if [ -f /var/run/dhcpcd-${1}.pid ]; then
/bin/kill $(cat /var/run/dhcpcd-${1}.pid)
fi
fi
# Always bring the interface itself down
/sbin/ifconfig ${1} down >/dev/null 2>&1
return $?
iflist()
for ifline in ${INTERFACES[@]}; do
if [ "$ifline" = "${ifline#!}" ]; then
printf " $ifline:\t"
else
printf "$ifline:\t"
fi
eval real_ifline=\$${ifline#!}
echo $real_ifline
done
rtup()
if [ "$1" = "" ]; then
echo "usage: $0 rtup <route_name>"
return 1
fi
eval routecfg="\$${1}"
if grep -q :: <<< $routecfg; then
/sbin/route -A inet6 add $routecfg
else
/sbin/route add $routecfg
fi
return $?
rtdown()
if [ "$1" = "" ]; then
echo "usage: $0 rtdown <route_name>"
return 1
fi
eval routecfg="\$${1}"
if grep -q :: <<< $routecfg; then
/sbin/route -A inet6 del $routecfg
else
/sbin/route del $routecfg
fi
return $?
rtlist()
for rtline in ${ROUTES[@]}; do
if [ "$rtline" = "${rtline#!}" ]; then
printf " $rtline:\t"
else
printf "$rtline:\t"
fi
eval real_rtline=\$${rtline#!}
echo $real_rtline
done
bond_up()
for ifline in ${BOND_INTERFACES[@]}; do
if [ "$ifline" = "${ifline#!}" ]; then
eval bondcfg="\$bond_${ifline}"
if [ -n "${bondcfg}" ]; then
/sbin/ifenslave $ifline $bondcfg || error=1
fi
fi
done
bond_down()
for ifline in ${BOND_INTERFACES[@]}; do
if [ "$ifline" = "${ifline#!}" ]; then
eval bondcfg="\$bond_${ifline}"
/sbin/ifenslave -d $ifline $bondcfg || error=1
fi
done
bridge_up()
for br in ${BRIDGE_INTERFACES[@]}; do
if [ "$br" = "${br#!}" ]; then
# if the bridge already exists, remove it
if [ "$(/sbin/ifconfig $br 2>/dev/null)" ]; then
/sbin/ifconfig $br down
/usr/sbin/brctl delbr $br
fi
/usr/sbin/brctl addbr $br
eval brifs="\$bridge_${br}"
for brif in $brifs; do
if [ "$brif" = "${brif#!}" ]; then
for ifline in ${BOND_INTERFACES[@]}; do
if [ "$brif" = "$ifline" ] && [ "$ifline" = "${ifline#!}" ]; then
ifup $ifline
eval bondcfg="\$bond_${ifline}"
/sbin/ifenslave $ifline $bondcfg || error=1
unset bond_${ifline}
fi
done
/usr/sbin/brctl addif $br $brif || error=1
fi
done
fi
done
bridge_down()
for br in ${BRIDGE_INTERFACES[@]}; do
if [ "$br" = "${br#!}" ]; then
/usr/sbin/brctl delbr $br
fi
done
case "$1" in
start)
if ! ck_daemon network; then
echo "Network is already running. Try 'network restart'"
exit
fi
stat_busy "Starting Network"
error=0
# bring up bridge interfaces
bridge_up
# bring up ethernet interfaces
for ifline in ${INTERFACES[@]}; do
if [ "$ifline" = "${ifline#!}" ]; then
ifup $ifline || error=1
fi
done
# bring up bond interfaces
bond_up
# bring up routes
for rtline in "${ROUTES[@]}"; do
if [ "$rtline" = "${rtline#!}" ]; then
rtup $rtline || error=1
fi
done
if [ $error -eq 0 ]; then
add_daemon network
stat_done
else
stat_fail
fi
stop)
#if ck_daemon network; then
# echo "Network is not running. Try 'network start'"
# exit
#fi
stat_busy "Stopping Network"
rm_daemon network
error=0
for rtline in "${ROUTES[@]}"; do
if [ "$rtline" = "${rtline#!}" ]; then
rtdown $rtline || error=1
fi
done
# bring down bond interfaces
bond_down
for ifline in ${INTERFACES[@]}; do
if [ "$ifline" = "${ifline#!}" ]; then
ifdown $ifline || error=1
fi
done
# bring down bridge interfaces
bridge_down
if [ $error -eq 0 ]; then
stat_done
else
stat_fail
fi
restart)
$0 stop
/bin/sleep 2
$0 start
ifup|ifdown|iflist|rtup|rtdown|rtlist)
$1 $2
echo "usage: $0 {start|stop|restart}"
echo " $0 {ifup|ifdown|iflist|rtup|rtdown|rtlist}"
esac
# vim: set ts=2 noet:
I wrote a sript and chnaged network to this script in my rc.conf, it appears to be working now.
/etc/rc.d/myscript:
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
ifup()
/sbin/ifconfig wlan0 up
/usr/sbin/iwconfig wlan0 essid BodorWLAN key s:admin
sleep 2
/usr/sbin/iwconfig wlan0 essid BodorWLAN key s:admin
dhcpcd wlan0
return $?
ifdown()
if [ -f /var/run/dhcpcd-wlan0.pid ]; then
/bin/kill $(cat /var/run/dhcpcd-wlan0.pid)
fi
/sbin/ifconfig wlan0 down >/dev/null 2>&1
return $?
case "$1" in
start)
stat_busy "Starting Network"
ifup
stat_done
restart)
stat_busy "Restarting Network"
ifdown
ifup
stat_done
stop)
stat_busy "Stopping Network"
ifdown
stat_done
echo "usage: $0 {start|stop|restart}"
esac
My only question now is that how could I achieve the same solution in a more elegant way, I'm a bit confused, because the above script does the exact same stuff that my modified /etc/rc.d/network would supposed to be doing.
Last edited by dragonfi (2010-06-12 19:27:38)

Similar Messages

  • Wireless Not Working under Boot Camp

    Wireless works with Leopard and with VM Fusion, but when I use boot camp, it won't connect to DHCP. Tried manual ip address also, but no internet connectivity and can't ping my network.
    Wired ethernet works fine with Boot Camp.

    You may want to try posting your question over in the Boot Camp discussions:
    http://discussions.apple.com/category.jspa?categoryID=237

  • I have wireless mouse does not work with boot camp

    i have wireless mouse does not work with boot camp

    Did you install the correct driver for your Windows version? Are you saying the mouse does not work in Windows after Windows is installed?

  • Magic Mouse Not Working with Boot Camp.

    Hi All,
    I have a wired issue here. I installed Windows XP on my iMac 27" using bootcamp and all worked fine till one day my Magic Mouse stopped working in Windows. Now the funny part is windows is able to detect my mouse and says that the device is working normally but the green light under my mouse is OFF. No matter what i try i cannot get it to come on. But the moment i boot to Mac OS X the mouse works perfectly fine. My Apple Wireless KB works just fine in Windows. A USB mouse also works fine. I have also installed Parallels on my Mac and when i boot into the Windows partition using Parallels the Magic Mouse works fine. Any idea as to whats going on here.?
    John.

    I have a new (July 2009) iMac24 and neither the wireless mighty mouse nor keyboard work with Boot Camp XP Home Edition SP3. They install OK with the Bluetooth control panel, but then after five or ten seconds, drop out of the control panel and have to be discovered again. I spent two hours today with a Mac support expert, but no joy. We both gave up. It seems the wireless mouse/keyboard does not work with Boot Camp. If anyone hears of a solution, please let me know.

  • Intel 6205 wireless not working with Lenovo W520

    Loving the new W520... very fast, if only the wireless would work. Unable to get wireless interface functioning, won't even show up in ifconfig. I've appended requested wireless information, thanks in advance for any assistance.
    1) Machine Brand and Model (PC/Laptop):
    Lenovo W520
    Intel Centrino Advanced-N 6205
    Note: Wireless switch on lefthand side enabled, bluetooth led lights up but wireless does not.
    2) Wireless Brand, Model and Wireless Chipset:
    $ lspci -nn
    03:00.0 Network controller [0280]: Intel Corporation 6000 Series Gen2 [8086:0085] (rev 34)
    3 ) check interface:
    ifconfig does not show wireless
    $ iwconfig
    lo no wireless extensions.
    eth0 no wireless extensions.
    4 ) Check for modules:
    $ lsmod
    iwlagn 215351 0
    iwlcore 139688 1 iwlagn
    mac80211 269644 2 iwlagn,iwlcore
    cfg80211 167809 3 iwlagn,iwlcore,mac80211
    5) Kernel boot messages
    $ dmesg
    [ 13.497936] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    [ 13.497938] iwlagn: Copyright(c) 2003-2010 Intel Corporation
    [ 13.498058] iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 13.498089] iwlagn 0000:03:00.0: setting latency timer to 64
    [ 13.498181] iwlagn 0000:03:00.0: Detected 6000 Series 2x2 AGN Gen2a, REV=0xB0
    [ 13.499187] lp: driver loaded but no devices found
    [ 13.502642] alloc irq_desc for 22 on node -1
    [ 13.502645] alloc kstat_irqs on node -1
    6 ) Network configuration
    $ sudo lshw -C network
    *-network UNCLAIMED
    description: Network controller
    product: 6000 Series Gen2
    vendor: Intel Corporation
    physical id: 0
    bus info: pci@0000:03:00.0
    version: 34
    width: 64 bits
    clock: 33MHz
    capabilities: pm msi pciexpress cap_list
    configuration: latency=0
    resources: memory:d5300000-d5301fff
    7 ) Scan for networks:
    not relevant as no wireless interface appears
    8 ) Ubuntu Version:
    Ubuntu 10.10
    9 ) Kernel/architecture (including 32 vs. 64 bit):
    2.6.35-28-generic x86_64
    10 ) Restarting the network:
    sudo /etc/init.d/networking restart
    * Reconfiguring network interfaces... Ignoring unknown interface eth0=eth0.
    [ OK ]
    Additionally, modinfo shows the following:
    $ modinfo iwlagn
    filename: /lib/modules/2.6.35-28-generic/updates/compat-wireless-2.6.36/iwlagn.ko
    alias: iwl4965
    license: GPL
    author: Copyright(c) 2003-2010 Intel Corporation <[email protected]>
    version: in-tree:
    description: Intel(R) Wireless WiFi Link AGN driver for Linux
    firmware: iwlwifi-4965-2.ucode
    firmware: iwlwifi-5150-2.ucode
    firmware: iwlwifi-5000-2.ucode
    firmware: iwlwifi-6000g2b-4.ucode
    firmware: iwlwifi-6000g2a-4.ucode
    firmware: iwlwifi-6050-4.ucode
    firmware: iwlwifi-6000-4.ucode
    firmware: iwlwifi-1000-3.ucode
    srcversion: 8F7F4C6196599FCA596C837

    Hi  sparhk, and welcome.
    One of the Lenovo staff who frequents the forum put out a call to help you in a private forum.  I do a little Linux, so I poked into it.  To my amazement my first Google hit was your thread where you indicate you have solved the problem.  (At least, it _looks_ like you...)
    May I respectfully suggest that a post back here indicating success would be a nice touch?  That way anyone who passes by looking for help with this issue will have a better chance of finding it.  For posterity, here it is (see post number 25):
    [SOLVED] Intel 6205 wireless not working with Lenovo W520
    Glad you got it working,
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Mouse not working with Boot Camp after 10.5.7 update

    I upgraded to 10.5.7 recently, and now my mouse doesn't work on Boot Camp. It doesn't seem to register, and I can't move the pointer. I tried this with two mice that worked just fine on the Mac OSX side. Any ideas? Has anybody else noticed this?

    I have a new (July 2009) iMac24 and neither the wireless mighty mouse nor keyboard work with Boot Camp XP Home Edition SP3. They install OK with the Bluetooth control panel, but then after five or ten seconds, drop out of the control panel and have to be discovered again. I spent two hours today with a Mac support expert, but no joy. We both gave up. It seems the wireless mouse/keyboard does not work with Boot Camp. If anyone hears of a solution, please let me know.

  • S10-3t bluetooth and wireless not working with windows 8

    S10-3t bluetooth and wireless not working with windows 8. I tried everything but doesn't work at all. I don't know where to find the new drivers that are comatible with windows 8 ???!!! please help me to solve this problem because i tried everything....

    Do you still have your windows7 install files ? 
    ( installation image is usually in LENOVO_PART OKRBackup/Factory ) ? I lost them :\
    if yes I fear you have to enable it in win7 and then use it in win8
    http://rzr.online.fr/q/lenovo# g470 s103t (Please Contact me if your s10-3T is booting win7 or support bluetooth, 3g)
    Lenovo S10-3t | Model Name : 0651 | Mfg Date: 2010/06/08
    Lenovo G470 | Model Name : 20078 | M fg Date: 11/03/23 | BIOS: 40CN23WW(V2.09) 06/20/2011 | CPU: i5-2410M | Linux version 3.3.4lenovog470+ (root@lap) (gcc version 4.6.3 (Debian 4.6.3-4) ) #8 SMP Tue May 1 10:23:48 CEST 2012
    OS:GNU/Linux/Debian

  • Keyboard not working at boot and CD won't boot

    Hello everyone,
    I think I have a very particular issue that hasn't happened to many people since I could not find any topics talking about this already. Before I begin, let me excuse myself for my bad english writing.. it ain't my primary language.
    Ok so I was already running Mac OS X 10.5 and decided to try bootcamp so I could use Autocad in Windows XP. What I did is start the bootcamp assistant and install Windows XP. After the installation my computer was booting with that "Disk error" message.
    Ok no worries, I had all my files backed up on my external hard drive but for some very weird reason, my original Mac OS X Leopard DVD would not boot anymore and it was still saying "Disk error". I decided to try holding "C" at startup to boot from the DVD but it would not work. I can hear the DVD working but it's still not booting from it.
    I thought my DVD was defect so I try booting up from my Windows CD and when it asked me to "press any key to boot from CD" i realized that my keyboard was not working during startup. Any startup key like "C", ALT, Command or any other keys were not working. Even the light on the capslock key would not work when i pressed the key.
    I had an old Knoppix Live CD which is a Linux and that booted fine. When that boots it asks me to press a key to boot or to wait 2 minutes and it will boot on it's own. I couldn't press a key to boot so I waited 2 minutes and my keyboard started working when the Linux OS was booted. I managed to erase the partition table of my harddrive to start from scratch but my Mac OS DVD would not boot either way and my keyboard is still not working at boot (in the gray screen where you can actually use startup shortcuts normally).
    I also tried to boot with my old Mac OS 10.4 DVD and I had the same results.
    Before you ask, yes I tried another USB keyboard, I also tried all 3 USB ports. The only thing that works at boot is when I hold the mouse button to eject my CD/DVD. But all my keyboard shortcuts doesn't work and I can boot from any installation CD (windows, linux) but not Mac OS 10.4 or 10.5.

    Okay so I managed to fix this problem with another apple keyboard, the mac os installation would still not boot but at least I was able to press N to boot from network and start a Mac OS from the network. From there I could insert the Mac OS installation disc and start the installation from there and now everything works fine. Thanks to everyone for your help.

  • Wireless not working, iPhone 4S, upgraded to OS6, any suggestions?

    wireless not working, iPhone 4S, upgraded to OS6, any suggestions?

    Take the troubleshooting steps recommended in the User Guide.

  • Wireless keyboard not working with Boot Camp

    I have a brand new 15" Macbook Pro.  I need to run Windows for work so I installed Boot Camp and Windows 8.1.  I have a HP wireless keyboard with a USB dongle.  It will not work at all.  Windows recognizes that I've plugged in the dongle but the keyboard won't work at all.  It's a brand-new keyboard and the batteries show full charge.  All drivers look good in device manager.  When I went thru the Windows troubleshooter, which is typically worthless, it said something about the dongle being USB 2.0 and the Mac's USB is 3.0.  But shouldn't it be backward compatible?  It has no problem with my old wireless mouse with a USB dongle.
    I also notice a significant difference in the clarity on my dual external monitors with Windows instead of OSx.  The colors aren't as sharp and the text isn't as clear - kind of fuzzy.  Is that just how it goes with boot camp, or is there anything I can do, like maybe an upgraded driver, to get the same clarity on my dual monitors with Windows like I get with OSx?
    Any help is appreciated.

    Unfortunately I can't turn off Bluetooth in Win 8.1.  I go to the page where i should see the slider and the page just spins and spins.  I thought my install might be hosed so I blew it away and did a fresh boot camp install.  Still no joy; BT still spins - and I still can't connect to the USB keyboard.  I can plug the dongle in and see it in devices, and it says it's ready to go but the keyboard doesn't work.  It's brand-new and has worked on a Windows box so I know it's not a bad keyboard.  Maybe time to go back to a Windows box and ditch boot camp?

  • Wireless not working in linux, but works fine in windows vista

    Hello!
    I have installed Unbreakable Enterprise Linux 4 in a dual boot config. with Window Vista on a Compaq Presario laptop. After install completed I found that my on board Broadcom Wireless Adapter (Dell 1390 Mini PC card) was not recognized. I have tried installing NDISwrapper versions 1.48 and later 1.47 (after uninstalling 1.48) because everytime I got to the "modprobe ndiswrapper" received a fatal error about an unknown symbol or parameter, and on install I also encountered a "CONFIG_4KSTACKS" error as well. The good part is the light on my laptop for the wireless adapter finally came on and the driver (bcmwl5.inf) appears to be installed and the wireless adapter identified as being present, but it still doesn't show up in the network manager gui interface. So I am out of ideas if any one can give me a suggestion for a solution I would appreciate it.

    Hi there,,,,,
    I have Oracle Enterprise Linux 5 installed and Intel wifi 5100 card installed on my laptop. Wireless card does not work in Linux it works fine with Vista, I have dual boot. I have downloaded and installed the microcode for the wireless card for Linux,,,it is now active but it does not take ip address from dhcp and nor does it connect when i supply manual ip. it does not even scan for any wireless network. I have WEP enabled on my wireless network. It just says disconnected.....
    Please help me.....i have been trying to get this thing work for 3 weeks.
    thanks.

  • S10-3 Wireless - not working with Windows 7

    Hi, I bought the S10-3 two days ago and decided to load windows 7 (ultimate). The load was smooth but after I had finished the wireless was not working nut the wireless light on the front of the PC was on. The first strange thing I noticed was Fn5 did not work so the only on/off control I had was on the side switch. I eventually fixed this problem by downloading the driver from the internet , the wireless is the Atheros AR9285. Everything was well and proceeded to download anti-virus and other software.
    Then disaster, during the time of downloading windows had also been doing some updates and when the system restarted there is NO WIRELESS.
    It appears on boot that the "wireless" light indicator is ON and when windows fires up it goes off, I checked in the boot and it is enabled, I checked the driver again but it is OK but windows says it is not switched ON but I have checked the physical switch and it is ON.
    Any ideas appreciated.
    edit : correct machine model in postname 

    Hi and welcome, if all possible is switched on.. did you install the lenovo energymanagement ?
    where you can switch (softwarebased) seperately wireless devices... if wifi still isnt work...
    you have to bite in a sour apple and install windows 7 from a scratch again ... then first update all via windows updates , then ... install the lenovo energymanagement... , then, look in devicemanager if there is some questionmark ...  in normal case there is no need other driver to install...
    and all should be working... simply install a antivirus-program.. and all your need other personal stuff...
    sincerely KalvinKlein
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

  • Windows Vista Business with MBP - wireless not working

    I have successfully installed Windows Vista on my MBP using Boot Camp Assistant.
    Problem is that the wireless ethernet does not work. I have heard of some file called "Install Macintosh Drivers for Windows XP.exe". If this is what I'm suppose to use where do I find this file?

    Hi and welcome to Discussions,
    first thing to do after the Vista Installation is to insert the OSX DVD that came with your MBP while in Windows.
    Apple provides the BootCamp Drivers on that DVD.
    The Driver Setup should start automatically once the DVD is inserted.
    Let the Driver install and do the neccessary reboot into Vista once it has finished.
    Hope it helps
    Stefan

  • Wireless not working after VMware kit installation

    After installing VMWare kit, my wireless network card is not working - any clues?

    there is something very wierd here. Let me recap what I KNOW is happening.
    1) I can connect to WAP at boot no problem. This is true 100%
    2) After sleep systems fails 100% time from 5:30 AM to 10:00PM (not sure why)
    3) There have been no changes to WAP (confirmed using checksums)
    4) This started immediately after 10.4.10 install.
    What I have done that does NOT work
    1) Repair disk perms (no errors)
    2) Repair keychain (no errors)
    3) Remove Parallels (expired Demo)
    4) Remove/recreate network
    5) Run commands indicated in other replies
    What I have done that showed hope
    1) If I create a new location I can use that location to recover from exactly 1 sleep. Subsequent sleeps fail for that location. once all locations are used a reboot is required.
    2) Issued ipconfig setverbose 1 and watched logs. It seems that the Mac never Sees the incoming packets. I can rule out WAP issues as the Dell d620 sitting right next to the Mac is indicating packet reception at 100% (and I am only 10ft from WAP with direct line of sight).
    3) issued ipconfig getpacket en1 in both working and non-working states. Woring stated returns expecte DHCP response from server. non-working state returns nothing. as in not even a blank line.
    So as I see it the Mac does not appear to be reenabling the reciever post sleep. Changing locations seems to re-init the airport card but only once (why once?) enough to get it working. What I don't understand is where in software land I would even start to look. I find it hard to believe that there is a coincidental sync between an OS update and a hardware failure on a 4 week old machine.

  • Tried installing Windows Vista, cancelled install and now it won't boot from the OEM Vista DVD, all i get is BOOTMGR is missing error... Ctrl Alt Del to restart and when i turn the computer on i get a blank screen and pressing C is not working to boot....

    Topic says it all...
    My friend started a installation of Windows Vista, but pulled out after deleting all partitions...
    So now i power it on, get a blank screen (seems a bit gray because of backlighting, should show the apple logo right?)...
    Then after like 15-20sec it will throw out a:
    BOOTMGR is missing
    Press Ctrl+Alt+Del to restart
    I have a OEM Windows Vista DVD in the drive, and i know... Windows 7 is better... but i'm not that fond of stealing software from Microsoft and i have 10 licenses for Vista...
    I have tried pressing C while booting up but it doesn't work...
    Does anyone here have a magic soloution for me, and no i will not install MacOS on it !!!

    Deleting Boot Camp partitions the conventional way will not work . You must use the Boot Camp Assistant to remove a Boot Camp partition. Here is a link to the guide.
    http://manuals.info.apple.com/en_US/Boot_Camp_Install-Setup_10.6.pdf
    The way to restart is to hold down the option/alt key during startup* and then selecting the Mac OS. If you have a valid Boot Camp install of Windows it would show up during this type of start up.
    * hold down immediately after pressing the power button and until the OS choice screen appears.
    To summarize.
    1 Use the above method to boot into Mac OS.
    2 Download the instructions and read them.
    3 Use Boot Camp Assistant to remove the partition.
    4 Pick your friends more carefully.

Maybe you are looking for

  • Home sharing on Apple TV 2 from PC drops out

    I tunes has been updated today along with Apple TV 2. I used to be able to stream pictures along with music before one of the upgrades. What happens now is the the streaming begins and within a minutes or two it drops out. I go to the computer and ha

  • Can't do a save as disc image

    I have iMovie '09 (8.0.6) iDVD 7.1.2 and am having a problem saving a large file (3.9gb) as a disc image. This file was made in iMovie with chapters and I "Shared to Media Browser" (I am using the .m4v file).I did a short (2 min.) test file in iDVD t

  • Cant change outgoing email address

    I can no longer run the digital fax setup wizard it gets to 54% then dissapears. Tried re installing printer several times.

  • Error in weblog rss feed

    There seems to be an error in the rss feed of the weblogs page.  Is it possible to fix this?  I just got back from vacation and need to catch up. XML Parsing Error: undefined entity Location: http://weblogs.sdn.sap.com/pub/q/weblogs_rss?x-ver=1.0&x-m

  • Photoshop CS6 and OSX 10.6.8

    I am my own webmaster for my website www.trainerjo.com.  I do my own graphics arts and am very independent so hiring I want to purchase Photoshop CS6. But before I go out and drop all that money, is there a way I can install the newer version of Phot