[SOLVED] Intel 5300 wifi on new Arch64 install

I just bought a new Sager NP9262 laptop (but not really... it's huge, heavy, and sports a quad-core Q9650 processor), and put 64-bit Arch on it.  I've managed to get everything set up on it except for the wireless chip, an intel 4965.  I've downloaded the correct firmware (iwlwifi-4965-ucode) and the kernel module exists, but there seems to be a more basic problem.  hwdetect --show-net doesn't list the card at all, and lspci -k gives a rather unhelpful line saying
Network controller: Intel Corporation Device 4235
and lists no kernel modules which could work with the device.  Ideas?
Last edited by tavianator (2008-09-06 18:22:37)

EDIT:  now uses 2.6.27-rc6, which I haven't tested.  For something I'm sure works on my laptop, set '_rc' to '-rc5' and '_git' to '-git9', and uncomment the various commented-out lines dealing with -git patches.
Okay.  First start with everything from /var/abs/core/kernel26 in a separate directory.  Then, replace PKGBUILD with this
PKGBUILD:
# $Id: PKGBUILD 10337 2008-08-26 21:10:56Z tpowa $
# Maintainer: Tobias Powalowski <[email protected]>
# Maintainer: Thomas Baechler <[email protected]>
pkgname=kernel26
_basekernel=2.6.26
pkgver=2.6.27
pkgrel=1
_rc=-rc6
_git=
pkgdesc="The Linux Kernel and modules"
arch=(i686 x86_64)
license=('GPL2')
groups=('base')
url="http://www.kernel.org"
backup=(etc/mkinitcpio.d/${pkgname}.preset)
depends=('coreutils' 'module-init-tools' 'mkinitcpio>=0.5.18')
# pwc, ieee80211 and hostap-driver26 modules are included in kernel26 now
# nforce package support was abandoned by nvidia, kernel modules should cover everything now.
# kernel24 support is dropped since glibc24
replaces=('kernel24' 'kernel24-scsi' 'kernel26-scsi'
'alsa-driver' 'ieee80211' 'hostap-driver26'
'pwc' 'nforce' 'squashfs' 'unionfs' 'ivtv'
'zd1211' 'kvm-modules' 'iwlwifi' 'rt2x00-cvs')
install=kernel26.install
source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$_basekernel.tar.bz2
http://kernel.org/pub/linux/kernel/v2.6/testing/patch-$pkgver$_rc.bz2
# http://kernel.org/pub/linux/kernel/v2.6/snapshots/patch-$pkgver$_rc$_git.bz2
# the main kernel config files
config config.x86_64
# standard config files for mkinitcpio ramdisk
kernel26.preset)
md5sums=('5169d01c405bc3f866c59338e217968c'
'd3a173a00e15a6bf3c76068537a5c069'
'4fd1071a8dc2ea993aed81d5920de18d'
'd5ad1f296356d159a2616a49d98b3434'
'25584700a0a679542929c4bed31433b6')
build() {
KARCH=x86
cd $startdir/src/linux-$_basekernel
# Add rc patches
patch -Np1 -i $startdir/src/patch-${pkgver}${_rc} || return 1
# patch -Np1 -i $startdir/src/patch-${pkgver}${_rc}${_git} || return 1
if [ "$CARCH" = "x86_64" ]; then
cat ../config.x86_64 >./.config
else
cat ../config >./.config
fi
# build the full kernel version to use in pathnames
. ./.config
### next line is only needed for rc kernels
#_kernver="2.6.25${CONFIG_LOCALVERSION}"
_kernver="${pkgver}${_rc}${_git}${CONFIG_LOCALVERSION}"
# load configuration
yes "" | make config
# build!
# stop here
# this is useful to configure the kernel
#msg "Stopping build"
#return 1
make bzImage modules || return 1
mkdir -p $startdir/pkg/{lib/modules,boot}
make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
cp System.map $startdir/pkg/boot/System.map26
cp arch/$KARCH/boot/bzImage $startdir/pkg/boot/vmlinuz26
install -D -m644 Makefile \
$startdir/pkg/usr/src/linux-${_kernver}/Makefile
install -D -m644 kernel/Makefile \
$startdir/pkg/usr/src/linux-${_kernver}/kernel/Makefile
install -D -m644 .config \
$startdir/pkg/usr/src/linux-${_kernver}/.config
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include
for i in acpi asm-{generic,x86} config linux math-emu media net pcmcia scsi sound video; do
cp -a include/$i $startdir/pkg/usr/src/linux-${_kernver}/include/
done
# copy files necessary for later builds, like nvidia and vmware
cp Module.symvers $startdir/pkg/usr/src/linux-${_kernver}
cp -a scripts $startdir/pkg/usr/src/linux-${_kernver}
# fix permissions on scripts dir
chmod og-w -R $startdir/pkg/usr/src/linux-${_kernver}/scripts
#mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/.tmp_versions
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/kernel
cp arch/$KARCH/Makefile $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/
if [ "$CARCH" = "i686" ]; then
cp arch/$KARCH/Makefile_32.cpu $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/
fi
cp arch/$KARCH/kernel/asm-offsets.s $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/kernel/
# add headers for lirc package
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video
cp drivers/media/video/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/
for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102 usbvideo zc0301; do
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/$i
cp -a drivers/media/video/$i/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/$i
done
# add dm headers
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/md
cp drivers/md/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/md
# add inotify.h
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include/linux
cp include/linux/inotify.h $startdir/pkg/usr/src/linux-${_kernver}/include/linux/
# add CLUSTERIP file for iptables
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/net/ipv4/netfilter/
# add wireless headers
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/net/mac80211/
cp net/mac80211/*.h $startdir/pkg/usr/src/linux-${_kernver}/net/mac80211/
# add dvb headers for external modules
# in reference to:
# http://bugs.archlinux.org/task/9912
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core
cp drivers/media/dvb/dvb-core/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core/
# add dvb headers for external modules
# in reference to:
# http://bugs.archlinux.org/task/11194
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include/config/dvb/
cp include/config/dvb/*.h $startdir/pkg/usr/src/linux-${_kernver}/include/config/dvb/
# add xfs and shmem for aufs building
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/fs/xfs
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/mm
cp fs/xfs/xfs_sb.h $startdir/pkg/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h
# add vmlinux
cp vmlinux $startdir/pkg/usr/src/linux-${_kernver}
# copy in Kconfig files
for i in `find . -name "Kconfig*"`; do
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
cp $i $startdir/pkg/usr/src/linux-${_kernver}/$i
done
cd $startdir/pkg/usr/src/linux-${_kernver}/include && ln -s asm-$KARCH asm
chown -R root.root $startdir/pkg/usr/src/linux-${_kernver}
find $startdir/pkg/usr/src/linux-${_kernver} -type d -exec chmod 755 {} \;
cd $startdir/pkg/lib/modules/${_kernver} && \
(rm -f source build; ln -sf ../../../usr/src/linux-${_kernver} build)
# install fallback mkinitcpio.conf file and preset file for kernel
install -m644 -D $startdir/src/${pkgname}.preset $startdir/pkg/etc/mkinitcpio.d/${pkgname}.preset || return 1
# set correct depmod command for install
sed -i -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" $startdir/kernel26.install
echo -e "# DO NOT EDIT THIS FILE\nALL_kver='${_kernver}'" > ${startdir}/pkg/etc/mkinitcpio.d/${pkgname}.kver
# remove unneeded architectures
rm -rf $startdir/pkg/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
Then, edit the pkgbuild, and uncomment lines 62 and 63, right below "stop here / this is useful to configure the kernel."  Run makepkg, which will extract the sources, patch them, and stop.  Run:
$ cd src/linux-2.6.26
$ make menuconfig
Go to Device Drivers ---> Network Device Support ---> Wireless LAN, and scroll down to "Intel Wireless WiFi Next Gen AGN."  Press 'm' to include this feature as a module.  Enable any subfeatures you want, by pressing 'y,' but be sure to enable "Intel Wireless WiFi 5000AGN."  Also, enable "Enable full debugging output in iwlagn driver," which is above "Intel Wireless WiFi AGN."  Exit menuconfig.  Run
$ cd ../..
$ cp src/linux-2.6.26/.config config
or on Arch64, run
$ cd ../..
$ cp src/linux-2.6.26/.config config.x86_64
Comment out the lines you uncommented in the PKGBUILD, run
$ makepkg -g >> PKGBUILD
$ rm -rf src # otherwise, it tries to patch an already patched kernel
and finally, makepkg!
Also, install the firmware:
PKGBUILD:
# $Id: PKGBUILD 4447 2008-07-07 12:06:04Z thomas $
# Maintainer: Thomas Baechler <[email protected]>
pkgname=iwlwifi-5000-ucode
pkgver=5.4.A.11
pkgrel=1
pkgdesc="Intel wireless firmware for IPW5000 (iwlwifi driver)"
arch=(i686 x86_64)
url="http://intellinuxwireless.org/?p=iwlwifi"
license=('custom')
depends=()
source=(http://intellinuxwireless.org/iwlwifi/downloads/$pkgname-$pkgver.tar.gz)
md5sums=('748860c5079dde1a1313e72511b9322a')
build() {
cd $startdir/src/$pkgname-$pkgver
# Install firmware (ABI version 2, for future versions of iwl4965)
install -D -m 644 iwlwifi-5000-1.ucode $startdir/pkg/lib/firmware/iwlwifi-5000-1.ucode || return 1
# Install license
install -D -m 644 LICENSE.iwlwifi-5000-ucode $startdir/pkg/usr/share/licenses/$pkgname/LICENSE || return 1
Last edited by tavianator (2008-09-10 23:10:35)

Similar Messages

  • [solved] Intel 5300 slow network transfer speed

    Heya,
    I'm having trouble with my WiFi card Intel 5300 AGN and i hope you can help me.
    It's the transfer speed in linux that bugs me. While I get 9 MB/s in Windows I can't for the life of me get more than 2.5 MB/s transfer rate in linux. And this is only if I use NFS4 and turn off the wifi power saving feature. Samba/CIFS gives me transfer speeds of no more than 0.4 MB/s.
    The problem has to be somewhere in my linux software/configuration. But where?
    I don't have much experience with WiFi configuration in Linux so mine should be pretty vanilla. No manual change of frequencies, channels and the likes. I simply use netcfg to connect and sometimes iwconfig to toggle the power saving feature.
    Here's what iwconfig shows me right now while copying a big file:
    wlan0 IEEE 802.11abgn ESSID:"bett"
    Mode:Managed Frequency:2.412 GHz Access Point: 00:14:D1:C7:43:C4
    Bit Rate=243 Mb/s Tx-Power=15 dBm
    Retry long limit:7 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:off
    Link Quality=61/70 Signal level=-49 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:11922 Invalid misc:2 Missed beacon:0
    As you can see, power management is disabled. The link quality is very good and the bit rate is at 243 Mbps (which should give me about 15 MBps right?). Yet the transfer rate is only 2 MBps, sometimes dropping as low as 0.7 MBps, sometimes spiking to 4.5 MBps for a second or two.
    What can I do to improve my network speed?
    Any help is greatly appreciated.
    Regards,
    demian
    Last edited by demian (2011-04-09 04:00:49)

    Thanks for the reply zvxy.
    I'm running the most current from [core], version 2.6.37.5-1.
    Disabling the N mode improved transfer rates for CIFS/SMB shares. They are the same as with NFS now which is around 2.5 MB/s. Transfer speed for NFS stayed the same.
    I'll try the kernel from [testing] and report back later.
    // I've tested 2.6.38.2-1 a little bit now and as long as i don't disable wireless N i get transfer rates of up to 12 MB/s with NFS4. That's more than enough for me and i hope it stays that way. The downside is that transfer rate for CIFS is only 1 MB/s.
    If i disable wireless n mode NFS transfer rates drop to ~2.8 MB/s while CIFS transfer rates go up to ~2.4 MB/s.
    Guess I'll just have to stick with NFS (not that i don't mind but it's already thrown me some "stale" error messages with the new kernel ... i can't seem to catch a break ).
    I'll consider this issue solved. Thanks!
    Last edited by demian (2011-04-09 04:00:30)

  • X200s w/ Intel 5300 - New driver leaves me wireless-l​ess.

    Hi All,
    I'm hoping this forum can be more helpful than the support line...
    The pre-installed wifi driver on my x200s was giving me problems from the time it arrived.  After a day of wifi usage, Windows would slow to a crawl.  After some digging, I verified that the wifi driver was causing DPC latency issues.
    I upgraded the wifi driver to the Lenovo v13 module and all ability to use the wifi card stopped.  I tried using the ThinkVantage tools to upgrade, I tried complete uninstall, re-installs using the downloaded driver from the Lenovo site.  Nothing worked.  I can see the device in device manager without error, however, fn+f5 doesn't show any wireless cards but the network center CAN see the wireless device and shows full green bars.
    I could not downgrade my driver since I couldn't find it on the Lenovo site.
    I did install the Intel generic driver for the 5300 and that was able to have me connected, but once again, I was left with one day of usage then a reboot.  Failing to reboot eventually leads to a BSOD.
    I've called Lenovo support and the fellow there says, "The only reason their driver wouldn't work is if the hardware was broken."  Which I find a little hard to stomach since it does 'work' using a different driver.  He's asked me to reinstall my whole OS which seems unreasonable.  He then asked me to ship my laptop to them to replace the card... again, seems like a "last effort" scenario.  We compromised on having me bring it to a service center.
    So, before I go to the hassle of replacing one wifi card with another; Has is anyone else having similar problems?  Does anyone else think it's a bit daft that a software driver issue must be fixed by installing new hardware?  It seems to me that the problem is in convincing Windows that the card is powered on...  I doubt a hardware swap will change anything.
    Your thoughts?  Suggestions?
    Details...
    7465-CTO (x200s, 1.86GHz, 4GB, Intel 5300)
    Vista Business 64-bit
    wifi driver v13.0.0.107 (complete failure)

    Take a look at this wiki category: http://wiki.archlinux.org/index.php/Cat … English%29. I suggest the following from it: http://wiki.archlinux.org/index.php/Makepkg, http://wiki.archlinux.org/index.php/ABS … ild_System, http://wiki.archlinux.org/index.php/Arc … _Standards

  • Lenovo ThinkPad X200S "Intel(R) WiFi Link 5300 AGN" Not Working well .

    Hello everybody
    I am having a Very Annoying Problem with My Laptop Wireless LAN
    Intel Wireless LAN (11abgn, abg, BG), “Intel(R) WiFi Link 5300 AGN”
    The Problem is, it work fine one time and next 10 times it
    is not working, when it stop working it appear like there is no Wireless card at all, nothing in
    Device manager, not even with yellow ? mark …  ,nothing there at all , if you asked me what I do to make it work again , I will
    say “NOTHING” I only Keep restarting my Laptop forever till it work again by itself,  here is some information about my system  hop it will help :
    Notebook: Lenovo ThinkPad X200S, see this:
    Also I am installing the latest Driver from Lenovo see the Pic:
    As I already said, Sometime Everything Work fine, and next
    day it’s not working, I need to spend 1 hour restarting my Laptop, and it’s happing
    every day
    Please help me, please
    Thank you in Advance

    hey Alphapoint,
    try this, uninstall the Wifi LAN drivers. let Windows install its generic drivers.
    test your connection with the generic drivers. See if that works, then install the drivers from our support site but before you install it, go to MSCONFIG and set your unit to Diagnostic mode first before installing.
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • T60 WLAN COMPLETELY GONE after installing latest Update Intel Wireless WiFi Link for Windows XP

    I just reinstalled a T60 from scratch TWICE  to the point of updating  - Intel Wireless Wifi Link for Windows XP -
    Just after that very latest Update (3.1.1.1 or so?)  there is no WLAN possible and I had to find out, that  a system restore is impossible either! (Simply does not work and asks me to get another point and try again)
    I have a full backup done by acronis 2010 so that does not bother me so very much.
    The point is that I like to WARN everybody to install that Update to their T60  e.g. 2008YWJ !!!
    (contains 3945AGB WLAN Module!)
    After Updating U HAVE NO CHANCE TO REPAIR IT! U get always the problem signature 
    szAppName: AcSvc.exe  szAppVer: 5.6.1.33  szModName: PfMgrApi.dll
    szModVer : 13.0.0.2  offset: 000d4912
    and the System wants to report that stuff to MicroSoft...again and again...every time u
    start AccessConnections.
    U can DEinstall AccessConnections and Intel Wireless Wifi Link for XP completely, reboot
     and REinstall it....just 2 get the same messages and NO WLAN anymore.
    I could not get out of this Driver Installation Hell until I did a complete Recovery Install and
     I got back to Hell when System Update REinstalled Intel Wireless WiFi Link for XP
    automagically...;-(((
    And again NO CHANCE to roll back, No chance to get rid of that annoying bug. This time I have an ACRONIS-Image so I can spare some time....
    Somebody shoud really CHECK this, because it should not be possible to break down an completely NICE RUNNING Thinkpad THIS WAY just by updating it! As it took me abaout 12 Hours of Administration by now I
    really would apreciate to help whomever to find out what the hell is responsible 4 this !!!
    Why is XP System Restore not working on an T60 to roll back to Point b4 installation of this Update???
    (I could  not use that Thinkvantage-System Recovery because it did not even get all its updates by the 
    time the system went in limbo during install! What i defintely can say is that it breaks at exactely
    same point when Intel Wifi Updates is installed...
    I do my Acronis Restore now and try 2 avoid this Update....;-(
    if anybody KNOWS how to get that system 2 an earlier point of an install orgy i whould be thankful to get that information...
    I am keeping alive 12 Thinkpads here R40 R50 T42 T43 T60 T61p T400 T500 and  NEVER
    experienced problems like this in many  years!
    cheers
        GAL9000

    gal9000, welcome to the forum,
    have you tried running windows system restore from safe mode? It usually works then because some anti-virus softwares will prevent it from running successfully from "normal" windows.
    Hope this helps.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • I buy a new compaq presario cq57 408tu but its bluetooth and wifi not working even installing driver

    i buy a new compaq presario cq57 408tu laptop , but its bluetooth and wifi not working even installing all driver

    Hey there. You didnt state what operating system you are using but I was able to find two articles that should help resolve your issue. 
    Troubleshooting Your Wireless Network and Internet Connection (Windows 7)
    Fixing Bluetooth Issues
    These articles will go through all the basic troubleshooting steps. Let me know if this helps resolve the issue at all.
    Thanks!
    Sean
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Hi folks, you might know how to fix this: my wifi shows (no hardware installed) then I went to system preferences and deleted the wifi connection, I went also to system information and I can not see wifi listed on Network, how can I create a new wifi ?

    Hi folks, you might know how to fix this: my wifi shows (no hardware installed) then I went to system preferences and deleted the wifi connection, I went also to system information and I can not see wifi listed on Network, how can I create a new wifi or simply solve this, I have tryied shotdown pressing keys like P and R, option, etc. Please help me .

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Progress at 74% stuck installing Intel Wireless WiFi Link System Update

    Using System Update, I am Installing package Intel Wireless WiFi Link for Windows XP.
    However it hangs/stuck at Overall Progress: 74%
    This is not my first attempt over many days.
    After waiting 10 minutes or so, I press cancel...
    Are you sure you want to cancel the installation of updates? <Yes> (of course).
    System Update window does not change, and remains displaying the Installation package progress...
    Pressing [X] or ALT+F4 or Taskbar> Close does not end. Killing msiexec..exe does terminate the process(es).
    (Terminating installation packages can be detrimental to PC and my health though).
    It's been a while now, but appears still I best use  http://www-307.ibm.com/pc/support/site.wss/MIGR-70​443.html instead of System Update. Too bad.
    Someone else getting the same situation?
    Rick
    W500 4058-CTO WinXP

    gal9000, welcome to the forum,
    have you tried running windows system restore from safe mode? It usually works then because some anti-virus softwares will prevent it from running successfully from "normal" windows.
    Hope this helps.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • HO G62x Compatible Wifi Cards? Intel 5300?

    Hi,
    I'm looking to upgrade my wifi card since the one I got when I purchased my G62x doesn't give me the speed I need. I was looking and seems the Intel 5300 is a pretty good option and relativetly cheap on eBay, etc. 
    I noticed there's 3 connectors for antennas and the current one I have only has 2, it that a problem or incompatibility?
    Thanks, 
    PS: I'm looking at some card that fully supoprts Wireless N, both 2.4 and 5Ghz and the highest data transfer rate, minimum 150mb/s.
    Ray

    rayvara wrote:
    Hi,
    I'm looking to upgrade my wifi card since the one I got when I purchased my G62x doesn't give me the speed I need. I was looking and seems the Intel 5300 is a pretty good option and relativetly cheap on eBay, etc. 
    I noticed there's 3 connectors for antennas and the current one I have only has 2, it that a problem or incompatibility?
    Thanks, 
    PS: I'm looking at some card that fully supoprts Wireless N, both 2.4 and 5Ghz and the highest data transfer rate, minimum 150mb/s.
    Ray
    Hi,
    It's not as simple as it looks. Tell us what G62 model it is please and we can provide a list of compatible chips. One G62 (Intel Core i3/i5/i7) series has an Intel 5100agn listed as compatible. There also has to be the right form factor such as Half Mini PCIe, or Mini PCIe card.
    Dv6-7000 /Full HD/Core i5-3360M/GF 650M/Corsair 8GB/Intel 7260AC/Samsung Pro 256GB
    Testing - HP 15-p000
    HP Touchpad provided by HP
    Currently on Debian Wheeze
    *Please, help other users with the same issue by marking your solved topics as "Accept as Solution"*

  • Intel 5150 WiFi/WiMax Adapter doesnt work with 7?

    I've tried everything. I've spent hours on Intel's site, and let me just say that was an absoulte joke. You have to search deep into their search thing to find the windows 7 driver for it. Then it doesn't work.
    I've been to Dell's website (I'm running a Dell Studio XPS 16) and I can download it, but then I get an error saying I cannot downgrade versions.
    The computer recognizes the WiMax portion, but not as WiMax. It just says there is an error with "The WiMax adapter" but it doesn't actually know what it is. Same run around with the drivers in this case as well. The WiFi light on the front of the computer does not come on. My bluetooth one does, but not the WiFi. I've tried switching in on and off with no luck as well.
    So far Intel and Microsoft, I'm not impressed. Looks like my desktop will be staying XP and it's a good thing I added this as a second OS to my laptop because it sure won't last long with me hunched under the desk like this to get internet. Can anyone help me out?

    Hi, Thanks for the reply Nano Warp. 
    Believe me, I have tried absolutely EVERYTHING to get my wifi card working. 
    Thank you for assuming that I didn't take the '10 seconds' to 'do my research and preparation' before installing 7. I have spent literally MONTHS trying to figure out what is wrong with this. Because you jumped to such a quick conclusion on a couple short posts from me, I'll explain it all and maybe, just maybe I can get it resolved.
    July 09: Ordered my new oh-so-special laptop for college. I got it and aside from the occasional glitch, and my dislike toward vista (for reasons I won't go into now) it did what I needed except for the WiFi which has some SERIOUS issues. I spend hours on the phone and with Dell's live support trying to resolve it with no luck. Decided I would just suck it up, and hope to god I didn't lose/need internet when working on some of my assignments.
    October 09: Got a hold of my very own copy of 7 and installed it in another partition on my HDD. It worked 100000X better than vista, except for the WiFi card, which it did not recognize. At all. I DID search Intel's website and downloaded, uninstalled, and reinstalled anything and everything I thought might just give me a shot at having WiFi in 7...currently the only reason I was still mainly using Vista was due to the lack of WiFi.
    November 09: After WEEKS of searching for why I had no WiFi I posted this. I ordered my Intel 5300 card within the hour. Took several months and after placing three more orders with different companies I did get it ONE.
    December 09: Windows Vista takes a complete and utter DUMP on me. I lost everything. School work, photos, emails. EVERYTHING. Thankfully, I had a trusty desktop running XP that I had *most* of my data backed up on.
    January 2010: It's now winter break and I am between semesters. I REALLY need my laptop for internet use in my psych class for the second semester, as everything is done through the computer/internet. Tests, homework, assignment, etc. The Intel 5300 card did NOT work. At ALL. Went through the same process with the 5300 card. Even tried the second card that showed up at my door. Must have been one of the other two that I never received. Still nothing. Then again with the 5150 card. nothing. nada. squat. 
    It is now nearing the end of March 2010...FIVE MONTHS after installing 7 and dealing with this Intel/7 driver issue with no luck. I've tried everything from Vista drivers, 7 drivers, contacting Dell, contacting Intel, posting on message boards, forums and everything short of dropping an ___LOAD of money into this computer to get something as simple as WiFi to work. Nothing. 
    Currently, I am hassling and jumping between computers at home/school/library to stay on top of my psych class, and my less than a year old, $2,000 laptop is sitting in the corner collecting dust. So if you would like to say I'm dumping on 7, please let me know, and if you still feel I didn't take the '10 seconds total' to 'get there and find' what I was looking for, then by all means, let me know. At least this time you won't ASSUME, and make an ____ out of U and ME. Get it. Spells assume. ha-ha. funny funny.
    If there was a "Vote as UNHELPFUL" button for your post. I WOULD HAVE PRESSED IT.
    Thanks for your help,
    Ryan (ryans-canyon)

  • Connecting an iPhone 4 to Intel My WiFi Technology

    I have a new Dell computer that has Intel's 'My WiFi Technology' installed. This is supposed to allow  wireless devices to connect  to the internet via the laptop. To add a device - such as my iPhone  - the program has three options: (1) WiFi Protected Setup PIN configuration, (2) WiFi Protected Setup push button configuration, or (3) manual configuration.
    My question is two-fold: does my iPhone 4 with iOS 5.1 support either of the first two options, and if so, how.
    If not, does anybody have an easy way to get the INCREDIBLY long and convoluted password phrase required by My WiFi Technology  into the  iPhone for a manual configuration.

    Go to the Intel My Wifi Utility on your laptop
    Click Profiles
    Click New
    Enter a name for the profile (mydell, whatever..)
    Enter a new network name for the SSID (again, something like mydell, mylaptop..)
    Click the Security tab
    Ensure security type is: WPA...
    Select the long Wireless Security Password string and press backspace to delete.
    Enter a password (8 characters is the minimum I believe,.... such as mydellpassword1, or something)
    Click OK
    Click Close
    On your iPhone, go to Settings>General>Network
    Select Other and you should see that your mydell is offered as a connection.
    Select it and enter the password you created  in step 9 (such as mydellpassword1)

  • Intel 5300 and barebone 1646 gt640

    Does anybody have any idea why this wireless card doesn't find internet more than 10 ft away from the router? Even when its plugged in, there is literally zero range. It even has the latest drivers installed. Any ideas on what the best wireless card would be for this laptop? This one, is obviously not it. My buddy made an identical build at the exact same time and his intel 5300 also struggles to pick up any wireless signal. Ideas/suggestions and advice are welcome. Thank you!

     I don't know much about those things but my sisters laptop has an Intel Wireless WiFi Link 4965AGN & Intel ProSet drivers in it and it works fine from over 15 (at least 45 ft) meters and several walls between it and my router.
     Not sure if it would work in your laptop but it sure works great in hers (it's a Dell)

  • T510 Intel My WiFi

    I activated the Intel My WiFi technology on my T510 but the system will not let me enable it. When I click on enable in the My WiFi application it never turns on. I have done everything in the KB article below.
    http://forum.lenovo.com/t5/T400-T500-and-newer-T-series/T510-T410-Intel-quot-My-WiFi-quot-not-workin...
    Solved!
    Go to Solution.

    Which wireless adapter do you have?
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • Satellite P10: How to enable Intel 2200BG WiFi card

    Hi
    I have a Satellite psp10e which I have recently installed an Intel 2200BG WiFi card. After having problems getting it to switch on I have put tape on pin 13 on the card to switch the radio on.
    I have installed all the latest drivers/ BIOS updates and spending hours searching the internet I am still yet to find a cure to get the hardware switch/fn+f8 and the WiFi led to work.
    Is there something that anybody has figured out to make the hardware switch/led work? There must be a better cure than a piece of tape!!! It is it the BIOS that has anything to do with the hardware switch?

    You cannot get it work with the switch because the Toshiba wireless cards have another pin to power off. And noone knows that pin. You could get one original toshiba from somewere and put it in and check out which pin is connected to the power switch.
    Then you could change the pins on the new 2200b/g card. As the pins are very small and close together - it is nearly impossible to isolate them... But make your try ;)

  • New ssd install with fresh windows 7 os

    Hi ,
    I have recently inquired about using the oh recovery USB for a new ssd in my hp envy 15t, but I now know the recovery discs cannot be used as the ssd is to small.
    So my question is can I borrow a friends windows 7 cd and install that in my ssd and use my serial code? If so what and how should I prepare to reload all the drivers that are needed ?
    Thank you once again I really appreciate the help!
    This question was solved.
    View Solution.

    You're very welcome.
    That shouldn't be a problem then.  All the W7 x64 drivers are at the link below...
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4063&lc=en&cc=us&dlc=en&sw_lang=&product=6521...
    Now, if your model comes with the Intel and nVidia graphics, then when you go to install the graphics drivers, you have to install the Intel graphics driver first, and reboot.  Then you can install the nvidia graphics driver.
    Recommended order of install for the important drivers...
    1. Intel chipset installation utility.  Install and reboot.
    2. Intel and nvidia graphics drivers. Install Intel first, reboot, install nvidia and reboot.
    3. Audio. Install and reboot.
    4. Ethernet. Install and reboot.
    Then you can install any of the others you need.
    If you need help finding any drivers, please post back and I will be happy to assist you further.
    You may not know what model wireless card your notebook has and now that you don't have a windows installation to check the model wireless card you have in the device manager, after you install W7, please do the following...
    Go to the device manager, find the Other Devices category, and click on the Network Controller needing drivers.
    Then click on the Details tab at the top of the network controller window.
    Now you see a Property drop down list and it is defaulted to Device Description.
    Drop down on that and select the second item on the list (Hardware ID's).
    Post the top string of characters that begin with PCI\VEN.

Maybe you are looking for

  • Help with Photoshop Elements 8 - how to begin?

    Hello there, After calling Adobe for help, I was told since the software I have is outdated I'd be charged to even ask a question and was directed to the forum... So, I installed Photoshop Elements 8 on my new computer. When I open it, the welcome sc

  • URGENT - Screen Capture Video Quality

    Hi, I need to create a movie for a client that shows the computer system that was developed for them.  The system is a web application and is accessed using Internet Explorer.  I need to be able to put the movie onto a dvd for viewing at various clie

  • ITunes on 64 bit doesn't start, recognised as 32 bit program

    Hi, I use windwows 7 Professional 64 bit, when I run itunes installer everything goes fine (except that it installs in x86 folder!) but when I try to run itunes it just doesn't start, nothing shows up and in task manager i see "itunes.exe*32" which m

  • Retention for STAD records

    Hi, This is related to BI 7.0 on AIX and Oracle. The records are getting deleted automatically from STAD. I have learned that the retention period for STAD is based on the setting. I am not able to find the setting. Is it done in ST03 or using a prof

  • How do we transfer photos from our iPhone to our larger 32g iPad mini while travelling?

    How do we transfer photos from our iPhone to our larger capacity iPad while travelling ? ANY INFO please,