[SOLVED] Using Apple's UEFI boot menu with Arch

Hello,
      I've successfully installed arch on my mid-2012 (5,1) 11" Macbook Air, and now I'm trying to get an entry in apple's boot menu (the one that shows when you hold 'option' when starting the computer).  From the author of rEFInd's install instructions (http://www.rodsbooks.com/refind/installing.html#osx) it sounds like I can just add some files to `/dev/sda1` (a vfat directory that contains the stuff needed to boot macos), and then run apple's `bless` command and we're good to go.  Unfortunately I've tried this a bunch of different ways, to no avail.  I think some of my failure is simply because of a misunderstanding of UEFI, here are some questions I (partially) don't understand and my current understanding of them:
1. Do I even need a bootloader on a pure GPT/UEFI system?  It seems like the answer is no, and I can just use the UEFI firmware and the linux kernel to load Arch (per: https://wiki.archlinux.org/index.php/UE … ux_Kernel).  Note: I'd like to have as little software between the firmware and the os, for speed and simplicity.  However, I'd still like to dual boot, but it sounds like the firmware can handle showing me a menu as long as there are entries pointing to parts of each OS.
2. Will grub/rEFInd/syslinux do some of the work for me initially/on a kernel update?  I think the answer is yes, which would be motivation (esp when I need to update the kernel) to just use a multibootloader and have it handle arch and the firmware pass control to either that or MacOS
3. Will `efibootmgr` brick my mac?  https://wiki.archlinux.org/index.php/UE … FI_systems says it will, but I think the `grub-install` command uses `efibootmgr`, so should I not try grub on here (this package: https://www.archlinux.org/packages/core … fi-x86_64/ ).  Also some of the other packages (like rEFInd-efi) depend on efibootmgr, so does that mean any kind of an install from them (a command from the package, not the `pacman -S pkg` command) will also brick my system? (see rEFInd-efi dependencies: https://www.archlinux.org/packages/extr … efind-efi/ )
I've been searching a bunch of different things, output of the `bless` commands I've been running, and have found the following:
* https://bbs.archlinux.org/viewtopic.php?id=148647
* Using OSX to install rEFInd manually (moving the files around and using OSXs `bless` command) http://www.rodsbooks.com/refind/installing.html#osx , I used the rEFInd files from Archs repos: https://www.archlinux.org/packages/extr … efind-efi/ )
* The Wiki docs on rEFInd https://wiki.archlinux.org/index.php/UE … ing_rEFInd
To summarize, I'm trying to set up a dual boot between MacOS (installed) and Arch (also installed, there's just no way to boot it on my system yet) using Apple's built in menu that deals with the EFI partition on /dev/sda1 .  Thanks in advance for any help!
end
Last edited by enduser (2013-03-18 12:00:17)

enduser wrote:I've successfully installed arch on my mid-2012 (5,1) 11" Macbook Air, and now I'm trying to get an entry in apple's boot menu (the one that shows when you hold 'option' when starting the computer).  From the author of rEFInd's install instructions (http://www.rodsbooks.com/refind/installing.html#osx) it sounds like I can just add some files to `/dev/sda1` (a vfat directory that contains the stuff needed to boot macos), and then run apple's `bless` command and we're good to go.
Not quite. That makes a boot loader bootable, but it doesn't add an entry to Apple's boot manager menu. There's a blog post somewhere by Matthew Garrett that describes the steps necessary to add something to Apple's boot manager, but I couldn't find it in a quick Web search. Maybe you'll have better luck, or be able to track down the same information somewhere else. As I recall, it involves using a separate HFS+ volume, creating two or three dummy files, and using "bless" in OS X.
1. Do I even need a bootloader on a pure GPT/UEFI system?
Yes, you do need a boot loader. It's important to distinguish between a boot loader and a boot manager, though. The former is a program that loads a kernel, and perhaps associated data, into memory and transfers control to the kernel. A boot manager presents a user interface that enables you to select which OS (or which boot loader) to launch. A boot manager is not strictly necessary, and Apple's EFI implementation includes its own simple boot manager, which is what you've been unsuccessful in configuring.
Note: I'd like to have as little software between the firmware and the os, for speed and simplicity.  However, I'd still like to dual boot, but it sounds like the firmware can handle showing me a menu as long as there are entries pointing to parts of each OS.
Many people make do with the firmware's own boot manager, but this can be rather inflexible. I'm not even sure if Apple's boot manager can handle passing options to Linux kernels' EFI stub loaders. This ability is not absolutely required, but without it you must compile your options into your kernel at compile time, which greatly reduces flexibility since you can't modify the options on a per-boot basis -- say, to boot into single-user mode if this is required.
2. Will grub/rEFInd/syslinux do some of the work for me initially/on a kernel update?
The usual Arch Linux method of handling kernel updates is to overwrite an old kernel with a new one, so no boot loader/boot manager changes are required. If you want to keep numbered kernels around (as most other distributions do), GRUB provides scripts that can help automate changes, but they are required in the grub.cfg file. rEFInd can auto-detect boot loaders, and if you're using the EFI stub loader, that means that the kernel is its own boot loader, and with a proper configuration, rEFInd can detect new kernels without changing its configuration file.
SYSLINUX has some very early and very experimental EFI support. The one and only time I tried it (about a month ago), it wouldn't compile for me. (I don't know of a precompiled binary available on the Web -- the support is that new!) I don't recommend trying it unless somebody who's gotten it to work offers to help you personally.
3. Will `efibootmgr` brick my mac?  https://wiki.archlinux.org/index.php/UE … FI_systems says it will, but I think the `grub-install` command uses `efibootmgr`, so should I not try grub on here (this package: https://www.archlinux.org/packages/core … fi-x86_64/ ).
There were reports of efibootmgr damaging Mac firmware several months ago (I believe over a year ago). Since then I've seen claims that this problem has been fixed with recent kernels (3.0 and later, IIRC), but I've seen no substantiation one way or the other. Overall, I recommend caution....
Also some of the other packages (like rEFInd-efi) depend on efibootmgr, so does that mean any kind of an install from them (a command from the package, not the `pacman -S pkg` command) will also brick my system? (see rEFInd-efi dependencies: https://www.archlinux.org/packages/extr … efind-efi/ )
On a Mac, I recommend installing rEFInd (or any other EFI boot loader) from OS X rather than from Linux. (Note that I'm rEFInd's maintainer, so that's an official recommendation from the software's developer.) Offhand, I don't know if the Arch package for rEFInd runs efibootmgr automatically on boot or just has it as a dependency because efibootmgr is the usual way to register a boot loader on UEFI systems. If the latter, it should be safe to install the Arch package for rEFInd, copy its files, and then reboot to OS X to run bless on it. It would be just as easy, if not easier, to install it completely from OS X, though.

Similar Messages

  • I use Apple TV's screen saver with a file in my photo library.  If I install newest update - will that change anything with my using this favorite feature?  I have just under 4000 photos in that file.  What is the total # of photos it can utilize?

    I use Apple TV's screen saver with a file in my photo library.  I believe it is first generation or second Apple TV - not the newest one.
    If I install newest update - will that change anything with my using this, my favorite feature?  I have just under 4000 photos in that file. 
    And, what is the total # of photos it can utilize?  If I keep adding photos - is there a limit to the # it will utilize?

    Thank you Alan and  know you are right. I really can do all I need with my netbook and ereader and do not need the ipad. I think I just wanted something new and felt I may enjoy using it a lttle more than the netook. But it would be a waste just to buy one when I donlt acutally need it  And, donl't think it is worth the extra money for me the get the 4g wireless capability since I doubt I would really need it often.
    I may treat myself to the Ipad for the color, touchpad and fun to use but it is very expensive considering how little it will do for me no more than the things I want it for. It woudl be and expensive luxuray, I can do without. I actually  need t learn how to use more of the function avaiable first.  Maybe I should take up playing games and learning to take digital pictures so I can at least load them. If I could learn to do that and take a decent picture, I could start selling back all the "stuff" I have purchased on ebay. haha - I do have a nice doll collection, I would like to sell. I just do not have room for anything else. That was the primary purpose for the Kindle Ereader I bought and enjoy so much,
    But, I will hold onto the thought for a while and see how it goes and what other comments I get, If I think I cannot live without it, then I will have to rethink which one to buy, I coud get the 32 g if I did not have to pay for the 4g wireless. And, if I knew I could get help to teach me how to use and enjoy all the functions, I would give it more serious consideration. My granddaugther got one for Christmas and that was what got me interested in it. I love the size of the screen and it had good color and was fast. She even had an application where she could write her notes and it would convert into typed words. That was a neat feature, If you could print it?
    But thanks again for your comments and I will check later to see I get any other feedback.
    Sunny:)

  • [SOLVED] Removing archiso's UEFI boot failed using xorriso

    I'm trying to remove UEFI boot support of the latest archiso since I have to boot the install CD on my MacBook2,1 (which doesn't support UEFI, only supports 32-bit EFI).
    I follow this guide but this is the xorriso output:
        libburn : SORRY : Neither stdio-path nor its directory exist
        xorriso : FAILURE : Cannot aquire drive 'stdio:~/archiso.iso'
        xorriso : aborting : -abort_on 'FAILURE' encountered 'FAILURE'
    Can anyone help me with this?
    Last edited by mirakulous (2013-05-30 09:34:04)

    Hi,
    as upstream programmer of xorriso i would really appreciate
    to see this fixed in the wiki ... or yielding a bug report
    if xorriso is to blame.
    I tried the following with success on my quite outdated
    GNU/Linux system:
    $ wget http://mirror.de.leaseweb.net/archlinux … 1-dual.iso
    # mount -o loop /dvdbuffer/archlinux-2013.05.01-dual.iso /mnt/iso
    $ xorriso -as mkisofs -iso-level 3 \
        -full-iso9660-filenames\
        -volid "ARCH_201305" \
        -appid "Arch Linux CD" \
        -publisher "Arch Linux <https://www.archlinux.org>" \
        -preparer "prepared like a BAWSE" \
        -eltorito-boot isolinux/isolinux.bin \
        -eltorito-catalog isolinux/boot.cat \
        -no-emul-boot -boot-load-size 4 -boot-info-table \
        -isohybrid-mbr "/dvdbuffer/archlinux-2013.05.01-dual.iso" \
        -output "$HOME/archiso.iso" "/mnt/iso/"
    (I do not have SYSLINUX development installed, but the ISO image
    bears a suitable -isohybrid-mbr template at its start. So i use
    that one.)
    This yields
      GNU xorriso 1.3.0 : RockRidge filesystem manipulator, libburnia project.
      xorriso : UPDATE : 107 files added in 1 seconds
      xorriso : NOTE : Copying to System Area: 32768 bytes from file '/dvdbuffer/archlinux-2013.05.01-dual.iso'
      libisofs: NOTE : Aligned image size to cylinder size by 55 blocks
      Written to medium : 260608 sectors at LBA 0
      Writing to 'stdio:/home/thomas/archiso.iso' completed successfully.
    The original ISO reports on inquiry of its content
      $ xorriso -indev  /dvdbuffer/archlinux-2013.05.01-dual.iso -toc
      Boot record  : El Torito , ISOLINUX isohybrid MBR pointing to boot image
      Boot catalog : '/isolinux/boot.cat'
      Boot image   : '/isolinux/isolinux.bin' , boot_info_table=on
      Boot image   : '/EFI/archiso/efiboot.img' , platform_id=0xEF
    The repacked one reports no EFI boot image that is reachable
    via El Torito
      $ xorriso -indev /home/thomas/archiso.iso -toc
      Boot record  : El Torito , ISOLINUX isohybrid MBR pointing to boot image
      Boot catalog : '/isolinux/boot.cat'
      Boot image   : '/isolinux/isolinux.bin' , boot_info_table=on
    If this does not work for archlinux users, then please tell
    me the version of xorriso that fails, the necessary preparations,
    the program arguments used, and the messages of xorriso.
    Have a nice day
    Thomas

  • [SOLVED] Can't setup UEFI boot

    Hi, I'm in the process of installing a newly bought laptop (Sony Vaio SVS1311P9EB). I'm able to boot from the install media and to install the system but when it comes to setting up the boot I run into some issues.
    The HDD is formated with GPT with a EFI partition on /dev/sda3 (there is actually on on sda1 as well, but I think that one is for system recovery. It does lack the boot flag) and the arch system root on /dev/sda6, the partitions in between is used by Windows 7 (pre installed from factory). Works perfectly by the way...
    The BIOS is set to use UEFI, "Boot mode" = UEFI. However even though i run 'modprobe efivars' the kernel can't detect any EFI variables, in fact the directory /sys/firmware/efi doesn't even exist.
    This causes problems when I run (from the newbie install guide);
    grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=arch_grub --recheck
    and
    efibootmgr -c -g -d /dev/sda -p 3 -w -L "Arch Linux (GRUB)" -l '\EFI\arch_grub\grubx64.efi
    The error both times are;
    Fatal: Couldn't open either sysfs or procfs directories for accessing EFI variables
    If I reboot the computer the BIOS ignores arch (not surprising I guess) and just jumps straight to Windows.
    Any ideas how I can get around this problem?
    Last edited by nojan (2012-11-07 22:27:12)

    The module loads fine, but that directory does not get created. If I'm reading the wiki correctly that means that UEFI isn't being used, however that doesn't make any sense since the BIOS is setup to use UEFI
    Edit: Found this link; http://www.linuxquestions.org/questions … 175411129/. Seems that the guys at H2O BIOS has decided to hardcode the paths to UEFI system files. Renaming the windows file solved the problem, although it is hack alert on the highest level!
    Last edited by nojan (2012-11-07 20:20:24)

  • Can I use apple TV on home network with time capsule or Airport Xtreme without being connected to the internet?

    I'm wondering if I can use Apple TV to play movies and slide shows on my TV, play music over my sound system and print from my devices (Iphone 4S, iPad and MacBook pro 2011) by using an Airport Xtreme or Time Capsule (to back up the devices) if those devices are not connected to the internet. Can anyone advise pls? Reason for this is that I work on a moving ship and don't have an internet connection to speak of for much of the time (and if I do it's a wireless system that I need to pay by the minute and that is too slow to support the Apple TV), but would all the same like to create a wireless environment where my devices can interact with each other. I seem to get conficting info and a rep at the apple store in Honolulu told me that you cannot use Airport Xtreme or Time Capsule without an internet connection (it was busy, he may have misunderstood my question).
    Looking forward to your input.

    Don't try to home share it.. as that is dependent on using Apple ID.
    Just airplay to the ATV.. iTunes: Using AirPlay
    The movie should play exactly as your doing music.. but get rid of the whole home share if that is causing issues.. there is no mention of needing home share in the above..
    If you still have issues you might need to do it other ways.. like export the movie from itunes.. and play it using vlc which should allow you to stream it to the apple TV using airplay.
    That is a bit tricky and I have not used that setup but it should work.
    http://apple.stackexchange.com/questions/23412/can-i-stream-any-video-played-wit h-vlc-player-to-apple-tv
    If you have a hunt around you should find it fairly easy to do.. but straight airplay should work.. there is a very recent update to ATV which might help it with airplay.

  • How to get to boot menu with no cmos access on nx6110

    I am trying to install windows on a compaq nx6110 and need it to boot from cd and i don't have the password to do it through the cmos. I know other computers you normally can push F8 when it is starting to get to the boot menu but it does not seem to be working. Can someone please help and tell me what key i push to get to the boot menu and boot from cd,.
    THANKS

    Hi,
    Please try this to bypass password:
      http://www.wikihow.com/Break-a-BIOS-Password
    Good luck.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to get to boot menu with W530?

    If I switch on the W530, it boots to windows in about 5s.  I have tried hitting the F12 and think vangage buttons as fast and as frequently as I can on switching on, but nothing seems to work.   I want to boot of the drive in the ulta-bay, but dont know how.  With the old W520, it was very easy. 
    Has something radical changed?  E.g. was the 520 using Bios, and the 530 not using bios but using something else (I see UEFI mentioned, but have no idea how to us it).
    So the question is, on a W530, which may or may not be using UEFI (how do you tell?), how do I temporarily change the boot order?
    I also tried hitting F1 on boot, does nothing also.  This is a factory lenovo, with nothing installed, with no devices atttached.
    Thanks!

    Just went through my own W530 BIOS settings, with Win7 installed (as it was origially pre-installed by Lenovo when I bought it).
    Thinkpad Setup:
    (1) Security -password
    (a) Supervisor password - DISABLED
    (b) lock UEFI BIOS setting - DISABLED
    (2) Security - UEFI BIOS update option
    (a) flash BIOS updating by end-users - ENABLED
    (3) Startup
    (a) UEFI/legacy boot - BOTH, UEFI/legacy priority - LEGACY FIRST
    (b) option key display - ENABLED
    (c) boot device list F12 option - ENABLED
    (d) boot order lock - DISABLED
    These settings produce the "To interrupt normal startup, press Enter" message following the Thinkpad logo at boot time.
    According to Lenovo's instructions for problem-solving when attempting to apply BIOS updates, BIOS Initialization is suggested for some problems. To initialize the BIOS settings for Window 8:
    (1) turn on the computer to start Windows
    (2) hold down the Windows logo key and press C to open the Charm bar on the screen
    (3) Select Settings, then Power, from the menu
    (4) Select Reboot, to restart the computer 

  • Using Apple Bluetooth wireless keyboard/mouse with a MacBook

    What is required to use a MacBook with the Apple Wireless Bluetooth Keyboard and Mouse?
    -- i.e., what 'setup' is required to get the MacBook to recognize those devices and respond to input from them?
    Thanks.

    To be able to use the mouse and keyboard to full effect, such as key combos on boot and all the mouse buttons, its best to install the drivers from the cd that came with the mouse and keyboard.

  • How can i use apple tv and iTunes movies with component video cables for an older receiver and projector?

    i have an older yamaha receiver and projector both without hdmi inputs but component video instead. I would like to get apple tv and start renting movies through iTunes but apple tv only supports hdmi and ive read that iTunes has codes to prevent the use ot analog cables with movies. Is there a way to adapt hdmi to component video for both apple tv and iTunes easily?

    Yes, HDMI is the only supported method. Also, with converters you will run into issues with HDCP (which will prevent you from streaming DRM content from iTunes etc) as well as resolution.

  • UEFI boot problems with Linux 3.7 kernels

    According to this thread in the Arch Linux forums, some people are having problems booting some versions of the Linux 3.7 kernel. Here are the numbers: 
    3.7.3 works for some, but not others
    3.7.4 works for some, but not others
    3.7.5 works
    3.7.6 does not
    3.7.7 works
    3.7.8 does not
    The problem occurs with both the Gummiboot and rEFInd boot managers, and has so far only been reported on Lenovo hardware. I have a ThinkPad W530, and can confirm that on Gummiboot, 3.7.6 does not work, whereas 3.7.5 and 3.7.7 does work. It looks like a Lenovo-related issue to me. It has only been reported on Arch Linux as far as I know. Has anyone else encountered this problem?

    Thanks for your reply. Yes, the cursor did blink in the top left corner.
    I gather from your comments that, if I install a new HD, I will be able to re-install the Windows 7 32-bit O/S from the Product Recovery DVD GMR410014EN0, which was supplied by Toshiba with the laptop and it would also follow, if that is true, that I would be able to Format (Boot n' Nuke) the existing HD and re-install the O/S onto it before I get my friend to lay out cash for a new HD.
    I would appreciate your confirmation that the above conclusions are correct as I was under the, hopefully incorrect, impression that the Recovery Disk could only be used to repair an existing system. I have the Microsoft licence number as it is printed on the bottom of my friends machine.
    Thanks for your time and I look forward to hearing from you.

  • HT4908 I used Apple ID try reconnect iCloud with no successful, what should I do,Please advise

    I had made mistake tapping wrong button in resetting after My IPad download very slow , then I tried reconnect ICloud by Apple ID with no success. Please advise
    What should I do .

    Go to Settings>icloud, scroll to bottom of screen and tap Delete Account.  Then log in using a different ID.

  • [SOLVED]Unable to boot eMac with Arch PPC

    Hi everyone,
    I just got into Arch and I realized there was a PPC port, so I decided to see if I could replace Ubuntu on my eMac (USB 2.0) with it.  Unfortunately, I am unable to boot, getting stuck with the loading of the second-stage bootstrap.  What should I be looking for in order to diagnose and conceivably remedy this issue?
    I get the flashing folder with an alternating Mac face and question mark.
    EDIT: Please see the link to the archlinuxppc-user mailing list for the resolution to my issue.    I hope it helps someone else.
    Last edited by bkadoctaj (2010-05-12 07:37:38)

    Hi DaNiMoTh,
    Thanks for the reply.  Well, I have just made a post at the mailing list page, so hopefully it will be approved by the moderators soon.  The situation has somewhat changed as I have attempted to reinstall Arch PPC on the eMac since then.  Now I am immediately taken to the second-stage yaboot screen at boot and I have no access to OpenFirmware.  When I use the Live CD to mount the / and /home partitions of /dev/hda, all I see in / is /home and /lost+found, while in /home all I see is /lost+found.  It appears that Arch PPC never actually installed, and I have no idea why.  I guess the files in /mnt were never copied to /.  I'm so confused by all this, but I really desire to understand what is happening and how I can get this computer up and running.  If you have any thoughts at all, please don't hesitate to share.  I'm completely willing to do some reading, but I have not seen reports of a similar situation yet.
    By the way, my eMac is 32-bit.
    Thanks,
    bkadoctaj
    EDIT: I'm not sure how I can get a log for any of this, especially since it appears the install never completed, even though nothing during the install process suggested that was the case.
    EDIT 2: Forget this thread...  The discussion has been continued over at http://groups.google.com/group/archlinu … f4b89ad2ad
    Thank you for the assistance. 
    Last edited by bkadoctaj (2010-05-11 21:45:57)

  • [SOLVED] DELL Vostro doesnt finish boot process with HDMI pluged in

    I am using Xorg 1.16.1, when I try to boot my machine with a external monitor (HDMI) plugged in, X does not start.
    Here is what dmesg says:
    [ 7.368666] brcmsmac bcma0:0: wl0: brcms_c_d11hdrs_mac80211: txop exceeded phylen 137/256 dur 1602/1504
    [ 7.390077] brcmsmac bcma0:0: wl0: brcms_c_d11hdrs_mac80211: txop exceeded phylen 157/256 dur 1762/1504
    [ 7.528043] brcmsmac bcma0:0: brcms_ops_bss_info_changed: arp filtering: 1 addresses (implement)
    [ 11.048888] [drm:ibx_irq_handler] *ERROR* PCH transcoder A FIFO underrun
    [ 27.815808] [drm:ibx_irq_handler] *ERROR* PCH transcoder A FIFO underrun
    when I pull the HDMI cable out, X starts properly:
    [ 53.849688] fuse init (API version 7.23)
    This is what lspci says:
    00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 18)
    Has anybody an idea, what could be wrong with my system?
    regards
    Last edited by ifelseforeach (2014-10-06 16:35:40)

    Yea I m using light-dm.
    Ok, I just did another reboot to check the log files in the plugged-in/out case and I discoverd, that the boot process can not be completed as long as the HDMI cable is plugged in. (So my first Headline was unintentional right : ) )
    I checked dmesg I both cases and they only differ only in the last few lines:
    PluggedIN case dmesg:
    [ 7.411395] brcmsmac bcma0:0: wl0: brcms_c_d11hdrs_mac80211: txop exceeded phylen 137/256 dur 1602/1504
    [ 7.429694] brcmsmac bcma0:0: wl0: brcms_c_d11hdrs_mac80211: txop exceeded phylen 157/256 dur 1762/1504
    [ 7.520580] brcmsmac bcma0:0: brcms_ops_bss_info_changed: arp filtering: 1 addresses (implement)
    [ 60.760060] [drm:ibx_irq_handler] *ERROR* PCH transcoder A FIFO underrun
    [ 67.101403] fuse init (API version 7.23)
    As you can see at the time stamps, the boot process stops as line 3 and only continues at line 4 when I pull out the cable.
    PluggedOUT case dmesg:
    [ 7.325765] brcmsmac bcma0:0: wl0: brcms_c_d11hdrs_mac80211: txop exceeded phylen 137/256 dur 1602/1504
    [ 7.347581] brcmsmac bcma0:0: wl0: brcms_c_d11hdrs_mac80211: txop exceeded phylen 157/256 dur 1762/1504
    [ 7.515908] brcmsmac bcma0:0: brcms_ops_bss_info_changed: arp filtering: 1 addresses (implement)
    [ 14.652575] fuse init (API version 7.23)
    Last edited by ifelseforeach (2014-10-04 21:26:20)

  • Using Apple World Travel Power Adapter with Airport Extreme

    Hi, I was wondering if anyone knows if you can use Apples World Travel power adapters they sell for Powerbooks and ipods on an airport express. I'm looking to use it in Switzerland.
    Thanks

    1) use some sort of USB to Ethernet converter to plug the USB device into the AE
    A "normal" USB-to-Ethernet adapter/converter merely makes the computer network capable. Useful if an Ethernet port is not provided originally. This is not what you want in this case. Instead, if you wish to connect an existing Wi-Fi base station (router), you should look for a special adapter (maybe something like this) with an Ethernet output and support for the very USB mobile broadband modem that you are using.
    An alternative solution could be a dedicated mobile broadband router (with support for said USB modem), where you choose to or not choose to use its Wi-Fi capabilities.
    Jan

  • Using Apple Time Capsule as wireless with ActionTech AGT784WNV

    I have just began to use Verizon high speed dsl as my ISP. I had an Apple Time Capsule that I had been using to establish my wireless network. I wanted to continue to use it for various reasons. I tried to find a way to use the ActionTech as a bridge, but didn't find clear instructions. As I looked at the setting options on both devices i found I could set the timecapsule to act as a bridge only. Open airport utility. Select edit time capsule and on the network tab select bridge only. Then connect to the ethernet cable from the ActionTech.
    So far that seems to work fine.

    I have just began to use Verizon high speed dsl as my ISP. I had an Apple Time Capsule that I had been using to establish my wireless network. I wanted to continue to use it for various reasons. I tried to find a way to use the ActionTech as a bridge, but didn't find clear instructions. As I looked at the setting options on both devices i found I could set the timecapsule to act as a bridge only. Open airport utility. Select edit time capsule and on the network tab select bridge only. Then connect to the ethernet cable from the ActionTech.
    So far that seems to work fine.

Maybe you are looking for

  • How to fetch APPROVER NAME  and approval date dynamically for an user

    Hi all.. How to fetch approver name and approval date dynamicall for an user in an email template.. can any help me to sort out this pbm,i am new to IDM.. Thanks in advance..

  • How to adjust background format for photos from my albums iOs7

    With previous IOs version , when using photos from my albums to make background image , format would have fit itself  . But with iOs7  , it stays at the photo's original format and doesn't adjust to screen size .

  • Edi receive message, UNA Issue.

    Hi All, I have a scenario where a particular party is sending me an edifact message without the UNA segment.   I understand that the default value which I have given in the EDI disassembler pipeline will be taken into consideration. However they are

  • How to add .xml, .js and .css files to a xml viewer?

    Hi, I have a xml viewer in a web part to display a moving txt message.  I created a doc. library called XmlWebParts and in it 3 files with the same name. I am referring the xml file in the doc library with no issues.   WarningMessage.xml <script type

  • REPRODUCABLE crash: javascript closing of child window

    I can consistently crash Safari (2.0.2) when closing a child window through javascript. All other browsers operate as expected. An example of this can be found here: http://www.kevinvaughan.org/testpopup.html Click the test popup link, and click canc