Can iMac boot and run SUSE Linux?

I have a requirement for an SLES 11 server. I really don't want to buy another machine for this so I was wondering if it was possible for an 2010 iMac C2D to boot and run SLES? What I would like to do is use an external FireWire drive as the boot & O/S device. Is that possible too?
My only other option is to create a Fusion image but I'm going to need 500 GB or more of disk space and I'd rather deal with that in a native environment.
Thanks

bwhit:
Welcome to Apple Discussions.
No reason why you should not be able to do it using Firewire Target Disk Mode. Here's what you do:
1. With both computers shut down connect both via firewire.
2. Startup the Mini and hold down "T" key immediately after chime.
3. Startup the PB and immediately after chime hold down Option key.
4. Select second HDD icon on the screen and click on the right pointing arrow.
5. Computer will boot from Mini's HDD.
Be sure to shut down PB completely before shutting down Mini.
Please do post back with an update or with further questions or comments.
Cheers
cornelius

Similar Messages

  • How can I boot and run my Mac Mini on my 12" PwrBk display using firewire?

    How can I boot and run my Mac Mini on my 12" PwrBk display using firewire?

    bwhit:
    Welcome to Apple Discussions.
    No reason why you should not be able to do it using Firewire Target Disk Mode. Here's what you do:
    1. With both computers shut down connect both via firewire.
    2. Startup the Mini and hold down "T" key immediately after chime.
    3. Startup the PB and immediately after chime hold down Option key.
    4. Select second HDD icon on the screen and click on the right pointing arrow.
    5. Computer will boot from Mini's HDD.
    Be sure to shut down PB completely before shutting down Mini.
    Please do post back with an update or with further questions or comments.
    Cheers
    cornelius

  • HT1379 I have  lost everything on my mac, a gray screen with a folder and question mark is blinking. i hav another mac that is running slowly, how can I boot and reinstall os x Lion, i do not have the start up disc with me.

    I have  lost everything on my mac, a gray screen with a folder and question mark is blinking. i hav another mac that is running slowly, how can I boot and reinstall os x Lion, i do not have the start up disc with me.

    Welcome to the Apple Support Communities
    Lion uses Recovery to reinstall OS X. Press Command and R keys when your Mac starts, open Disk Utility, erase the drive and reinstall Lion. The other Mac has probably got its hard disk damaged, so take the Mac to an Apple Store

  • ArchTaz Live: boot and run an Arch system entirely in RAM

    ArchTaz Live Boot: A method to boot and run an Arch system entirely in RAM using tmpfs.
    As the name suggests it was inspired by (copied entirely from) SliTaz http://www.slitaz.org/ and boots in exacly the same way.
    It needs a custom init script in the root directory and for some reason that I can't work out a hook for sysinit_premount in rc.sysinit to remount / rw.
    The /usr/bin/archfs script is just a chunk of Slitaz's Tazusb utility with some minor changes (and I haven't properly tested the lzma or no compression).
    The /init script is modified from the usual initramfs /usr/lib/initcpio/init with hints from the SliTaz /init script (and some personal additions for my system).
    Copy init to the root directory, run archfs (eg. # archfs writefs gzip) and move the resulting archfs.gz to your boot partition/directory and boot with archfs.gz as your initrd.
    I run a fairly light system (Openbox, Firefox, Gnome-Mplayer, SpaceFM, no dev packages) and gzip compression gives me an archfs.gz just over 230MB that boots in just over 30 seconds using 138MB RAM on startup, and most applications start instantly (2GHz Core2Duo, 4G RAM). Lzma compression generally gives a smaller archfs.gz but takes longer to boot. I have a persistent home partition, I install packages as I need them and then they're gone on next reboot if I don't do a new archfs.gz to keep them. I delete man pages, unneeded locales, etc. Obviously if you're running a hefty install on a limited box you may run into problems.
    Any tips, cleanups, corrections welcome. It's been a mostly copy and paste and mash stuff together process so it isn't neat. And I think I may need some serious help when systemd becomes default.
    /usr/bin/archfs:
    #!/bin/sh
    # Archfs - entirely copied from part of the Tazusb utility supplied with
    # SLiTaz GNU Linux - with some cosmetic changes.
    ### Tazusb - SliTaz LiveUSB
    ### Tazusb is an utility to generate, configure and manipulate SliTaz LiveUSB
    ### bootable media and/or USB /home partition, such as flash keys, SD card or
    ### USB harddisk.
    ### Authors : Christophe Lincoln (Pankso) <[email protected]>
    ### Andrew Miller (Spode) <[email protected]>
    COMMAND=$1
    case $COMMAND in
    writefs)
    # Writefs to rootfs.gz
    if [ -z $2 ]; then
    COMPRESSION=none
    else
    COMPRESSION=$2
    fi
    # Start info
    echo ""
    echo -e "\033[1mWrite filesystem\033[0m
    ===============================================================================
    The command writefs will write all the current filesystem into a suitable cpio
    archive (rootfs.gz) usable on a bootable LiveUSB media.
    Archive compression: $COMPRESSION"
    echo ""
    # Create list of files
    find /bin /etc /init /sbin /var /lib /lib64 /root /usr >/tmp/list
    for dir in /boot /dev /home /proc /sys /tmp /mnt /media /run
    do
    echo $dir >>/tmp/list
    done
    # Generate initramfs with specified compression
    if [ "$COMPRESSION" = "lzma" ]; then
    echo -n "Creating archfs.gz with lzma compression... "
    cat /tmp/list | cpio -o -H newc | lzma > /archfs.gz
    elif [ "$COMPRESSION" = "gzip" ]; then
    echo -n "Creating archfs.gz with gzip compression... "
    cat /tmp/list | cpio -o -H newc | gzip -9 > /archfs.gz
    else
    echo -n "Creating archfs.gz without compression... "
    cat /tmp/list | cpio -o -H newc > /archfs.gz
    fi
    # Get initramfs size
    size=`du -sh /archfs.gz | cut -f 1`
    echo "==============================================================================="
    echo "Root filesystem size: $size"
    echo ""
    echo -en "----\nENTER to continue..."; read i
    esac
    exit 0
    /init:
    #!/bin/bash
    PATH=/bin:/usr/bin:/usr/sbin:/sbin
    udevd_running=0
    if [ -x /usr/bin/systemd-timestamp ]; then
    RD_TIMESTAMP=$(systemd-timestamp)
    fi
    . /usr/lib/initcpio/init_functions
    mount -t proc proc /proc -o nosuid,noexec,nodev
    mount -t sysfs sys /sys -o nosuid,noexec,nodev
    mount -t devtmpfs dev /dev -o mode=0755,nosuid
    mount -t tmpfs run /run -o nosuid,nodev,mode=0755
    mkdir -m755 /run/initramfs
    # parse the kernel command line
    parse_cmdline
    for d in ${disablehooks//,/ }; do
    [ -e "/hooks/$d" ] && chmod 644 "/hooks/$d"
    done
    #. /config
    run_hookfunctions 'run_earlyhook' 'early hook' $EARLYHOOKS
    [ -n "${earlymodules//[[:space:]]}" ] && modprobe -qab ${earlymodules//,/ }
    [ -n "${MODULES//[[:space:]]}" ] && modprobe -qab $MODULES
    # If rootdelay is empty or not a non-negative integer, set it to 10
    if [ -z "${rootdelay}" ] || ! [ "${rootdelay}" -ge 0 ]; then
    rootdelay=10
    fi
    run_hookfunctions 'run_hook' 'hook' $HOOKS
    # honor the old behavior of break=y as a synonym for break=premount
    if [ "${break}" = "y" ] || [ "${break}" = "premount" ]; then
    echo ":: Pre-mount break requested, type 'exit' to resume operation"
    launch_interactive_shell
    fi
    rootdev=$(resolve_device "$root") && root=$rootdev
    unset rootdev
    #fsck_root
    # Make /new_root
    mkdir /new_root
    # Mount root at /new_root
    #${mount_handler:-default_mount_handler} /new_root
    echo -e "Switching / to tmpfs..."
    mount -t tmpfs tmpfs /new_root
    run_hookfunctions 'run_latehook' 'late hook' $LATEHOOKS
    run_hookfunctions 'run_cleanuphook' 'cleanup hook' $CLEANUPHOOKS
    # Stop udevd if is running
    if [ "${udevd_running}" -eq 1 ]; then
    udevadm control --exit
    udevadm info --cleanup-db
    fi
    # Copy root
    echo -e "Copying root..."
    for i in $(ls -a /); do
    case "$i" in
    .|..) ;;
    mnt) mkdir /new_root/mnt;;
    proc) mkdir /new_root/proc;;
    sys) mkdir /new_root/sys;;
    dev) mkdir /new_root/dev;;
    run) mkdir /new_root/run;;
    new_root) ;;
    *) cp -a /$i /new_root
    esac
    done
    # Create mountpoints
    mkdir /new_root/mnt/sda1
    mkdir /new_root/mnt/sda2
    mkdir /new_root/mnt/sda3
    mkdir /new_root/mnt/sda4
    init=${init:-/sbin/init}
    echo -e "Switching root..."
    exec env -i \
    "TERM=$TERM" \
    "RD_TIMESTAMP=$RD_TIMESTAMP" \
    /sbin/switch_root /new_root $init "$@"
    ## Mount root at /new_root
    #${mount_handler:-default_mount_handler} /new_root
    #run_hookfunctions 'run_latehook' 'late hook' $LATEHOOKS
    #run_hookfunctions 'run_cleanuphook' 'cleanup hook' $CLEANUPHOOKS
    init=${init:-/sbin/init}
    if [ "$(stat -c %D /)" = "$(stat -c %D /new_root)" ]; then
    # Nothing got mounted on /new_root. This is the end, we don't know what to do anymore
    # We fall back into a shell, but the shell has now PID 1
    # This way, manual recovery is still possible.
    err "Failed to mount the real root device."
    echo "Bailing out, you are on your own. Good luck."
    echo
    launch_interactive_shell --exec
    elif [ ! -x "/new_root${init}" ]; then
    # Successfully mounted /new_root, but ${init} is missing
    # The same logic as above applies
    err "Root device mounted successfully, but ${init} does not exist."
    echo "Bailing out, you are on your own. Good luck."
    echo
    launch_interactive_shell --exec
    fi
    if [ "${break}" = "postmount" ]; then
    echo ":: Post-mount break requested, type 'exit' to resume operation"
    launch_interactive_shell
    fi
    exec env -i \
    "TERM=$TERM" \
    "RD_TIMESTAMP=$RD_TIMESTAMP" \
    /sbin/switch_root /new_root $init "$@"
    # vim: set ft=sh ts=4 sw=4 et:
    /etc/rc.d/functions.d/root_rw:
    root_rw() {
    mount -o remount,rw /
    add_hook sysinit_premount root_rw
    archfs:
    http://pastebin.com/RNTDWhFc
    init:
    http://pastebin.com/n4vcqG62
    root_rw:
    http://pastebin.com/i1LV61SV
    Last edited by 0ddba11 (2012-12-30 10:12:35)

    Oh yes any man directory was symlinked to /tmp long ago, so they don't even get installed.
    Right, new boot process:
    Using hooks in normal initramfs-linux.img to unpack archfs.gz into tmpfs and boot it.
    Create an initcpio preset file /etc/mkinitcpio.d/archfs.preset:
    # mkinitcpio preset file for the 'archfs' package
    ALL_config="/etc/mkinitcpio.conf"
    ALL_kver="/boot/vmlinuz-linux"
    PRESETS=('archfs')
    archfs_config="/etc/mkinitcpio.conf"
    archfs_image="/boot/archfs-linux.lzo"
    archfs_options="-S fsck -A tmpfs -z lzop"
    Or append to the standard 'linux.preset' file so the initramfs is created automatically when you upgrade your kernel. Or alter /etc/mkinitcpio.conf to add options.
    Create the file /lib/initcpio/hooks/tmpfs:
    #!/usr/bin/ash
    run_latehook() {
    # Mount tmpfs root
    mount -t tmpfs tmpfs /mnt
    # Unpack rootfs
    msg "Unpacking rootfs..."
    cd /mnt
    # parse the kernel command line
    parse_cmdline
    for archfs in ${archfs//,/ }; do
    if [ "$archfs" = "xz" ]; then
    xz -d < /new_root/boot/archfs.xz | cpio -imd --no-absolute-filenames > /dev/null 2>&1
    elif [ "$archfs" = "gzip" ]; then
    gzip -dc /new_root/boot/archfs.gz | cpio -imd --no-absolute-filenames > /dev/null 2>&1
    elif [ "$archfs" = "lzo" ]; then
    lzop -d < /new_root/boot/archfs.lzo | cpio -imd --no-absolute-filenames > /dev/null 2>&1
    elif [ "$archfs" = "img" ]; then
    cpio -imd --no-absolute-filenames /new_root/boot/archfs.img > /dev/null 2>&1
    fi
    done
    # Switch tmpfs to new root
    umount /new_root
    mount -M /mnt /new_root
    # vim: set ft=sh ts=4 sw=4 et:
    And the file  /lib/initcpio/install/tmpfs:
    #!/bin/bash
    build() {
    add_dir /mnt
    add_module ext3
    add_binary cpio
    add_binary xz
    add_binary gzip
    add_binary lzop
    add_binary fsck.ext4
    add_symlink /usr/bin/fsck.ext2 fsck.ext4
    add_symlink /usr/bin/fsck.ext3 fsck.ext4
    add_runscript
    help() {
    cat <<HELPEOF
    This hook creates the tmpfs root, mounts the device that contains the
    rootfs and extracts it into the tmpfs root.
    HELPEOF
    # vim: set ft=sh ts=4 sw=4 et:
    This loads modules and fsck binaries for the filesystem of my /boot partition into the initramfs. It also adds all the relevant compression binaries (some which can also be compiled into busybox or left out if not needed). I'm working on automatically reading the filesystem from your /boot partition based on the "root=" kernel command line option and adding the appropriate modules.
    Create a new archfs.gz (or new extensions) with new cleaned up /usr/bin/archfs:
    http://pastebin.com/xiqgyYyL
    Now run with:
    # archfs lzo
    (or whichever crompression you choose). It also takes care of any mounting directories you have in /mnt. And "writefs" is no longer needed, that's all it does anyway.
    Then simply add the "root=(your boot partition)" and "archfs=lzo" (or whichever compression you chose) command line options to your grub.cfg.
    Run:
    # mkinitcpio -p archfs
    That'll create an initramfs: archfs-linux.lzo that you need to move to your boot partition with your kernel and archfs.gz. Then point grub to that as your initrd.
    This will boot and the tmpfs hook will do it's work just after init has mounted your boot partition and then init will switch roots and run /sbin/init as it would on any normal install.
    Mix and match as needed. You can remove the /init file from the root of your filesystem or leave it there and all but an xz compressed archfs.gz will boot the old way aswell (the kernel can't handle the xz version). It should all be fairly upgrade proof, barring any major changes to mkinitcpio.
    Boot for me with lzo compression is at least twice as fast as old method. Partly due to lzo compression which is super fast (especially creating the archfs.lzo). It makes for a bigger file but it's still only 350MB (pretty much half my uncompressed root filesystem).

  • Can I download and run IE on my mac 10.6.7?

    Can I download and run Internet Explorer on mac 10.6.7?  I need IE for FAFSA

    Not unless you install Windows:
    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    1. Install the Apple Boot Camp software.  Purchase Windows XP w/Service Pak 2, Vista, or Windows 7.  Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows.  Boot Camp enables you to boot the computer into OS X or Windows.
    2. Parallels Desktop for Mac and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  Parallels is software virtualization that enables running Windows concurrently with OS X.
    3. VM Fusionand Windows XP, Vista Business, Vista Ultimate, or Windows 7.  VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    4. CrossOver which enables running many Windows applications without having to install Windows.  The Windows applications can run concurrently with OS X.
    5. VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris.  It is not as fully developed for the Mac as Parallels and VM Fusion.
    6. Last is Q.  Q is a freeware emulator that is compatible with Intel Macs.  It is much slower than the virtualization software, Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc. 
    There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system.  See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion.
    Boot Camp is only available with Leopard or Snow Leopard. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows. You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • How can I install and run a Windows program on my MacBook Pro/?

    How can I install and run a Windows program on my MacBook Pro?

    You have several options.
    1, Use a Virtual Machine like Vmware, Parallels etc... to Create a Virtual Windows Installation and Run your program in there.  A Virtual MAchine will runn in a Window on your Desktop and share your Mac's resources RAM HD space processor. Your MAc desktop will still be available while you run Windows install.
    http://www.parallels.com/
    2. Install Windows on a partition using Bootcamp. It will run a full installation of Windows you can boot into, and run your programs.  The Mac desktop will not available until your reboot the computer and start in OSx instead of Windows.
    https://www.apple.com/support/bootcamp/
    3. Use Wine /  Winebottler to run the Application without the need for a complete Windows installation.
    http://winebottler.kronenberg.org/

  • Can i download and run itunes from an external hard drive

    can i download and run itunes from an external hard drive?

    The iTunes application should be on the boot drive but you can keep the iTunes library on an external.
    hold Shift when launching iTune sand select Create library and select the external.
    This will create an iTunes folder on the external with all the library files and all media will also go into this folder.

  • How can I install and run lookout 6.1 on windows server 2008 64-bit without errors?

    How can I install and run lookout 6.1 on windows server 2008 64-bit without any errors?
    I was unable to start the lookout applcation after I install the lookout 6.1 on windows server 2008 64-bit.
    (error code: 0xC0000142). Please help!
    Thanks

    This will pobably do http://joule.ni.com/nidu/cds/view/p/id/1051/lang/en but the major issue is that you should concentrate and read the instructions carefully. My two cents.
    Dieet
    Afvallen

  • Can I install and run Photoshop CS2 on a Windows 7 64Bit OS?

    I just purchased a computer It is a Windows 7 Ultimate 64 bit OS.  Can I install and run Photoshop CS2?  What issues would I have?

    For what it's worth I have Photoshop CS2 running fine on Vista x64, but I've not moved it over to my Windows 7 x64 machine.  Generally speaking, things that work fine on Vista x64 work fine on Windows 7 x64.
    That said, you might want to wait until you hear from someone who's actually tried the exact combination themselves.
    -Noel

  • Can I install and run, and howto, FF4 beta alongside the existing FF3.6.13?

    Can I install and run the Beta version [...safely ] alongside my existing, working, FF3.6?
    If so, how?
    FireFox is my main browser appliaction on a Windows XP machine and I will need it working...

    If you want to test the beta, probably the easiest method is to install the portable test version on your hard drive. For details see method A as shown by the-edmeister here - http://forums.mozillazine.org/viewtopic.php?f=23&t=1062975
    The portable test version is currently set to Firefox 4 beta 7.

  • Can I install and run Microsoft IE on MAC? If yes, how?

    Can I install and run Microsoft IE on MAC? If yes, how?

    Microsoft has not written IE for Macs for a long time.
    If you want to use IE on a Mac, you would have to use virtualizaiton software such as VMware or use BootCamp and install Windows.

  • Oracle on Alpha running SuSe Linux

    Will Oracle run on an Alpha processor running SuSe Linux 7.0

    Hello....
    Anyone out there???
    Or am I to interpret the lack of an answer as a lack of a release date? :)

  • Can I boot and install Tiger on a G4 running 9.2.2 from an external DVD

    I have a Power Mac G4 (PCI Graphics) computer running OS 9.2.2. Firmware version I believe is 3.2.8. I purchased OS X Tiger DVD. I do not have a DVD drive on this Mac. I cannot seem to start up the Power Mac in Target mode via firewire. When I checked Apple website this Mac is not on list as able to be a target volume. Therefore, to avoid ordering CD's from Apple, I was hoping to buy an external DVD drive and use that to install from. Before I buy the new drive, I wanted to be sure this will work. Any help or suggestions are greatly appreciated.

    Welcome to Apple Discussions!
    The PowerMac G4 PCI Graphics can't boot from Firewire.
    It also can't run Target Disk Mode.
    The AGP Graphics was the first one that could.
    That's documented in the articles here:
    http://docs.info.apple.com/article.html?artnum=58606
    http://docs.info.apple.com/article.html?artnum=58583
    Make doubly sure it is a PCI graphics by reading this article:
    http://docs.info.apple.com/article.html?artnum=58418
    The PCI graphics needs no firmware update.
    But I would make sure you have at least a 20 GB hard drive and 512 MB of RAM before installing and following the specs for your machine when it comes to the RAM
    http://support.apple.com/specs/

  • Can I move the OS X boot disk from a core 2 duo mini to a new i5 mini and have it boot and run normally? Some info suggests I can.

    I have a 2.53ghz core 2 duo mac mini. I just purchased an i5 2.5ghz mac mini (with amd 6630m graphics).
    Can I simply ermove the OS X boot disk from the core 2 duo mini and put it into the i5 mini and have the it boot up and run fine?
    Some info I read suggests I can do this and it should be no problem and will work fine.
    I am running 10.9.3 of OS X.
    Thanks.

    - I would connect the two via FireWire
    - Boot the new one Target Disk Mode
    - Boot the old one in Recovery
    OS X: About OS X Recovery
    and then uses disk utility to restore the HD on the new computer from the starup disk of the old one.
    You could also boot the old one normally, download SuperDuper and the clone the old one's startup disk to the new one.

  • Installing and running Arch linux on the new MacBook 2015

    So Apple has just started taking orders for the new 2015 MacBook. You know --
    the thinnest and lightest MacBook to date (even thinner than the MacBook Air),
    with a 12 inch retina display, the Intel Core M processor, a single USB-C port,
    and the new force touch trackpad.
    I'm pretty sure there are a few people like me who'd like to buy this new
    MacBook and then install and run Arch (or some other flavor of linux) on it.
    But of course, this MacBook is in many ways very dissimilar to previous MacBook
    Pros and MacBook Airs. So this thread is a shout out to likeminded individuals
    who are willing to brave the odds and install Linux on this new machine, so we
    can help each other figure out (and hopefully fix) the inevitable issues that
    will arise when we venture into this uncharted territory!
    I have a little bit of experience installing and running Arch on MacBook Pros
    and other Apple computers, but I'm (very) far from being an expert. But based
    on my limited experience, I think the following areas will pose the biggest
    challenges to getting Linux properly up and running on the new MacBook:
    1. Installation: it's possible that booting a live USB will fail. So we might
       have to use a CD. Indeed, perhaps we may even have to build a special ISO
       image for this laptop. And once the install is complete, EFI/EFISTUB booting
       with/without refit/refind may or may not work. Also, installing a bootloader
       (grub, gummiboot, etc.) for dual booting Mac OS X and Linux may be a
       challenge. We might have to endure kernel panics and deal with cryptic error
       messages while booting.
    2. Wifi may or may not work reliably. We might have to do some tinkering with
       different drivers, etc.
    3. Battery life may not be very good. We might have to fix a few things here.
    4. The HiDPI retina display may or may not work properly with specific window
       managers/desktop environments. Fonts/icons might be too tiny, may not scale,
       etc.
    5. The new Force touch trackpad may not work out of the box. In fact, I'm
       fairly sure the regular xf86-input-synaptics package won't play nice with
       this trackpad. There may not be support for features like the trackpad's
       haptic feedback, multi-finger gestures, pressure sensitivity, etc. Indeed,
       this might actually take a while to get properly working under Linux.
    6. I don't know if the new USB-C port will work out of the box. It may not
       play nice with USB flash drives and other peripherals and there may be
       issues with ehci/uhci/whatever.
    I tried Googling around trying to learn as much as I could about the issues
    above, but since the laptop is going on sale only today and most users are
    probably not interested in running Linux on it, I came up quite empty. I think
    many others on this forum might also have faced the same issue.
    So here's an open invitation. Let's share our experiences trying to get linux
    working on this laptop. If you buy this laptop and try to install Arch on
    it, please let us know how it went! Even if some things work out of the box, it
    might be useful for others to know, so please share.
    And of course, if you have more information/gotchas: for example, if you
    encountered and managed to fix one or more of the issues above, or you
    encountered a problem that's not on the list above, or even if you tried
    something and it didn't work out as expected, please post below. I'm sure this
    will be a very big help to others trying to solve similar issues on the same
    hardware. Thanks!

    It would probably be beneficial to post the output of lsusb -vvvv and dmesg. 
    FS1RTG77 wrote:
    2. Broadcom BCM4360 AirPort Extreme, not supported.
    5. The new Force touch trackpad and keyboard, both SPI bus devices, do not work.
    On 2, it may just be a case of needing firmware, my laptop has a BCM43602 card, and the firmware required has only just been added to the linux-firmware package.  Prior to that I had to install it manually.
    On 5, I'm wondering if you identified them as SPI devices by looking in OS X, I ask because my laptop categorises my keyboard and trackpad in the same way.  But they are actually still both connected to the USB bus, and presumably using SPI as an interconnect between the keyboard/trackpad and the microcontroller that tie them together.

Maybe you are looking for

  • Best practice for sharing html content on different group spaces?

    How can html content be shared between several group spaces? One way I have found is to add a html doc to ucm and then to add this doc as a iframe to a page. Are there other ways, like adding on one group space page a html layout element and then to

  • Making HTTP requests with content-disposition

    I need to write a Java app that can access a web server that returns most content as files (ie. using content-disposition). Previously I have used something like this to make HTTP GET requests to return files on a web server. ��String strUrl = "http:

  • Search appointment by ICal in EWS Managed

    Hi all, First of all, i have tried with the solution of henning however it dont seems to be the correct one... (http://www.infinitec.de/post/2009/04/13/Searching-a-meeting-with-a-specific-UID-using-Exchange-Web-Services-2007.aspx) We have in our appl

  • Query in mysql DB with Dieadem

    Hi, I am using a mysql database to store some report data and I want to use Diadem to show the data and create the charts. I can connect to the database using diadem and see the database structure. I also can select specific columns and create charts

  • SecurityException while using Signature object in processToolkit

    Hello, I'm stuck on problem when trying to sign some data with RSA algorithm. following code initializes RSA keys and Signature object in class constructor: public class cryptoTest extends javacard.framework.Applet implements ToolkitInterface, Toolki