Some pointers for Netgear N300 - it works with AE

I bought two new Airport Express Stations yesterday and with trepidation I tried to hook up to my Netgear N300 Wireless Router. Using the airport Utility, it allowed me to add both to the existing network. No problem whatsoever. Just thought I'd post up in case someone else is wondering if it works.

If you want to use the AirPort Express, you will need to connect it to your Netgear router using an Ethernet cable, or use a pair of Ethernet power line adapters to send the signal over the AC power lines in your home...if you cannot run the cable.
Otherwise, if you want to extend using wireless only, your best bet by far would be to see what Netgear offers in this regard. You know the devices will be compaible using the same manufacturer.
It appears that Apple's "extend" feature is a proprietary setting with Apple "n" devices. As far as we know, this feature is not compatible with devices from other manufacturers.

Similar Messages

  • Requesting some changes for xen PKGBUILD to work with --enable-ovmf

    For background about this issue, you may want to read these two E-Mails to edk2 Mailing List:
    http://sourceforge.net/p/edk2/mailman/e … sg32776907
    http://sourceforge.net/p/edk2/mailman/e … sg32793684
    Basically, it goes like this:
    - Xen can be compiled with the optional --enable-ovmf option, so it can make DomU VMs using UEFI Firmware. Instructions here:
    http://wiki.xen.org/wiki/OVMF
    This can be done in Arch Linux by adding in the ./configure line of PKGBUILD --enable-ovmf, adding an additional step where makepkg downloads Source Code from edk2 repository.
    - Currently, it fails to build that way with this error:
    http://lists.xen.org/archives/html/xen- … 02855.html
    This error is caused because the edk2 Source Code that xen pulls during build is fresh and doesn't include any patch to make it aware that Arch Linux has both Python 3 (python) and Python 2 (python2). By default, it tries to compile with Python 3, so it fails.
    - Assuming than the Python version issue was fixed (I did it in a non-elegant way, replacing /usr/bin/python with /usr/bin/python2), it will still fail with this error:
    https://bugs.archlinux.org/task/40277
    https://aur.archlinux.org/packages/ovmf-svn/ (Some of the latest comments)
    This error is caused by building with GCC 4.9, earlier versions seems unaffected.
    The AUR has also a very similar package (If not identical) that is based on edk2 Source Code, the same which xen downloads while building, ovmf-svn:
    https://aur.archlinux.org/packages/ovmf-svn/
    This one has a PKGBUILD which includes some lines that seem to point that it is aware of both the python version issue, and the GCC 4.9 build issue, by providing a patch:
    https://aur.archlinux.org/packages/ov/ovmf-svn/PKGBUILD
    Reelevant lines seems to be these ones:
        msg "Fix GenFw: ERROR 3000: Invalid, Unsupported section alignment"
        patch -Np1 -i "${srcdir}/edk2-basetools-add-gcc4.9-support.patch" || true
        patch -Np1 -i "${srcdir}/edk2-ovmfpkg-add-gcc4.9-support.patch" || true
        msg "Use python2 for UDK BaseTools"
        sed 's|python |python2 |g' -i "${EDK_TOOLS_PATH}/BinWrappers/PosixLike"/* || true
        sed 's|python |python2 |g' -i "${EDK_TOOLS_PATH}/Tests/GNUmakefile"
    I didn't found any info regarding if Xen can work with OVMF ready-to-use binaries, or either building ovmf-svn, which I didn't tested but I suppose should build properly. All instructions regarding using Xen with OVMF request that it is added as option during build time. This forces me to have to modify the edk2 Source Code that xen downloads.
    Basically, what I want to request is if xen PKGBUILD can be modified to include a statement that checks if --enable-ovmf is being used, then make the appropriate changes to the edk2 Source Code that gets downloaded while building Xen so it successfully builds. This could *POSSIBILY* be based on existing ovmf-svn PKGBUILD code.
    This change could also be applied to other xen-based packages that can also be builded with --enable-ovmf and presents the same issues.

    FINALLY managed to get this thing working:
    http://i.imgur.com/ZWTRcn0.png
    I tried to build xen with --with-system-ovmf= as suggested like ten times or so, with no success. While xen seemed to build fine, when I tried to create a UEFI DomU, it simply opens and inmediately closes, through if using SeaBIOS worked fine. On xen IRC there was another Arch Linux user claiming that he recently got Xen with OVMF working using that parameter and the bios.bin binary from the ovmf-bin package from AUR. Installing ovmf-bin then providing xen the full path (--with-system-ovmf=/usr/share/ovmf/bios.bin) didn't worked, neither building ovmf-svn myself then using ovmf_x64.bin (Or renaming it to OVMF.fd, ovmf.bin, etc). It always builded perfectly, yet it failed to make a UEFI DomU. Still, both Firmwares worked when using qemu from the official Arch Linux repository (Note that ovmf-bin bios.bin is 1 MiB in size while ovmf-svn ovmf_x64.bin is 2 MiB, not sure what accounts for the difference).
    So how I got it working? A bit complex:
    - While in my first post I mention that ovmf-svn had a patch for GCC 4.9, it seems than the patch was removed in the last two days. Without the patch, ovmf-svn still builded properly, so I expected than the GCC 4.9 fix got included in edk2 Source Repository. This was blocking me earlier, so decided to give --enable-ovmf another go.
    - Renamed python2 to python as a workaround to not have to touch the edk2 tree that xen downloads, which worked the last time.
    - Used makepkg with --enable-ovmf in the PKGBUILD ./configure line. I expected it to work due what I mentioned earlier, but it still fails with the GCC 4.9's GenFw: ERROR 3000.
    - As a last resort measure, I decided to try to merge into xen the source that ovmf-svn PKGBUILD modifies, as that one builds properly.
    - I replaced all the directories inside xen/src/xen-4.4.1/tools/firmware/ovmf-dir-remote/ with the ones from ovmf-svn/src/tianocore-edk2-svn_build/. Not all directories were replaced, seems than ovmf-svn just downloads the parts of the tree required for building the OVMF Firmware, not everything, which xen does.
    - Used makepkg again, which used the existing source to try to build again.
    - It builded, no python or GenFw error. Installed the new package, rebooted, tried to make the UEFI DomU and BAM! There it is, as you can see in the Screenshot.
    Why can some users get this running with just providing bios.bin from ovmf-bin while I have to do a walk around the globe is anyone guess...
    To not derail this request further, I can say the following:
    - Assuming than --with-system-ovmf= works consistently, which for me didn't, is currently possible to build Xen with OVMF, so making a more complex PKGBUILD to be able to use --enable-ovmf may not be needed.
    - --enable-ovmf is still useful because it may reduce a two-step process (Installing ovmf-bin or building ovmf-svn) into one, through I'm not sure if there are pros/cons for each approach besides than you will have latest OVMF version compared to the ready-to-use binary. It also makes xen package more compatible with the mainstream Xen instructions, as  --with-system-ovmf= is quite unknow.
    These decisions are for kantras to make.
    Last edited by zir_blazer (2014-09-06 06:54:02)

  • How do I install OS X Mountain Lion in a machine that came with OS X Yosemite already?? I need to do it in order for me to keep working with some of my softwares.

    How do I install OS X Mountain Lion in a machine that came with OS X Yosemite already?? I need to do it in order for me to keep working with some of my softwares with are very expensive and can't afford to buy new versions.

    Parallels
    VirtualBox
    VM Fusion

  • Looking for an app that works with Mac and iPhone that will set calendar reminders of birthdays in contacts.

    Looking for an app that works with Mac and iPhone that will set calendar reminders of birthdays in contacts.

    Hi ron1098,
    Try my application Dates to iCal. it runs on the Mac, but you can sync the calendar to your iOS device.
    See more about Dates to iCal here. It is £4 shareware with a 2 week demo.
    Best wishes
    John M
    As I sell software on my site and ask for donations, the Apple Support Communities Use Agreement requires that I state that I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Can the apple external disc drive that I just got for my air also work with my late 2007 macbook pro?  The internal disc drive broke after apple care expired, natch.

    Can the apple external disc drive that I just got for my air also work with my late 2007 macbook pro?  The internal disc drive broke after apple care expired, natch.

    No, sorry. it won't work with the 2007 MBP. You can replace the optical drive yourself - just go shopping at OWC.
    Good luck,
    Clinton

  • Will a charger for a model 1280 work with my model A1278?

    Will a charger for a model 1280 work with my model A1278? Will any L tip 60w work?

    Many thanks for your help.

  • I have Wacom Intuos 4, and for some reason pen pressure isn't working with PSE 10

    I can still use wacom tablet pen to draw in Photoshop Elements 10, but I am frustrated because I could not get lines thinner and thicker with more pressure I apply with the pen like I could with Photoshop Elements 7 - and I had already checked "size"  in the tablet setting in PSE 10.  I also made sure I set up my Wacom Tablet Properties to apply to Photoshop Elements 10, and I still can't vary the lines like I want.   Any suggestions?  (also, could it be because I unwittingly bought and installed  34 bits PSE 10 in my 64-bit computer with Window 7  - is that what is preventing PSE 10 from making lines thin and thick with pen pressure?) 
    Thanks for your help.  

    photodrawken, I went to Wacom website and looked up the latest driver.  I see Driver 4.60 for Windows -- will that work on my 64 Windows 7?   (The information didn't mention which Windows, but did warned not to install it on Window Vista 64.) 

  • HP B500 Wireless Bluethooth Adapter for HP Printer Not Working With Windows 8.1

    I have been using the HP BT500 bluetooth Wireless adapter to print wirelessly to my HP Officejet Pro 8500 printer.  I have been using Windows Vista, but recently upgraded to Windows 8.1.  I learned after the upgrade that the HP B500 wireless bluetooth adapter is not compatable with Windows 8.1.  I have attempted to find a driver upgrade for the B500, but there does not appear to be one available.  I have also searched the HP site and other sites in an attempt to locate an alter wireless blotth adapter to replace the B500, but have again been unable to locate one. 
    Is there a wireless bluetooth apter that will allow me to print wirelessly to my HP Office Pro 8500 from my laptop?

    Hi @Raider83,
    Welcome to the HP Forums!
    I noticed that your HP B500 wireless bluetooth adapter for your HP Officejet 8500 is not working with Windows 8.1. I am sorry to hear this but happy to look into this for you!
    I am not sure if you are using a 32-bit or 64-bit Operating System. But sometimes with Windows 8.1 you can use compatibility mode to install an older version of the driver. Which might help the situation. Here is a link to some other Windows drivers, HP bt500 Bluetooth USB 2.0 Wireless Adapter Drivers.
    Once you got a driver downloaded, follow this guide, Make older programs compatible with this version of Windows, on how to install it using compatibility mode.  It is not guaranteed to work, but it is worth a try!
    If you still need me to look for other bluetooth adapters, please respond with your printer's Product/Model Number. To find your printer's Product/Model Number follow instructions in this link. Finding Your HP Product Model Number. As there are multiple HP Officejet 8500 printers.
    Thank you for posting, and have a nice day!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Oracle sync for Macintosh doesn't work with Leopard.

    I have tried to install the oracle sync client for Mac OS (v 9.x) and it will just not install on any Leopard OS Macs. The console message repeats the error:
    5/27/08 11:07:12 AM [0x0-0x12012].Oracle Calendar Sync installer.1[121] 2008-05-27 11:07:12.373 install[126:190b] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    and
    5/27/08 11:07:15 AM com.apple.launchd[81] ([0x0-0x12012].Oracle Calendar Sync installer.1[121]) Stray process with PGID equal to this dead job: PID 127 PPID 126 osascript
    The installer does work with Tiger. I have found that it complains about some Java errors when its unpacking itself but I have the most recent version of Java available for this OS.
    Any thoughts?

    I was able to get the sync to work when I started on a machine running Tiger (OS 10.4) and then upgraded to Leopard, but NOT on any machines that start at Leopard.
    I've just about abandoned Oracle Calendar given their (lack of) product support, and likewise for PalmOS devices.
    Bring on iPhone.

  • Looking for Fireworks users that work with Flash in Manhattan!

    If you live in Manhattan and work with Fireworks and Flash
    and do not mind making some extra cash, then check this out:
    http://weblogs.macromedia.com/amusselman/archives/2006/07/nyc_usability_s.cfm
    Good luck!

    We are starting a Computer Management course in our school district where the students will basically be doing a tier 1 helpdesk. Does anyone have this type of thing going on at your school? Im looking for ideas as to how to handle these kids' user rights as well as what they do. Im worried things can get messy by giving the students too many permissions. 
    This topic first appeared in the Spiceworks Community

  • Firefox for aol dose not work with aol emails.Why

    Since the email inter face changed I can no longer send email attachments, even items embeded in the email body come out blank at the other end. I use Firefox configured for AOL but that dose not make any difference. I had no problems untill this change is there anyway to reset it. AOL say the problem must be with your software. They sujested that I try using IE 9, I would rather stay with Firefox as I find it is a much better browser.

    ''ralphieboy [[#question-1022015|said]]''
    <blockquote>
    for some reason firefox does not work with the new Email window on yahoo.com All the other browsers work with yahoo mail just fine!! Are you working on a fix???
    </blockquote>
    I have had the problem of Yahoo! mail freezing (my computer freezing) with Firefox right after I boot up my computer and sign into my Yahoo! mail account. I have to either shut down my computer or use Control + Alt and press Delete to eventually bring up the Task Manager option. Then, once the choice for Task Manager comes up, I can click on cancel and Yahoo! mail and my computer have "un-frozen." I have followed all the recommendations for updating Firefox, clearing caches, checking if an Add-On is the problem, etc., as well as all the recommendations on Yahoo! help pages. Nothing has improved the situation to date. Firefox info says the problem is with Yahoo! Yahoo! says it is a browser problem. I just want the problem to be fixed.

  • How will an external Hard drive designed for the macbook Pro work with my White Macbook?  My  white macbook has a Firewire 400 and the G-Tech HD has a 800 to 400 compatible cable for the firewire.

    I am asking this because I want the G-Tech Hard drive  says that it is designed for the macbook pro.  Yet, I want to back up faster with by using my firewire 400 which is not an option on the one designed for the white macbook that does not have a firewire (only a USB port.)  The G-Tech Hard drive comes with the 800 to 400 compatible cable and has 5400 RPM with 750 GB.  Also, I've heard that laptops with low battery (mine all the time)  won't have the power for a bus powered Hard drive (as in no ac plug in adaptor.)  Can I just plug in my laptop?  Any one know the answers from experience with this hard drive?

    As far as I know, if a harddrive works with a Macpro, it should work with the Macbook: if your Macbook is low on power, plug in the AC adapter
    If your Macbook has a firewire port, then it should be fine. BUt i would do somemore research first.

  • Jabber Client for Windows video not working with ManyCam

    Hi everyone.  We've been kicking around the Cisco Jabber client and I've noticed a small issue when it comes to video.  I use a software package called ManyCam (http://www.manycam.com/) which creates a web cam that allows me to put effects on my actual web cam's video feeds.  Primarily I use it when I'm in a remote office and have a video stream back to the main office I can put effects on the screen like "On a conference call" and such so people won't get upset when they approach me and I fail to respond to them.  I use it with other applications just fine but with Cisco Jabber (v9.2.0 Build 496) when I attempt to set it the ManyCam camera as the video source in the video configuration of Cisco Jabber the preview doesn't appear.  As well when I connect to another Cisco Jabber user they do not see my video stream.
    Anyone else notice this?  Or does anyone else have a link to some similar software that will give me equivalent functionality to ManyCam that works with Cisco Jabber?
    Thanks!

    Only if they are on a Mac using iChat(gmail account).
    Have a look at http://mail.google.com/videochat

  • When will Office 2013 Offline File Cache for IE add in work with Enhanced mode?

    The Office 2013 Document Cache Uploader IE Plugin is incompatible with IE 11 running in enhanced mode.
    I read that enhanced security mode was enabled by default in Win8 so Microsoft can collect information and advise third party plug-in developers they need to update their stuff to work with it.  Then in November, Microsoft started shipping Win8 with enhanced
    security disabled.  But Win8.1 now ships with enhanced mode enabled...   But... Microsoft's own plug-in with the latest versions don't work with it.  The solution / workaround is to disable enhanced protection mode.  (I don't see this
    as a solution for me, my last virus infection because of insecure IE cost me over $400 to fix.)  When are you going to fix your own stuff?  Or will you retire it like a bunch of other goodies ripped out of Win8.  And Server 2012.  And Exchange
    2013........Lastpass.com has their plug-in working with enhanced mode... Why can't you fix it?  Should not be that tough to fix and to include it in a Office update....

    Hope there will be a fix soon....This should not be marked as 'answer'.  You simply state the fact that it is broken as I did and to disable IE Enhanced (warning/warning) and that is not an answer or a workaround..
    Somebody please at least look at it and come up a quick and cheap, down and dirty way to add this to the trusted zones so it will work?  then you can mark as answer.  Everyone there at Microsoft sitting around waiting for someone else
    or other department to do it.  Lastpass make it work, Logmein make it work, but Microsoft resting on their laurels .......My gosh, I paid $439 for a copy of Office Pro 2013 Professional to upgrade my Office 2010 and it does not work as well as 2010 did? 
    In this respect, the product is a Lemmon.  I already moved to the cloud for Exchange like they wanted me to, by crippling connection with this to my church's Exchange 2003 server.
    It seems the master plan behind this release is to disable function with Server2003 to drive more Exchange server or Cloud hosting sales.  Please make sure the product does what it did before, before you take my money and turn off the lights on important
    feature oversites.
    Any way to hack into Office 2010 and load its cache uploader to run in enhanced zone, or put a link or dll in the trusted zone to make this feature work again?  Can someone at Microsoft at least get it on the project board or bump it up a hundred spaces
    on priority list?  Maybe offer a bonus to the programmer that fixes it.  A weekend on the hiking trail or kayak excursion, or rock-climbing pass..  Microsoft guys like that outdoors kinds of stuff and will work like crazy to get it.

  • Anyone know a calendar creator program / software for iMac/MacBook that works with Maverick?

    Looking for a Calendar Creator type software that works with Maverick for iMac / MacBook. Please help.

    Quicken 2007
    Quicken 2015 information

Maybe you are looking for

  • Can't open image in External Editor.

    Hello. I'm using Piccure as external editor for LightRoom 5.2. When trying to open image, I get "Image file -psn_0_S784964 doesn't exist", when my original image has different name. Image name is accepted by Piccure as first command line argument. Lo

  • Audio channel problem

    This is my first problem with my phone. The right channel for all audio (ringers, music, alerts, alarms, etc) is extremely low or non-existent. I noticed lately I had missed some calls that I never heard the phone ring, I figured I just missed it, no

  • Execution time of a simple vi too long

    I'm working with LabVIEW 6.0.2 on a computer (AMD ~700MHz) under Windows 2000. The computer is connected to the instruments (eg Keithley 2400 Sourcemeter) via GPIB (NI PCI-GPIB Card). When trying to read the output of the K2400 with a very simple vi

  • Infotype Creation - FM   HR_INFOTYPE_OPERATION

    How do everyone, I am using the FM  HR_INFOTYPE_OPERATION to create a recurring payment infotype. Everything is working fine. However, when the infotype is created it is created against the master cost centre. This is ok for some people but not all.

  • 11.2.0.3 Parallel delete on non-partitioned table

    Friends and mentors... I want to know more about parallel deleted and it's requirements...I have gone through Oracle manuals and articles but not able to understand exactly about parallel delete (dml) feature... Task: Trying to delete large data (20