[SOLVED] WPA_SUPPLICANT and rt2500 chipset cards [SOLVED]

EDIT:
If you want to make an rt2500 chipset wireless card work with wpa_supplicant (and it doesn't already), maybe you have tried to run wpa_supplicant and got a bunch of errors saying nasty things about IOCTRL, this means, most likely, that wpa_supplicant is having trouble communicating with your wireless card.  One problem (my problem) was the driver, the old rt2500 driver.
Are you using an old rt2500 driver, or the newer rt2500pci driver?  You can probably tell by looking at your rc.conf file, in the section called "MODULES", if you have rt2500 listed, you're
loading the old driver, so you should put an "!" in front to disable it.  You also need to make sure you have the rt2500pci drive and (I think) the rt2x00lib and rt2x00pci modules listed.  I'm pretty sure these are included with an up to date stock kernel.
I guess another way to look for the driver would be to boot your computer and run "dmesg | more" and parse through the output, or "dmesg | more | grep | rt2500", which should find you any lines that contain text "rt2500".
Now, if you've been using that old rt2500 driver, your wireless card has probably been calling itself "ra0", assuming it's your only card using the rt2500 driver, when you switch to the new driver, it will call itself "wlan?" where ? is some number.  It's probably wlan0, unless you have another wireless card, I do (a Broadcom card that has never worked) so mine is actually called wlan1.  There are tutorials for making Broadcom cards work, but that's a different kettle of worms and I'm not qualified to talk about it since mine doesn't.
Now it should work with wpa_supplicant using the driver "wext", which should be the default for wpa_supplicant, but just to be safe you can type:
wpa_supplicant  -d -iwlan? -Dwext -c/path_to_config_file/your_config_file
                         |   |          |            |
                         |   |          |         Config file to use
                         |   |         driver to use
                         |  interface to use
                         |
                        tell wpa_supplicant to be more verbose, -dd is even more verbose
You probably already read the man pages and wiki for wpa_supplicant, but if you haven't noticed yet the syntax for the options is -oPARAMETER there's no seperation between the option and it's argument.
Now if you did all this, and you're not getting IOCTRL errors, then you're wireless driver and wpa_supplicant are probably communicating just fine.  If you're still not able to connect then the problem could be one of:
Unable to associate with access point, possibly because of weak signal or MAC filtering
Errors in your wpa_supplicant config file, maybe a PSK is wrong, maybe you're specifying a protocol wrong?  If you have some sort of complex configuration / AP setup, it might be best too try a simpler configuration with an AP you can administer (like a home portal, if you have one), see if you can get that to work, and then figure out why your super complex configuration to work.
If you want too, read tomk's posts below, my other posts are (most likely) not helpful.
_____________________________ORGINAL POST__ORGINAL TOPIC:Can BSD drivers work w/ WPA_SUPPLICANT in Linux?_____________________________________
Hello all,
Recently I installed FreeBSD on a laptap with a rt2500 chipset wireless card and was able, for the first time ever, to use wpa encrypted networking via wpa_supplicant.  Then I screwed up my rc.conf file, tried to fix it, and apparently completely broke the system. 
So I decided to install arch, because I didn't really want to rebuild the ports I had installed, but then, it appears, I can't get wpa_supplicant to work.  Not so, so bad for my home network (I can either use an ethernet connection or switch my router to an open connection), but I'm intrigued enough at the prospect of being able to use the wifi network at my university, that I really want this to work now. 
So I messed around with wpa_supplicant, but apparently wpa_supplicant doesn't support the rt2500 driver.  But I know the generic BSD driver works (wext does not), so, perhaps naively, I tried to build wpa_supplicant with the BSD driver enabled. 
But, when I did this, mkpkg tells me that my config file is bad.  Is this because I'm trying to enable the BSD driver?
I realize it might be helpful to look at my config file, but for the moment, I'm too lazy to fiddle with things to get the file of the laptop, but it occurs to me that it might just be downright silly to expect a bsd driver to work with linux.  So if I"m being stupid, could someone please tell me?
-thanks!
Last edited by pseudonomous (2008-08-24 21:29:26)

This is the last config file I tried:
# Example wpa_supplicant build time configuration
# This file lists the configuration options that are used when building the
# hostapd binary. All lines starting with # are ignored. Configuration option
# lines must be commented out complete, if they are not to be included, i.e.,
# just setting VARIABLE=n is not disabling that variable.
# This file is included in Makefile, so variables like CFLAGS and LIBS can also
# be modified from here. In most cases, these lines should use += in order not
# to override previous values of the variables.
# Uncomment following two lines and fix the paths if you have installed OpenSSL
# or GnuTLS in non-default location
#CFLAGS += -I/usr/local/openssl/include
#LIBS += -L/usr/local/openssl/lib
# Some Red Hat versions seem to include kerberos header files from OpenSSL, but
# the kerberos files are not in the default include path. Following line can be
# used to fix build issues on such systems (krb5.h not found).
#CFLAGS += -I/usr/include/kerberos
# Example configuration for various cross-compilation platforms
#### sveasoft (e.g., for Linksys WRT54G) ######################################
#CC=mipsel-uclibc-gcc
#CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
#CFLAGS += -Os
#CPPFLAGS += -I../src/include -I../../src/router/openssl/include
#LIBS += -L/opt/brcm/hndtools-mipsel-uclibc-0.9.19/lib -lssl
#### openwrt (e.g., for Linksys WRT54G) #######################################
#CC=mipsel-uclibc-gcc
#CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
#CFLAGS += -Os
#CPPFLAGS=-I../src/include -I../openssl-0.9.7d/include \
#-I../WRT54GS/release/src/include
#LIBS = -lssl
# Driver interface for Host AP driver
CONFIG_DRIVER_HOSTAP=y
# Driver interface for Agere driver
#CONFIG_DRIVER_HERMES=y
# Change include directories to match with the local setup
#CFLAGS += -I../../hcf -I../../include -I../../include/hcf
#CFLAGS += -I../../include/wireless
# Driver interface for madwifi driver
CONFIG_DRIVER_MADWIFI=y
# Change include directories to match with the local setup
CFLAGS += -I../madwifi
# Driver interface for Prism54 driver
# (Note: Prism54 is not yet supported, i.e., this will not work as-is and is
# for developers only)
#CONFIG_DRIVER_PRISM54=y
# Driver interface for ndiswrapper
CONFIG_DRIVER_NDISWRAPPER=y
# Driver interface for Atmel driver
CONFIG_DRIVER_ATMEL=y
# Driver interface for Broadcom driver
#CONFIG_DRIVER_BROADCOM=y
# Example path for wlioctl.h; change to match your configuration
#CFLAGS += -I/opt/WRT54GS/release/src/include
# Driver interface for Intel ipw2100/2200 driver
#CONFIG_DRIVER_IPW=y
# Driver interface for generic Linux wireless extensions
CONFIG_DRIVER_WEXT=y
# Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
CONFIG_DRIVER_BSD=y
CFLAGS += -I/usr/local/include
LIBS += -L/usr/local/lib
# Driver interface for Windows NDIS
#CONFIG_DRIVER_NDIS=y
#CFLAGS += -I/usr/include/w32api/ddk
#LIBS += -L/usr/local/lib
# For native build using mingw
#CONFIG_NATIVE_WINDOWS=y
# Additional directories for cross-compilation on Linux host for mingw target
#CFLAGS += -I/opt/mingw/mingw32/include/ddk
#LIBS += -L/opt/mingw/mingw32/lib
#CC=mingw32-gcc
# By default, driver_ndis uses WinPcap for low-level operations. This can be
# replaced with the following option which replaces WinPcap calls with NDISUIO.
# However, this requires that WZC is disabled (net stop wzcsvc) before starting
# wpa_supplicant.
# CONFIG_USE_NDISUIO=y
# Driver interface for development testing
#CONFIG_DRIVER_TEST=y
# Driver interface for wired Ethernet drivers
CONFIG_DRIVER_WIRED=y
# Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
# included)
CONFIG_IEEE8021X_EAPOL=y
# EAP-MD5
CONFIG_EAP_MD5=y
# EAP-MSCHAPv2
CONFIG_EAP_MSCHAPV2=y
# EAP-TLS
CONFIG_EAP_TLS=y
# EAL-PEAP
CONFIG_EAP_PEAP=y
# EAP-TTLS
CONFIG_EAP_TTLS=y
# EAP-GTC
CONFIG_EAP_GTC=y
# EAP-OTP
CONFIG_EAP_OTP=y
# EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
#CONFIG_EAP_SIM=y
# EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
#CONFIG_EAP_PSK=y
# EAP-PAX
#CONFIG_EAP_PAX=y
# LEAP
CONFIG_EAP_LEAP=y
# EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
#CONFIG_EAP_AKA=y
# EAP-SAKE
#CONFIG_EAP_SAKE=y
# EAP-GPSK
#CONFIG_EAP_GPSK=y
# Include support for optional SHA256 cipher suite in EAP-GPSK
#CONFIG_EAP_GPSK_SHA256=y
# PKCS#12 (PFX) support (used to read private key and certificate file from
# a file that usually has extension .p12 or .pfx)
CONFIG_PKCS12=y
# Smartcard support (i.e., private key on a smartcard), e.g., with openssl
# engine.
CONFIG_SMARTCARD=y
# PC/SC interface for smartcards (USIM, GSM SIM)
# Enable this if EAP-SIM or EAP-AKA is included
#CONFIG_PCSC=y
# Development testing
#CONFIG_EAPOL_TEST=y
# Replace native Linux implementation of packet sockets with libdnet/libpcap.
# This will be automatically set for non-Linux OS.
#CONFIG_DNET_PCAP=y
# Select control interface backend for external programs, e.g, wpa_cli:
# unix = UNIX domain sockets (default for Linux/*BSD)
# udp = UDP sockets (default for Windows)
# y = use default (backwards compatibility)
# If this option is commented out, control interface is not included in the
# build.
CONFIG_CTRL_IFACE=y
# Include support for GNU Readline and History Libraries in wpa_cli.
# When building a wpa_cli binary for distribution, please note that these
# libraries are licensed under GPL and as such, BSD license may not apply for
# the resulting binary.
#CONFIG_READLINE=y
# Remove debugging code that is printing out debug message to stdout.
# This can be used to reduce the size of the wpa_supplicant considerably
# if debugging code is not needed. The size reduction can be around 35%
# (e.g., 90 kB).
#CONFIG_NO_STDOUT_DEBUG=y
# Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
# 35-50 kB in code size.
#CONFIG_NO_WPA=y
# Remove WPA2 support. This allows WPA to be used, but removes WPA2 code to
# save about 1 kB in code size when building only WPA-Personal (no EAP support)
# or 6 kB if building for WPA-Enterprise.
#CONFIG_NO_WPA2=y
# Remove AES extra functions. This can be used to reduce code size by about
# 1.5 kB by removing extra AES modes that are not needed for commonly used
# client configurations (they are needed for some EAP types).
#CONFIG_NO_AES_EXTRAS=y
# Select configuration backend:
# file = text file (e.g., wpa_supplicant.conf)
# winreg = Windows registry (see win_example.reg for an example)
CONFIG_BACKEND=file
# Select program entry point implementation:
# main = UNIX/POSIX like main() function (default)
# main_winsvc = Windows service (read parameters from registry)
# main_none = Very basic example (development use only)
#CONFIG_MAIN=main
# Select wrapper for operatins system and C library specific functions
# unix = UNIX/POSIX like systems (default)
# win32 = Windows systems
# none = Empty template
#CONFIG_OS=unix
# Select event loop implementation
# eloop = select() loop (default)
# eloop_win = Windows events and WaitForMultipleObject() loop
# eloop_none = Empty template
#CONFIG_ELOOP=eloop
# Select layer 2 packet implementation
# linux = Linux packet socket (default)
# pcap = libpcap/libdnet/WinPcap
# freebsd = FreeBSD libpcap
# winpcap = WinPcap with receive thread
# ndis = Windows NDISUIO (note: requires CONFIG_USE_NDISUIO=y)
# none = Empty template
#CONFIG_L2_PACKET=linux
# IEEE 802.11i/IEEE 802.11e STAKey negotiation for direct link connection
#CONFIG_STAKEY=y
# Proposed replacement for STAKey negotiation: PeerKey handshake for
# Station to Station Link
CONFIG_PEERKEY=y
# Select TLS implementation
# openssl = OpenSSL (default)
# gnutls = GnuTLS (needed for TLS/IA, see also CONFIG_GNUTLS_EXTRA)
# internal = Internal TLSv1 implementation (experimental)
# none = Empty template
#CONFIG_TLS=openssl
# Whether to enable TLS/IA support, which is required for EAP-TTLSv1.
# You need CONFIG_TLS=gnutls for this to have any effect. Please note that
# even though the core GnuTLS library is released under LGPL, this extra
# library uses GPL and as such, the terms of GPL apply to the combination
# of wpa_supplicant and GnuTLS if this option is enabled. BSD license may not
# apply for distribution of the resulting binary.
#CONFIG_GNUTLS_EXTRA=y
# If CONFIG_TLS=internal is used, additional library and include paths are
# needed for LibTomCrypt and TomsFastMath.
#LTC_PATH=/usr/src/libtomcrypt-1.11
#TFM_PATH=/usr/src/tomsfastmath-0.09
#CFLAGS += -I$(LTC_PATH)/src/headers
#LIBS += -L$(LTC_PATH) -L$(TFM_PATH)
#LIBS_p += -L$(LTC_PATH) -L$(TFM_PATH)
# Integrate ndis_events.exe functionality into wpa_supplicant.
# This is only for Windows builds and requires WMI-related header files and
# WbemUuid.Lib from Platform SDK even when building with MinGW.
#CONFIG_NDIS_EVENTS_INTEGRATED=y
#PLATFORMSDKLIB="/opt/Program Files/Microsoft Platform SDK/Lib"
# Add support for DBus control interface
#CONFIG_CTRL_IFACE_DBUS=y
# Add support for loading EAP methods dynamically as shared libraries.
# When this option is enabled, each EAP method can be either included
# statically (CONFIG_EAP_<method>=y) or dynamically (CONFIG_EAP_<method>=dyn).
# Dynamic EAP methods are build as shared objects (eap_*.so) and they need to
# be loaded in the beginning of the wpa_supplicant configuration file
# (see load_dynamic_eap parameter in the example file) before being used in
# the network blocks.
# Note that some shared parts of EAP methods are included in the main program
# and in order to be able to use dynamic EAP methods using these parts, the
# main program must have been build with the EAP method enabled (=y or =dyn).
# This means that EAP-TLS/PEAP/TTLS/FAST cannot be added as dynamic libraries
# unless at least one of them was included in the main build to force inclusion
# of the shared code. Similarly, at least one of EAP-SIM/AKA must be included
# in the main build to be able to load these methods dynamically.
# Please also note that using dynamic libraries will increase the total binary
# size. Thus, it may not be the best option for targets that have limited
# amount of memory/flash.
CONFIG_DYNAMIC_EAP_METHODS=y
# Include client MLME (management frame processing).
# This can be used to move MLME processing of Devicescape IEEE 802.11 stack
# into user space.
#CONFIG_CLIENT_MLME=y
# Currently, driver_devicescape.c build requires some additional parameters
# to be able to include some of the kernel header files. Following lines can
# be used to set these (WIRELESS_DEV must point to the root directory of the
# wireless-dev.git tree).
WIRELESS_DEV=/lib/modules/2.6.24-ARCH/build
CFLAGS += -I$(WIRELESS_DEV)/net/mac80211
Last edited by pseudonomous (2008-08-24 08:23:23)

Similar Messages

  • K9A2 Platinum Cannot Use RAID and PCI IDE card [SOLVED]

    Hello,
    I am trying to do the following set-up on my K9A2 Platinum, using a Phenom 9600 processor:
    - 2xSATA2 250GB Seagate drives on Promise T3 SATA controller (to be used as RAID 1 devices)
    - 1xSATA DVD-RW on Sb600
    - 2xIDE DVD-RW on onboard IDE
    - One PCI HiPoint RocketRAID ATA100 card (operating in IDE mode) on PCI slot 2 with 1xIDE 40GB hard disk (my Linux partition)
    On the BIOS I have enabled the Extra RAID function, in order to enable Promise to work as RAID.
    The system POSTs as follows:
    - Initial detection (CPU, RAM e.tc)
    - RocketRAID gets initialized and detects the IDE disk attached (40GB)
    - Promise RAID tries to detect the disks (the RAID array) and the whole system hangs.
    I've tried to relocate the two SATA hard disks to the SB600 controller (SATA 1&2 ports), but the same thing happens (after changing the BIOS to disable extra RAID function and enable RAID mode on onboard SATA SB600). The only way to POST the machine, is to remove the RocketRAID PCI card, but this way I can no longer boot my Linux disk.
    Using BIOS 1.2 and 1.3beta 2 (sent to me by MSI support).
    Any help is greatly appreciated.

    Thanks for the replies.
    Now, I'm going to surprise you: I managed to make both cards (the Promise and HighPoint) work together! Read how...
    Somehow, I got the impression that the problems I had were either caused by the BIOS or the hard disks (the SATA ones). I flashed the motherboard back to the official 1.2, doing a complete BIOS reset (removed the battery) and tried again without the RocketRAID card installed. This time, the Promise BIOS (which btw is an earlier version from the one the 1.3b2 BIOS had) reported that the one SATA drive was malfunctioning (and it was a sealed brand-new Seagate). Removed the drive, installed it on SB600 and SeaTools indeed reported that it was failing (it didn't manage to pass even the quick test...).
    Now I was curious: could it be that this - together with the beta BIOS - was the cause of my problems? I installed the other SATA disk to Promise T3 (the red socket) and the controller detected it, but all I could do is to set it up as a RAID 0 array (which pretty much does nothing). Next, I installed the RocketRAID also together with the IDE Linux disk and the system detected both disks; I can boot Linux fine and enter both the RocketRAID BIOS and Promise T3 BIOS. I can delete and recreate the array in Promise T3 as I please, but due to the fact that I only have one SATA disk now, I get limited options (RAID 0 and JBOD).
    Is it safe to assume that since the Promise BIOS is working with the RocketRAID installed, that my SATA RAID controller is working?
    Tomorrow, I shall return the SATA drive to the store I bought it and get a replacement, so that I can set up my RAID 1.
    The plan is to have Linux boot from the IDE (I've never managed to set up a Linux disk to boot from RAID) where Windows Server 2003 will boot from RAID.
    Will keep you posted about the progress I make.
    BTW Bas, I'm sorry I couldn't make out much of your brainstorming 
    Regarding the Promise controller: the board has a Promise chip right above the SATA ports, which has the number 42819 on it. I can also verify that both SB600 RAID and Promise T3 RAID have EXACTLY the same BIOS menu interface (the only differences are the texts "ATi SB600" and "Promise T3" on the menus, plus that the SB600 has also an option to securely erase the drives which Promise does not have). Are you suggesting that the SB600 RAID is actually the Promise T3? I do not know if it would be possible to have BOTH RAID controllers (SB600 and T3) working at the same time (I do not have enough disks to try...).

  • Wireless problems with AR5212, wpa_supplicant and dhcpcd. [solved]

    Dear friends,
    I am currently experiencing problems with getting my AR5212 wireless card to work with wpa_supplicant and the ath5k driver. Everything is set up according to the Arch Wireless Setup Wiki http://wiki.archlinux.org/index.php/Wireless_Setup. First, I do the following:
    # ifconfig wlan0 up
    # iwconfig wlan0 essid Prairiedog
    # wpa_supplicant -B -Dwext -iwlan0 -c /etc/wpa_supplicant.conf
    It goes well even up until the point where I wish to request a dhcp lease from my router.
    # dhcpcd wlan0
    wlan0: dhcpd 4.0.10 starting
    wlan0: braodcasting for a lease
    wlan0: offered 192.168.0.2 from 192.168.0.1 'm'
    wlan0: checking 192.168.0.2 is available on attached networks
    wlan0: leased 192.168.0.2 for 86400 seconds
    Excerpt from ifconfig:
    Link encap:Ethernet HWaddr 00:56:A4:44:DA:1A
    inet addr:192.168.0.2 Bcast: 255.255.255.255 Mask 255.255.255.0
    My wireless card should then be associated with 192.168.0.2...
    What confuses me is that I cannot get the my wireless net card to ping any addresses. It seems that there is no connection to the outer world, despite the fact that an address has been assigned by my router. When I for example do a
    # ping www.google.com
    I get the response
    ping: unknown host www.google.com
    What is even more strange is that I cannot ping the router itself:
    # ping 192.168.0.1
    PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data
    From 192.168.0.2 icmp_seq=1 Destination Host Unreachable
    Anyone who has had the same problem and actually solved it? I would really like to get this distribution up and running on my IBM X32 laptop. The simpleness and the philosophy behind it is very appealing to me. But without a wireless connection it is pretty pointless. Any pointer or help will be highly appreciated
    Last edited by kitabu (2009-12-20 10:37:29)

    Hi Ekimino,
    I did as you suggested. I requested a dhcp lease and the router gave me 192.168.0.2. But I seems that I am losing connection immediately afterwards. When I ping an external address like www.google.com I get "unknown host" and when I ping my router I get the message that the destination host is unreachable. Perhaps the issue lies with dhcpcd or maybe a combination of the ath5k and dhcpcd?

  • The airport card on my macbook pro is not functioning. In the airport firmware folder it says that it opens with final cut express. Is this the problem and how do i solve it?

    The airport card on my macbook pro is not functioning. In the airport firmware folder it says that it opens with final cut express. Is this the problem and how do i solve it?

    Hopefully one of these steps should solve the problem.
    1. System Preference > Sound > Output > Internal Speakers
        Highlight  Internal Speakers
        Make sure that Mute is not enabled.
    2. Remove the headphone.
        If you see red light in the headphone port, plug the headphone
        in and out of the port 5 or 6 times to flip the microswitch inside.
        Sound output may be stuck in the digital mode.
    3. Reset PRAM.  http://support.apple.com/kb/PH4405
    4. Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
    5. Applications > Utilities > Audio MIDI Setup
        Audio Devices window
        Side Bar
        Click the Built-in Output.
        Under Mute any of the boxes checked? If so, uncheck it.
    6. System Preferences > Sound> Sound Effects
        Play sound effects through:
       Select "Internal speakers" and then back to "Selected sound output device".

  • Audigy SE and AL ADA885 problem needs to be solved once and for

    I just purchased the Audigy SE (I'm on a budget) and installed it. I have the Altec Lansing ADA885 THX 4. digital surround speakers. This sound card DOES NOT work correctly with them. I have been all over the net trying everything that I have seen suggested to make it work. The specs say it should work. It does not. I have tried every possible wiring configuration to no avail. One thing that I find rather annoying is that I have seen several people say that changing the SPDIF to passthrough fixes the problem, yet I cannot find anywhere to change that setting, as I cannot find Audio HQ on the driver CD or on the net to install and change that setting. Can someone, for the love of god, please come up with a valid solution to this problem? I have seen so many people with this same problem who get the run around and answers that just don't help at all. What is needed is "Here, do a, then do b, download c, and BAM! problem solved". Not "Here, do f, do h, download c, j, k, m, and p, then go back and do f again, then a, then b, then come back here and let us know that none of it fixed the problem". I don't wish to be a whiner or a jerk about this, but it is a bit frustrating to be "upgrading" to a card that won't even work right. On behalf of all those with the same problem, thanks in advance to anyone who has a valid solution to this very big, very real problem.

    OK...
    . Do you have the complete application suie of the Audigy SE installed?
    2. If so, in Control Panel do you have the Audio Console or Audio Control Panel?
    3. If you do, change the settings for Decoder Settings to SPDIF passthrough. (THis is however only of AC-3 content, it doesn't affect other formats) (I am not sure the Audigy SE does have a decoder, if not, you need to change the setting in the AC-3 decoder you use)
    4. Then go to Device settings and change the Digital Output sampling rate to 48kHz.
    Now if you cannot find Audio Console, then you should download the latest drivers. They specifically state they allow you to change the "SPDIF output Sampling rate", so you should be able to access the option. I believe your problem lies to the fact your SPDIF is configured for 96kHz output and most probably these very old speakers do not support more than 48kHz.
    PS: The instruction I posted above, are based on an Audigy 2 ZS setup, so the naming of the settings and access programs could be different on the SE, but nevertheless present.

  • HT1918 How do you solve an issue with the card? I don't get the option of 'none' :(

    How do you solve an issue with the card? I don't get the option of 'none'

    I had this exact same problem with the new iPhone I bought on 1/4/13. The walk through they provide on how to do this is useless because it fails to explain that if you are already having the problem of not getting the "None" payment option with an Apple ID then you will need to create a completely new Apple ID.
    I had to do this 7 times since I bought my iPhone on Friday until this morning to figure out how to finally be able to use the Home Sharing option in iTunes to put my music collection on my brand new $500.00 iPhone. Pretty pathetic if you ask me but since it made me so angry I want to make sure other know how to do this so you don't get as upset as I did.
    #1 If your current or soon to be "old" Apple ID is not providing the option for "None" as a payment option then you need to make a brand new one. But you have to make it specifically how I tell you.
    #2 You will need to use an email address that has not already been used for anything related to a previous Apple ID. You might need to make a brand new email address.
    #3 Open iTunes, then open iTunes Store (upper right corner of iTunes).
    #4 Click on App Store (upper center of screen).
    #5 Scroll down the screen page until you see Top Free Apps on the right side.
    #6 Choose any one of the FREE apps.
    #7 You should either get the option to create a new Apple ID box, either that, or it will pop up with some kind of disclaimer and then it does the create new Apple ID.
    Either way just create a new Apple ID when it gives you the option to and then when you get to the page that looks like the payment page the "None" payment option will finally be available.
    Note: You will still have to fill out the information on the payment page. As long as you choose the "None" option it will not request any credit card information.
    #8 You will be sent a confirmation email to the new email account. Just follow through with what ever it tells you and viola now you can use your Apple Device.
    What a pain in the keester, eh?

  • Belkin wireless card F5D7010 RT2500 chipset on Solaris10 IBMthinpad R40

    I have a Belkin F5D7010 wireless card with RT2500 chipset .I have been trying to set up this wireless card on Solaris10 (IBM thinkpad R40 box) for the past week, without success. If i use ndis wrapper I am getting $chicago$ Segementation Fault core dumped error while running ./ndiscvt -i ndis.inf - s ndis.sys -o ndis.h command. I tried with Ral driver too, I was able to plumb and the ifconfig-a shows ral0 interface up, but no connection. Is there no light at the end of the tunnel? Any help is appreciated . I am a novice in solaris.
    Thanks.

    Thanks, what about RAL driver , is it hopeless for
    this card too. At this point I am pretty much ready
    to get myself one of these cardsdon't know. All I do know is that their NDIS driver only has the code base for Broadcom cards only. I was hoping to use a Linksys card with their NDIS port but slammed into the wall and then posted a message. Support for any card other then Broadcom is simply not in the code base so there is nothing that you can do.
    Netgear WG511T Cardbus Works, forgot to mention that I needed cardbus-0.3 as well.
    So Netgear WG511T
    with
    ath-01 for Solaris 10 support
    wificonfig -01 for Solaris 10 support
    cardbus-0.3 to get cardbus support added to Solaris 10.
    The Netgear card is cardbus and Solaris 10 only has PCMCIA support without cardbus.
    alan

  • Hi I tried to contact with Sydney Apple store but impossible so far. Actually I found my Visa card been conducted 4 transactions in 7th may. I am in Auckland that time. It must be wrong deduction. Can anyone help me solve this problem.  My card is visa t

    Hi I tried to contact with Sydney Apple store but impossible so far. Actually I found my Visa card been conducted 4 transactions in 7th may. I am in Auckland that time. It must be wrong deduction. Can anyone help me solve this problem.
    My card is visa the 4 transactions are:
    $19.48, $19.48, $12.98 and $ 25.97
    otherwise I need report to police.
    Also please forward it to the related department please
    Thanks
    Kathy
    Please
    <Personal Information Edited by Host>

    You are not addressing Apple here - this is a technical forum and we are all other users here.
    You should also not post private info in an open forum - it is too dangerous - I've asked the hosts to remove the financial info and your email address. Anyone on this forum will reply to this thread - no need for an email address.
    As for the activity: please call your credit card company immediately to report and question the activity. They can get in touch with the vendor (Apple). Calling the police will not be very helpful.

  • Dhcp and pcmcia NIC startup (SOLVED)

    Hello;
    I'm pretty impressed with Arch up to now, but am having a problem with the pcmcia NIC. I'm sure it's some simple config problem, but I haven't been able to figure it out.
    I'm using a Network Everywhere NP100, which uses the axnet driver. No problems there. I have it set as eth0="dhcp".
    It works fine, but when I restart the box, or start up from a cold start, dhcp isn't assigning an IP, and during boot, network fails on start. After the box is up and running, I have to remove the card from the slot and reinsert it to get dhcp to assign an IP.
    I haven't seen this problem with other distros, so I know it can be fixed, not not sure how. Below is my rc.conf, maybe somebody can spot something I'm missing?
    HARDWARECLOCK="UTC"
    TIMEZONE=EST5EDT
    KEYMAP=us
    CONSOLEFONT=
    USECOLOR="yes"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # Networking
    HOSTNAME="Arch-laptop"
    # Module to load at boot-up (in this order)
    #   (prefix a module with a ! to disable it)
    MODULES=(!usbserial !ide-scsi snd-es1968 yenta-socket pcmcia ohci_hcd ehci_hcd pcspkr parport_pc parport irtty_sir sir_dev irda crc_ccitt i2c_piix4 i2c_core uhci_hcd usbcore tsdev evdev rsrc_nonstatic pcmcia_core snd_ac97_codec snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd_page_alloc gameport snd_mpu401_uart snd_rawmidi snd_seq_device snd soundcore rtc)
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    #   (prefix an interface in INTERFACES with a ! to disable it)
    # Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
    lo="lo 127.0.0.1"
    eth0="dhcp"
    INTERFACES=(lo eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    #   (prefix a route in ROUTES with a ! to disable it)
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Daemons to start at boot-up (in this order)
    #   (prefix a daemon with a ! to disable it)
    DAEMONS=(dbus hal pcmcia syslog-ng crond network !netfs !hotplug)
    # End of file
    Any suggestions would be appreciated.

    # When you boot the machine the first time it is just fine?
    No it has this problem every time the machine is started.
    # Do you really have to remove the card from the slot, isn't 'cardctl eject' enough?
    Removing and reinserting the card is faster than typing out a command so that's what I do.
    # Does it work with static IP?
    Don't know, router is set up as DHCP and haven't tried changing it to static. As it's a mobile machine, I'd prefer it works using dhcp.
    # Does your machine own another nic, so the race who will become eth0 could be won by an ethernet card?
    No, I just have the one NIC at the moment. I have a wireless pcmcia NIC as well, but haven't installed/configured it yet as I don't use it much and would like to solve this ethernet problem first.
    #By the way, which kernel modules own the axnet drivers?I can't see any matching module in rc.conf's modules section, and you have hotplug disabled.
    It's owned by pcmcia, which loads the module itself when the card is detected. This is working perfectly and the driver modules loads no problem. As far as I can tell the problem seems to be with the network daemon itself, but I could be mistaken about this.
    I disabled hotplug for the moment while I try to figure this out. At first I thought hotplug was the culprit but even with it disabled the problem remains. I just haven't bothered to re-enable hotplug as I already have all the modules loading through rc.conf anyway and it speeds up booting.
    Hope the additional info may help figure this out. I'm stumped.

  • In iMovie: I open a project that has been finalized. source fragment is missing. I see a yellow triangle with exclamation mark. Why is that and how do I solve the problem?

    in iMovie:
    I open a project that has been finalized. source fragment is missing. I see a yellow triangle with exclamation mark. Why is that and how do I solve the problem?
    please help.
    J. Aalbers

    Shouldn't really be the MPE at fault here ... what is the codec of the footage/sequence/project?
    Second, can you create a new project in PrPro, then in the media browser, import that sequence from the other project?

  • Itunes in my mac and itunes in my mac book pro do not share the same number of songs, isn't icloud and match supposed to solve that problem?

    My itunes library in my mac and mac book pro are not the same, depending on which machine I loaded the music on.  Isn't icloud and match supposed to solve that problem?

    wolverine76 wrote:
    Isn't icloud and match supposed to solve that problem?
    Um, not really. What are you trying to accomplish?

  • HT4628 I am able to download updates and send and receive email so I know I have connection to my wireless router. However, when I click on Safari, I get the message "Safari quit unexpectedly." What is my problem and how do I solve?

    When I click on Safari, I get the message "Safari quit unexpectedly." I know I have access to my wireless net work because I just found and downloaded updates and can send and receive mail. What is my problem and hoe is it solved?

    As Outlook is not an Apple product, you will find more helpers familiar with Outlook here:
    Office for Mac forums

  • Since I updated my 4S iphone to the latest iOS7 version, I can no longer close any of my apps.  As a result, all my apps remain open on my phone.  Even powering down and restarting does not solve the problem.  Specifically, the icons don't wiggle anymore.

    Since I updated my 4S iphone to the latest iOS7 version, I can no longer close any of my apps.  As a result, all my apps remain open on my phone.  Even powering down and restarting does not solve the problem.  Specifically, when I double-click the start button, my open app icons display.  But when I hold my finger on an icon, the apps do not wiggle and display an "x" to close.  Any advice... thanks?!

    Double tap the Home button, then swop upwards on the App Preview (not the App Icon). Tap the Home button again when done to return to normal screen.

  • I cannot shut dow my MacBook Pro using the apple icon (as it was suppose to be), actually I have to press and hold the on/off buttom. I have taken twice for Mac dealer and they did not solve the problem. What must I do?

    I cannot shut dow my MacBook Pro using the apple icon (as it was suppose to be), actually I have to press and hold the on/off buttom. I have taken twice for Mac dealer and they did not solve the problem. What must I do? I would to remark that I have installed 2 antivirus and uninstalled one of them. Since then I have facing this troublesome issue. Thanks

    Uninstall the other AV software. They are not needed. All they do is cause trouble like you are having now.
    If you have been forcing the Mac to shut down with the power switch you may nave corrupted your disk. You should repair it with disk Utilty to remove any corruption the shutdwons may have cased.
    Allan

  • I tried to import a PDF of a line drawing into Photoshop Elements. The thumbnail looks fine, but when imported the file is empty. This used to work in the past. What is wrong and how do I solve this?

    I tried to import a PDF of a line drawing into Photoshop Elements. The thumbnail looks fine, but when imported the file is empty. This used to work in the past. What is wrong and how do I solve this?

    Hi
    The value of the Channel Strip volume etc is not stored within the C Strip setting, as you have discovered.
    If you really wanted, you could add a Gain plug to the strip, with it set to give the correct output level with the Fader set to 0
    (Or just set the fader manually in MS)
    CCT

Maybe you are looking for

  • Rtf template taking long time to load xml

    Dear All rtf template taking long time to load xml and Insert fields. I am using MS office2010. It was working before. can any one help me out. Regards Arifuddin

  • Sound and brightness buttons don't work, any suggestions?

    Hi guys, I just bought a MacBook Pro, and I can't control the volume and the bightness by the keyboard button. Do to so, I have ti to it by the icones in the top bar. How can I set these hotkeys on my keyboard? Any suggestions? Thank you and happy ne

  • Sales order with reference Contract

    Hi Gurus, i want to create a sales order with refrence to a contract. While iam clicking on withreference button in VA01 i am getting inquiry,quatation, contract tabs. But i want only contract tab shoul reflect. so how can i set this in SD. Cheers, S

  • Getting Error Whi;le creating AP Invoice

    Hi all I m gettihng one error while creating or updating GRPO Invalid value [Goods Receipt PO - Tax Extension - State][line: 0]  [Message 439-173] I update Business Partner Address State but Still its not updating as well as I m not able to crating a

  • I have some queries related to Nexus .

    I have some queries regarding Nexus Architecture. 1) We have MSFC and PFC for layer 3 & layer 2 communication in 6500 . How layer 2 & 3 traffic is been handled in Nexus. Do they have a specific asics. What are those asics ? 2) We have three types o