Unable to detect device with Bluetooth

I've paired my laptop and Bold 9650 on Bluetooth and can communicate fine.  However, when I go to detect Bluetooth device in Desktop Manager, it never shows up.  
In Bluetooth Options on teh phone,  I see Serial Port Profile checked with Data Transfer checked underneath and Desktop Connectivity and Wireless Bypass unchecked.  They are both greyed out and I cannot check them here. I've read some things that talk about setting these to True in IT policy when running Enterprise Server, but I cannot find how to get to this in version 6.0 bundle 2647.  How do I find these settings to sert them to true?

What kind of bluetooth system do you have in your car? is it factory installed or part of an aftermarket system?
I am trying to figure this out for myself as well. Please join the thread here:
http://supportforums.blackberry.com/t5/BlackBerry-Tour-9630/Transferring-Phonebook-to-Car-Radio-Fail...

Similar Messages

  • I am unable to update devices with Apple Configurator because of this message - unable to send ClearPasscode command to device - I am running Configurator 1.5 and ios 7.1.1.  I am unable to rename/number devices. How can I get rid of this error message.

    I am unable to update devices with Apple Configurator because of this message - unable to send ClearPasscode command to device - I am running Configurator 1.5 and ios 7.1.1.  I am unable to rename/number devices. How can I get rid of this error message.

    I've just seen this message for the first time and it's showing on 10 devices.
    What I really love about Apple Configurator is the copious amount of context driven help offered to you.
    "Unable to send ClearPasscode command to device.
    The device was disconnected.
    Check the USB connection to the device."

  • Why can´t I see other devices with Bluetooth from my Mac Mini?

    Why can´t I see other devices with Bluetooth from my Mac Mini?

    Be sure nothing is on top of the Mac Mini. BT and Wi-Fi antennas are just beyond the top. If something is onto the Mac Mini, wireless job will not be OK.
    Cheers
    Simon

  • Bluetooth: Unable to detect devices on Nokia Phones

    Hi
    The following piece of code for bluetooth detection and connection works(able to detect and connect to other bluetooth devices) on my Sony Ericsson K750i Phone but not on a Nokia N81(unable to detect any bluetooth devices).
    Can someone please help, i need this thing urgently.
    Many thanks
    Mark
    package ECG;
    import javax.bluetooth.*;
    import javax.microedition.io.Connector;
    import java.io.DataInputStream;
    import java.io.DataOutputStream;
    import java.io.IOException;
    import javax.microedition.io.*;
    import java.util.Vector;
    * Class for handle and establish Bluetooth connection
    public class BluetoothConnection extends Thread implements DiscoveryListener
    private StreamConnection sc;
    private DataInputStream input;
    private DataOutputStream output;
    private BluetoothScreen screen;
    private UUID SERIAL = new UUID(0x1101);
    private UUID RFCOMM = new UUID(0x0003);
    private Vector devices, targetDevices;
    private boolean connected;
    private StreamConnection con;
    private ECGDisplay display;
    private int[] transIds;
    private boolean inited, inquiry, search;
    private int count = 0;
    public BluetoothConnection(BluetoothScreen screen, ECGDisplay display)
    this.screen = screen;
    this.display = display;
    devices = new Vector();
    targetDevices = new Vector();
    inited = false;
    * Method for searching and connect to blutooth device with serial port profile
    public boolean searchSerialBT()
    try
    DiscoveryAgent agent = LocalDevice.getLocalDevice().getDiscoveryAgent();
    String url = agent.selectService(SERIAL, ServiceRecord.NOAUTHENTICATE_NOENCRYPT,false);
    if(url!=null)
    con = (StreamConnection)Connector.open(url);
    input = con.openDataInputStream();
    output = con.openDataOutputStream();
    output.writeChars("connected");
    connected = true;
    else
    connected = false;
    catch(Exception e)
    System.out.println(e);
    return connected;
    * Method for establish connection with the connection url which identifies the
    * address of the bluetooth device
    public boolean connect(String conURL)
    try
    con = (StreamConnection)Connector.open(conURL);
    input = con.openDataInputStream();
    output = con.openDataOutputStream();
    output.writeChars("connected");
    connected = true;
    catch(Exception e)
    System.out.println(e);
    return connected;
    * Thread method for handle receiving and displaying of ECG data
    public void run()
    while(true)
    try
    if(input!=null)
    byte[] b = new byte[input.available()];
    input.read(b);
    display.addValues(b);
    Thread.sleep(1);
    catch(IOException e)
    System.out.println(e);
    catch(InterruptedException e)
    System.out.println(e);
    * Method for disconnecting the Bluetooth connection
    public void disconnect()
    try{
    connected = false;
    if(input!=null)
    input.close();
    if(output!=null)
    output.close();
    if(con!=null)
    con.close();
    input = null;
    output = null;
    con = null;
    }catch(IOException e)
    System.out.println(e);
    * Method getting the input stream from the Bluetooth device
    public DataInputStream getInput()
    return input;
    * Method getting the output stream for writing to the Bluetooth device
    public DataOutputStream getOutput()
    return output;
    * Event Handler method for logging the neighbouring bluetooth device
    public void deviceDiscovered(RemoteDevice btDevice, DeviceClass cod)
    devices.addElement(btDevice);
    * method for cancelling the searching of bluetooth devices
    public void cancelSearch()
    try{
    DiscoveryAgent agent = LocalDevice.getLocalDevice().getDiscoveryAgent();
    if(inquiry)
    agent.cancelInquiry(this);
    if(search)
    for(int i=0;i<transIds.length;i++)
    agent.cancelServiceSearch(transIds);
    targetDevices.removeAllElements();
    devices.removeAllElements();
    }catch(BluetoothStateException e)
    System.out.println(e);
    * Method for searching the neighbouring bluetooth devices
    public void searchDevices()
    try
    cancelSearch();
    inquiry = true;
    DiscoveryAgent agent = LocalDevice.getLocalDevice().getDiscoveryAgent();
    agent.startInquiry(DiscoveryAgent.GIAC,this);
    catch(BluetoothStateException e)
    System.out.println(e);
    * Method that indicates the searching of bluetooth devices is completed
    * thus it will proceed to find the device with support of serial port profile from the list
    public void inquiryCompleted(int discType)
    if(discType==INQUIRY_COMPLETED)
    try
    DiscoveryAgent agent = LocalDevice.getLocalDevice().getDiscoveryAgent();
    transIds = new int[devices.size()];
    for (int i=0;i<devices.size();i++)
    RemoteDevice device = (RemoteDevice)devices.elementAt(i);
    transIds[i] = agent.searchServices(new int[]{0x0003}, new UUID[]{SERIAL}, device, this);
    catch(BluetoothStateException e)
    System.out.println(e);
    inquiry = false;
    * Method that indicates the bluetooth devices have the required bluetooth services
    public void servicesDiscovered(int transID, ServiceRecord[] servRecord)
    for(int i=0;i<servRecord.length;i++)
    try
    String[] s = new String[2];
    s[0] = servRecord[i].getHostDevice().getFriendlyName(true);
    s[1] = servRecord[i].getConnectionURL(ServiceRecord.NOAUTHENTICATE_NOENCRYPT,false);
    targetDevices.addElement(s);
    catch(IOException e)
    System.out.println(e);
    * Method to call the screen to display the list of bluetooth devices discovered
    public void serviceSearchCompleted(int transID, int respCode)
    screen.showDevices(targetDevices);

    I have K610i with satellite pro a300-1nt, after it came from service, i can connect to my desktop via bluetooth, but if i try to connect to k610i it says unable to detect remote device. ideas? it says that just on those devices which were registered before (ie, my, sisters phone)
    (EDIT: i cant use cellphone as remote controll, i can only send files to computer.)
    i've tried diagnostics, first passed 2nd failed. i use toshiba's bt stack v7.10.12(T).
    thanx in andvance
    KnE
    Message was edited by: knezan94

  • Aggregated device with bluetooth

    Running a Mac mini 1.66 intel core duo with OS X 10.6.8.
    I just bougth a Creative D200 bluetooth speaker and i want to run my regular speakers at the same time as this one. I have made them into an aggregated device but it wont work. I have played around with the settings. But nothing happends. They still work fine separately.

    This is actually not a bug. To put it simply, what you want to do isn't supported. Not just by Apple, but more so by the software you're using (ie: Spotify).
    By checking off both devices, you are effectively creating a single device with 4 outputs: L and R on Mac, L and R on Airplay.
    This issue is in telling which audio streams to go to which output, and that level of audio routing is not something that is built into most software. Spotify will just go off of your system default, which will just route the audio to the first 2 outputs it finds (L and R on your Mac in this case).
    Even if you could route the audio within Spotify itself, this wouldn't help your issue, because essentially what you're asking for is your 1 stereo audio stream to be copied to all possible outputs. This too is not a supported feature.
    You may be wondering at this point "Then what good is this aggregate device option?!"
    It's really designed for audio engineers that have several different audio streams and several audio devices connected to their computer. They may want to route audio streams to several different locations, which is why you'll notice that "Configure Speakers" button in your screenshot. Apps like Logic have native support for this and you can do all sorts of routing within it. Setting up an aggregate device allows me to have several pieces of hardware connected to my computer, and instead of having to switch between which one I'm using, I can use all of them at once, and chose different audio to come out of different places (ie: surround sound).
    Soundflower is your best bet, as it can easily achieve what you're looking for.
    Hope this helps, and if you have any Soundflower questions, let me know.

  • Unable to detect device on windows 7 32bit

    hi , I am using itunes version 11.1.5.5 on windows 7 32bit. I am unable to view device when i connect my iphone. Can someone suggest to overcome this problem.
    Thanks.

    Try Andrei Cerbu's post here or see TS1538: iOS: Device not recognized in iTunes for Windows, in particular section 5, forcing a driver update.
    tt2

  • "Upgraded" to 10.7.4. from 10.7.3. Now I get "Firewire unable to detect devices". I'm using a microtek 9800 xl scanner using vuescan with firewire only connection. Please help!

    i've been writing back and forth with Ed Hamrick, the guy who created vuescan for my scanner, since microtek stopped making drivers. he can't figure out the problem either. i can't find answers anywhere online, and i need this scanner working yesterday. i got it to work on my laptop since that's still running 10.7.3, but that's no practical. *** did .4 do that screwed this all up??

    ok, unexpected. i used a firewrire to usb cable instead just to see. that worked! guess that's how i'll go moving forward. hopefully this helps the one other person on this planet that bought this scanner! ;P

  • Snow Leopard and BlackBerry - recently unable to detect device

    I installed Snow Leopard last week.  Immediately after it installed, I was able to use PocketMac to sync my BlackBerry 7130e and my Mac.
    I later installed update 10.6.1 and shortly after, I realized that it wasn't syncing anymore, and the plug symbol that indicates the BlackBerry is plugged in was no longer present.  However, the BlackBerry would charge using the USB/AC adapter, so I know it's not a faulty cord.
    I did a restore back to when I was running 10.6 and it didn't make a difference, so I restored it again to 10.6.1 and I can't yet get it to sync.
    I checked the System Profiler and this is what I got:
      Product ID: 0x0001
      Vendor ID: 0x0fca
      Version: 1.04
      Speed: Up to 12 Mb/sec
      Manufacturer: Research In Motion
      Location ID: 0x1a200000
      Current Available (mA): 500
      Current Required (mA): Unknown (Device has not been configured)
    Any ideas on what might help?
    David. 

    I found a partial solution in another thread - downloading the drivers for pocketmac and deleting the .kext files for BlackBerry.
    I can now get the "plugged in" symbol so I know it's connected, but still no syncing.
    System Profiler shows:
    USB Bus:
      Host Controller Location: Built-in USB
      Host Controller Driver: AppleUSBUHCI
      PCI Device ID: 0x2830 
      PCI Revision ID: 0x0003 
      PCI Vendor ID: 0x8086 
      Bus Number: 0x1d 
    Vendor-Specific Device:
      Product ID: 0x0001
      Vendor ID: 0x0fca
      Version: 1.04
      Speed: Up to 12 Mb/sec
      Manufacturer: Research In Motion
      Location ID: 0x1d100000
      Current Available (mA): 500
                   Current Required (mA): 500 

  • Pairing iphone 6 and macbook pro with bluetooth

    I have an iPhone 6 and a new MacBook Pro Retina and cannot pair my device with BlueTooth. I do have handoff working so I know they are communicating.
    Why can't I use blueTooth to move files from one device to another?

    Use airdrop to transfer files. Bluetooth is only for tethering your phone.
    Hope this helps.
    PJRS

  • Hi! I want to connect my Jabra easygo Bluetooth device with my iPad but iPad is not detecting the Bluetooth device

    Hi! I want to connect my Jabra easygo Bluetooth device with my iPad but iPad is not detecting the Bluetooth device

    Hi Usmanfarooq83,
    Here is an article of troubleshooting for bluetooth devices and iPad:
    iOS: How to troubleshoot Bluetooth connections
    http://support.apple.com/kb/TS4562
    Cheers!
    - Ari

  • I have turned on Bluetooth on my iPhone 4, however it is unable to detect any devices

    have turned on Bluetooth on my iPhone 4, however it is unable to detect any devices.
    It is constantly searching

    See Supported Bluetooth Profiles Here  >  http://support.apple.com/kb/HT3647
    More Info Here  >  iPhone User Guide
    If you Still have issues...
    Close All Open Apps...  Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • Unable to retrieve device ID with udev daemon

    I've recently switched from Ubuntu to Arch (did not regret it yet ). Currently, I'm trying to set up a backup. I have not done anything like that before so I cannot tell if my problem is Arch-specific but I guess, it's not.
    Since I want to backup to an external HDD with no permanent connection to my laptop, I want a backup script to be triggered each time when the HDD is plugged in. So I created an udev rule in /etc/udev/rules.d/10-local.rules (had to created that file since this directory was empty):
    ACTION=="add", SYSFS{idVendor}=="04e8", SYSFS{idProduct}=="60a6", RUN+="/usr/local/bin/makebak.sh"
    What this rule should do: Execute the script makebak.sh each time I plug in the device with vendor ID 04e8 and product ID 60a6.
    What this rule does: Nothing.
    The output of lsusb for the device in question is
    Bus 002 Device 014: ID 04e8:60a6 Samsung Electronics Co., Ltd
    I tested some things:
    1. It works if I try ACTION=="add", RUN+="/usr/local/bin/makebak.sh", but then the script is executed something like 10 times for each device I plug in. This rule is just too generic. But it proves that udev seems unable to find the device ID.
    2. I've found the command udevadm test that shows me some info about my device. However, the output is different if I execute it as root. I noticed that as root there are no informations concerning the vendor and the product id, but as regular user I can see them listed. I don't really know what this tool does but could the reason why my udev rule doesn't work be connected with that observation?
    Here is the output of udevadm test /sys/block/sdb as regular user:
    run_command: calling: test
    adm_test: version 180
    This program is for debugging only, it does not run any program,
    specified by a RUN key. It may show incorrect results, because
    some values may be different, or not available at a simulation run.
    builtin_kmod_init: load module index
    add_matching_files: unable to open '/run/udev/rules.d': No such file or directory
    parse_file: reading '/lib/udev/rules.d/10-dm.rules' as rules file
    parse_file: reading '/etc/udev/rules.d/10-local.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/11-dm-lvm.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/13-dm-disk.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/40-gphoto.rules' as rules file
    add_rule: IMPORT found builtin 'usb_id --export %p', replacing /lib/udev/rules.d/40-gphoto.rules:11
    parse_file: reading '/lib/udev/rules.d/42-qemu-usb.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/50-udev-default.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/53-sane.rules' as rules file
    (... much more rules parsing ...)
    udev_rules_new: rules use 216120 bytes tokens (18010 * 12 bytes), 28505 bytes buffer
    udev_rules_new: temporary index used 52000 bytes (2600 * 20 bytes)
    udev_device_new_from_syspath: device 0x155b6d0 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb'
    udev_device_new_from_syspath: device 0x156ade0 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb'
    udev_device_read_db: device 0x156ade0 filled with db file data
    udev_rules_apply_to_event: RUN '/usr/local/bin/makebak.sh' /etc/udev/rules.d/10-local.rules:1
    udev_device_new_from_syspath: device 0x155d490 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0'
    udev_device_new_from_syspath: device 0x155dc90 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0'
    udev_device_new_from_syspath: device 0x155e480 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16'
    udev_device_new_from_syspath: device 0x155ec60 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0'
    udev_device_new_from_syspath: device 0x155f420 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1'
    udev_device_new_from_syspath: device 0x155fc00 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2'
    udev_device_new_from_syspath: device 0x15603d0 has devpath '/devices/pci0000:00/0000:00:1d.7'
    udev_device_new_from_syspath: device 0x1560b70 has devpath '/devices/pci0000:00'
    udev_rules_apply_to_event: GROUP 6 /lib/udev/rules.d/50-udev-default.rules:67
    udev_rules_apply_to_event: IMPORT 'ata_id --export /dev/sdb' /lib/udev/rules.d/60-persistent-storage.rules:37
    udev_event_spawn: starting 'ata_id --export /dev/sdb'
    spawn_wait: 'ata_id --export /dev/sdb' [2250] exit with return code 1
    udev_rules_apply_to_event: IMPORT builtin 'usb_id' /lib/udev/rules.d/60-persistent-storage.rules:39
    builtin_usb_id: /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0: if_class 8 protocol 6
    udev_builtin_add_property: ID_VENDOR=Samsung
    udev_builtin_add_property: ID_VENDOR_ENC=Samsung\x20
    udev_builtin_add_property: ID_VENDOR_ID=04e8
    udev_builtin_add_property: ID_MODEL=S2_Portable_3
    udev_builtin_add_property: ID_MODEL_ENC=S2\x20Portable\x203\x20\x20\x20
    udev_builtin_add_property: ID_MODEL_ID=60a6
    udev_builtin_add_property: ID_REVISION=2AM1
    udev_builtin_add_property: ID_SERIAL=Samsung_S2_Portable_3_000000000000011E0A60-0:0
    udev_builtin_add_property: ID_SERIAL_SHORT=000000000000011E0A60
    udev_builtin_add_property: ID_TYPE=disk
    udev_builtin_add_property: ID_INSTANCE=0:0
    udev_builtin_add_property: ID_BUS=usb
    udev_builtin_add_property: ID_USB_INTERFACES=:080650:
    udev_builtin_add_property: ID_USB_INTERFACE_NUM=00
    udev_builtin_add_property: ID_USB_DRIVER=usb-storage
    udev_rules_apply_to_event: LINK 'disk/by-id/usb-Samsung_S2_Portable_3_000000000000011E0A60-0:0' /lib/udev/rules.d/60-persistent-storage.rules:44
    udev_rules_apply_to_event: IMPORT builtin 'path_id' /lib/udev/rules.d/60-persistent-storage.rules:61
    udev_builtin_add_property: ID_PATH=pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    udev_builtin_add_property: ID_PATH_TAG=pci-0000_00_1d_7-usb-0_1_1_0-scsi-0_0_0_0
    udev_rules_apply_to_event: LINK 'disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0' /lib/udev/rules.d/60-persistent-storage.rules:62
    udev_rules_apply_to_event: IMPORT builtin 'blkid' /lib/udev/rules.d/60-persistent-storage.rules:76
    error: /dev/sdb: Permission denied
    udev_rules_apply_to_event: IMPORT 'udisks-part-id /dev/sdb' /lib/udev/rules.d/80-udisks.rules:88
    udev_event_spawn: starting 'udisks-part-id /dev/sdb'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'libudev: udev_device_new_from_syspath: device 0x1cc2680 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb''
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'libudev: udev_device_read_db: device 0x1cc2680 filled with db file data'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'using device_file=/dev/sdb syspath=/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb, offset=0 ao=0 and number=0 for /dev/sdb'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'Error opening /dev/sdb: Permission denied'
    spawn_wait: 'udisks-part-id /dev/sdb' [2251] exit with return code 0
    udev_rules_apply_to_event: IMPORT 'udisks-probe-ata-smart /dev/sdb' /lib/udev/rules.d/80-udisks.rules:112
    udev_event_spawn: starting 'udisks-probe-ata-smart /dev/sdb'
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(err) 'Failed to open disk /dev/sdb: Permission denied'
    spawn_wait: 'udisks-probe-ata-smart /dev/sdb' [2252] exit with return code 1
    udev_node_update_old_links: update old name, '/dev/disk/by-id/ata-SAMSUNG_HM100UZ_C5071E86AA22JN' no longer belonging to '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb'
    link_find_prioritized: found 'b8:16' claiming '/run/udev/links/disk\x2fby-id\x2fata-SAMSUNG_HM100UZ_C5071E86AA22JN'
    link_update: no reference left, remove '/dev/disk/by-id/ata-SAMSUNG_HM100UZ_C5071E86AA22JN'
    udev_node_update_old_links: update old name, '/dev/disk/by-id/wwn-0x50000f00aaeb0022' no longer belonging to '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb'
    link_find_prioritized: found 'b8:16' claiming '/run/udev/links/disk\x2fby-id\x2fwwn-0x50000f00aaeb0022'
    link_update: no reference left, remove '/dev/disk/by-id/wwn-0x50000f00aaeb0022'
    udev_node_add: handling device node '/dev/sdb', devnum=b8:16, mode=0660, uid=0, gid=6
    node_fixup: preserve permissions /dev/sdb, 060660, uid=0, gid=6
    node_symlink: preserve already existing symlink '/dev/block/8:16' to '../sdb'
    link_update: creating link '/dev/disk/by-id/usb-Samsung_S2_Portable_3_000000000000011E0A60-0:0' to '/dev/sdb'
    node_symlink: creating symlink '/dev/disk/by-id/usb-Samsung_S2_Portable_3_000000000000011E0A60-0:0' to '../../sdb'
    node_symlink: atomically replace '/dev/disk/by-id/usb-Samsung_S2_Portable_3_000000000000011E0A60-0:0'
    node_symlink: symlink '../../sdb' '/dev/disk/by-id/usb-Samsung_S2_Portable_3_000000000000011E0A60-0:0.udev-tmp' failed: Permission denied
    link_find_prioritized: found 'b8:16' claiming '/run/udev/links/disk\x2fby-path\x2fpci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0'
    link_update: creating link '/dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0' to '/dev/sdb'
    node_symlink: preserve already existing symlink '/dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0' to '../../sdb'
    udev_device_update_db: unable to create temporary db file '/run/udev/data/b8:16.tmp': Permission denied
    ACTION=add
    DEVLINKS=/dev/disk/by-id/usb-Samsung_S2_Portable_3_000000000000011E0A60-0:0 /dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    DEVNAME=/dev/sdb
    DEVPATH=/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb
    DEVTYPE=disk
    ID_BUS=usb
    ID_INSTANCE=0:0
    ID_MODEL=S2_Portable_3
    ID_MODEL_ENC=S2\x20Portable\x203\x20\x20\x20
    ID_MODEL_ID=60a6
    ID_PATH=pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    ID_PATH_TAG=pci-0000_00_1d_7-usb-0_1_1_0-scsi-0_0_0_0
    ID_REVISION=2AM1
    ID_SERIAL=Samsung_S2_Portable_3_000000000000011E0A60-0:0
    ID_SERIAL_SHORT=000000000000011E0A60
    ID_TYPE=disk
    ID_USB_DRIVER=usb-storage
    ID_USB_INTERFACES=:080650:
    ID_USB_INTERFACE_NUM=00
    ID_VENDOR=Samsung
    ID_VENDOR_ENC=Samsung\x20
    ID_VENDOR_ID=04e8
    MAJOR=8
    MINOR=16
    SUBSYSTEM=block
    UDEV_LOG=6
    UDISKS_PRESENTATION_NOPOLICY=0
    USEC_INITIALIZED=2063008397
    run: '/usr/local/bin/makebak.sh'
    builtin_kmod_exit: unload module index
    And executed as root:
    run_command: calling: test
    adm_test: version 180
    This program is for debugging only, it does not run any program,
    specified by a RUN key. It may show incorrect results, because
    some values may be different, or not available at a simulation run.
    builtin_kmod_init: load module index
    add_matching_files: unable to open '/run/udev/rules.d': No such file or directory
    parse_file: reading '/lib/udev/rules.d/10-dm.rules' as rules file
    parse_file: reading '/etc/udev/rules.d/10-local.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/11-dm-lvm.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/13-dm-disk.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/40-gphoto.rules' as rules file
    add_rule: IMPORT found builtin 'usb_id --export %p', replacing /lib/udev/rules.d/40-gphoto.rules:11
    parse_file: reading '/lib/udev/rules.d/42-qemu-usb.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/50-udev-default.rules' as rules file
    parse_file: reading '/lib/udev/rules.d/53-sane.rules' as rules file
    (... much more rules parsing ...)
    udev_rules_new: rules use 216120 bytes tokens (18010 * 12 bytes), 28505 bytes buffer
    udev_rules_new: temporary index used 52000 bytes (2600 * 20 bytes)
    udev_device_new_from_syspath: device 0x21816d0 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb'
    udev_device_new_from_syspath: device 0x2190de0 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb'
    udev_device_read_db: device 0x2190de0 filled with db file data
    udev_rules_apply_to_event: RUN '/usr/local/bin/makebak.sh' /etc/udev/rules.d/10-local.rules:1
    udev_device_new_from_syspath: device 0x2183490 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0'
    udev_device_new_from_syspath: device 0x2183c90 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0'
    udev_device_new_from_syspath: device 0x2184480 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16'
    udev_device_new_from_syspath: device 0x2184c60 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0'
    udev_device_new_from_syspath: device 0x2185420 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1'
    udev_device_new_from_syspath: device 0x2185c00 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2'
    udev_device_new_from_syspath: device 0x21863d0 has devpath '/devices/pci0000:00/0000:00:1d.7'
    udev_device_new_from_syspath: device 0x2186b70 has devpath '/devices/pci0000:00'
    udev_rules_apply_to_event: GROUP 6 /lib/udev/rules.d/50-udev-default.rules:67
    udev_rules_apply_to_event: IMPORT 'ata_id --export /dev/sdb' /lib/udev/rules.d/60-persistent-storage.rules:37
    udev_event_spawn: starting 'ata_id --export /dev/sdb'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_TYPE=disk'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_BUS=ata'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_MODEL=SAMSUNG_HM100UZ'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_MODEL_ENC=SAMSUNG\x20HM100UZ\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_REVISION=2AM10010'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_SERIAL=SAMSUNG_HM100UZ_C5071E86AA22JN'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_SERIAL_SHORT=C5071E86AA22JN'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_WRITE_CACHE=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_WRITE_CACHE_ENABLED=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_HPA=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_HPA_ENABLED=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_PM=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_PM_ENABLED=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_SECURITY=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_SECURITY_ENABLED=0'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=232'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_SECURITY_ENHANCED_ERASE_UNIT_MIN=232'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_SMART=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_SMART_ENABLED=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_AAM=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_AAM_ENABLED=0'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=254'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_PUIS=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_PUIS_ENABLED=0'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_APM=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_FEATURE_SET_APM_ENABLED=0'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_DOWNLOAD_MICROCODE=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_SATA=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_SATA_SIGNAL_RATE_GEN2=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_SATA_SIGNAL_RATE_GEN1=1'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_ATA_ROTATION_RATE_RPM=5400'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_WWN=0x50000f00aaeb0022'
    spawn_read: 'ata_id --export /dev/sdb'(out) 'ID_WWN_WITH_EXTENSION=0x50000f00aaeb0022'
    spawn_wait: 'ata_id --export /dev/sdb' [2273] exit with return code 0
    udev_rules_apply_to_event: LINK 'disk/by-id/ata-SAMSUNG_HM100UZ_C5071E86AA22JN' /lib/udev/rules.d/60-persistent-storage.rules:44
    udev_rules_apply_to_event: PROGRAM 'scsi_id --whitelisted --replace-whitespace -p0x80 -d /dev/sdb' /lib/udev/rules.d/60-persistent-storage.rules:52
    udev_event_spawn: starting 'scsi_id --whitelisted --replace-whitespace -p0x80 -d /dev/sdb'
    spawn_wait: 'scsi_id --whitelisted --replace-whitespace -p0x80 -d /dev/sdb' [2274] exit with return code 1
    udev_rules_apply_to_event: IMPORT builtin 'path_id' /lib/udev/rules.d/60-persistent-storage.rules:61
    udev_builtin_add_property: ID_PATH=pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    udev_builtin_add_property: ID_PATH_TAG=pci-0000_00_1d_7-usb-0_1_1_0-scsi-0_0_0_0
    udev_rules_apply_to_event: LINK 'disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0' /lib/udev/rules.d/60-persistent-storage.rules:62
    udev_rules_apply_to_event: IMPORT builtin 'blkid' /lib/udev/rules.d/60-persistent-storage.rules:76
    builtin_blkid: probe /dev/sdb raid offset=0
    udev_builtin_add_property: ID_PART_TABLE_TYPE=dos
    udev_rules_apply_to_event: LINK 'disk/by-id/wwn-0x50000f00aaeb0022' /lib/udev/rules.d/60-persistent-storage.rules:86
    udev_rules_apply_to_event: IMPORT 'udisks-part-id /dev/sdb' /lib/udev/rules.d/80-udisks.rules:88
    udev_event_spawn: starting 'udisks-part-id /dev/sdb'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'libudev: udev_device_new_from_syspath: device 0x1af8680 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb''
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'libudev: udev_device_read_db: device 0x1af8680 filled with db file data'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'using device_file=/dev/sdb syspath=/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb, offset=0 ao=0 and number=0 for /dev/sdb'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'Entering MS-DOS parser (offset=0, size=1000204886016)'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'MSDOS_MAGIC found'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'looking at part 0 (offset 1048576, size 524288000000, type 0x07)'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'new part entry'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'looking at part 1 (offset 524289048576, size 475915091968, type 0x83)'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'new part entry'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'looking at part 2 (offset 0, size 0, type 0x00)'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'new part entry'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'looking at part 3 (offset 0, size 0, type 0x00)'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'new part entry'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'Exiting MS-DOS parser'
    spawn_read: 'udisks-part-id /dev/sdb'(err) 'MSDOS partition table detected'
    spawn_read: 'udisks-part-id /dev/sdb'(out) 'UDISKS_PARTITION_TABLE=1'
    spawn_read: 'udisks-part-id /dev/sdb'(out) 'UDISKS_PARTITION_TABLE_SCHEME=mbr'
    spawn_read: 'udisks-part-id /dev/sdb'(out) 'UDISKS_PARTITION_TABLE_COUNT=2'
    spawn_wait: 'udisks-part-id /dev/sdb' [2276] exit with return code 0
    udev_rules_apply_to_event: IMPORT 'udisks-probe-ata-smart /dev/sdb' /lib/udev/rules.d/80-udisks.rules:115
    udev_event_spawn: starting 'udisks-probe-ata-smart /dev/sdb'
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(err) 'libudev: udev_device_new_from_syspath: device 0x25b2c90 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb''
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(err) 'libudev: udev_device_read_db: device 0x25b2c90 filled with db file data'
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(err) 'libudev: udev_device_new_from_syspath: device 0x25b5230 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0''
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(err) 'libudev: udev_device_new_from_syspath: device 0x25b5720 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0''
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(err) 'libudev: udev_device_new_from_syspath: device 0x25b5d40 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16''
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(err) 'libudev: udev_device_new_from_syspath: device 0x25b6350 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0''
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(err) 'libudev: udev_device_new_from_syspath: device 0x25b6940 has devpath '/devices/pci0000:00/0000:00:1d.7/usb2/2-1''
    spawn_read: 'udisks-probe-ata-smart /dev/sdb'(out) 'UDISKS_ATA_SMART_IS_AVAILABLE=1'
    spawn_wait: 'udisks-probe-ata-smart /dev/sdb' [2278] exit with return code 0
    udev_node_add: handling device node '/dev/sdb', devnum=b8:16, mode=0660, uid=0, gid=6
    node_fixup: preserve permissions /dev/sdb, 060660, uid=0, gid=6
    node_symlink: preserve already existing symlink '/dev/block/8:16' to '../sdb'
    link_find_prioritized: found 'b8:16' claiming '/run/udev/links/disk\x2fby-id\x2fata-SAMSUNG_HM100UZ_C5071E86AA22JN'
    link_update: creating link '/dev/disk/by-id/ata-SAMSUNG_HM100UZ_C5071E86AA22JN' to '/dev/sdb'
    node_symlink: preserve already existing symlink '/dev/disk/by-id/ata-SAMSUNG_HM100UZ_C5071E86AA22JN' to '../../sdb'
    link_find_prioritized: found 'b8:16' claiming '/run/udev/links/disk\x2fby-id\x2fwwn-0x50000f00aaeb0022'
    link_update: creating link '/dev/disk/by-id/wwn-0x50000f00aaeb0022' to '/dev/sdb'
    node_symlink: preserve already existing symlink '/dev/disk/by-id/wwn-0x50000f00aaeb0022' to '../../sdb'
    link_find_prioritized: found 'b8:16' claiming '/run/udev/links/disk\x2fby-path\x2fpci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0'
    link_update: creating link '/dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0' to '/dev/sdb'
    node_symlink: preserve already existing symlink '/dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0' to '../../sdb'
    udev_device_update_db: created db file '/run/udev/data/b8:16' for '/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb'
    ACTION=add
    DEVLINKS=/dev/disk/by-id/ata-SAMSUNG_HM100UZ_C5071E86AA22JN /dev/disk/by-id/wwn-0x50000f00aaeb0022 /dev/disk/by-path/pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    DEVNAME=/dev/sdb
    DEVPATH=/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host16/target16:0:0/16:0:0:0/block/sdb
    DEVTYPE=disk
    ID_ATA=1
    ID_ATA_DOWNLOAD_MICROCODE=1
    ID_ATA_FEATURE_SET_AAM=1
    ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0
    ID_ATA_FEATURE_SET_AAM_ENABLED=0
    ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=254
    ID_ATA_FEATURE_SET_APM=1
    ID_ATA_FEATURE_SET_APM_ENABLED=0
    ID_ATA_FEATURE_SET_HPA=1
    ID_ATA_FEATURE_SET_HPA_ENABLED=1
    ID_ATA_FEATURE_SET_PM=1
    ID_ATA_FEATURE_SET_PM_ENABLED=1
    ID_ATA_FEATURE_SET_PUIS=1
    ID_ATA_FEATURE_SET_PUIS_ENABLED=0
    ID_ATA_FEATURE_SET_SECURITY=1
    ID_ATA_FEATURE_SET_SECURITY_ENABLED=0
    ID_ATA_FEATURE_SET_SECURITY_ENHANCED_ERASE_UNIT_MIN=232
    ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=232
    ID_ATA_FEATURE_SET_SMART=1
    ID_ATA_FEATURE_SET_SMART_ENABLED=1
    ID_ATA_ROTATION_RATE_RPM=5400
    ID_ATA_SATA=1
    ID_ATA_SATA_SIGNAL_RATE_GEN1=1
    ID_ATA_SATA_SIGNAL_RATE_GEN2=1
    ID_ATA_WRITE_CACHE=1
    ID_ATA_WRITE_CACHE_ENABLED=1
    ID_BUS=ata
    ID_MODEL=SAMSUNG_HM100UZ
    ID_MODEL_ENC=SAMSUNG\x20HM100UZ\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20
    ID_PART_TABLE_TYPE=dos
    ID_PATH=pci-0000:00:1d.7-usb-0:1:1.0-scsi-0:0:0:0
    ID_PATH_TAG=pci-0000_00_1d_7-usb-0_1_1_0-scsi-0_0_0_0
    ID_REVISION=2AM10010
    ID_SERIAL=SAMSUNG_HM100UZ_C5071E86AA22JN
    ID_SERIAL_SHORT=C5071E86AA22JN
    ID_TYPE=disk
    ID_WWN=0x50000f00aaeb0022
    ID_WWN_WITH_EXTENSION=0x50000f00aaeb0022
    MAJOR=8
    MINOR=16
    SUBSYSTEM=block
    UDEV_LOG=6
    UDISKS_ATA_SMART_IS_AVAILABLE=1
    UDISKS_PARTITION_TABLE=1
    UDISKS_PARTITION_TABLE_COUNT=2
    UDISKS_PARTITION_TABLE_SCHEME=mbr
    UDISKS_PRESENTATION_NOPOLICY=0
    USEC_INITIALIZED=2063008397
    run: '/usr/local/bin/makebak.sh'
    builtin_kmod_exit: unload module index
    Does anyone know what the problem could be (and the solution)?
    Thanks in advance!

    Sure, a loop that waits up to a certain number of seconds for you to mount the device is far more preferrable. Something like...
    #!/bin/bash
    # max time to wait
    timeout=60
    # label of device to wait for
    devlabel=blackhole
    # where to look for it
    devmount=/mnt/backup
    dev_mounted() {
    mountpoint -q "$devmount" &&
    [[ $(findmnt -runo LABEL "$devmount") = "$devlabel" ]]
    if ! dev_mounted; then
    printf "==> Waiting %s seconds for %s to be mounted on %s" "$devlabel" "$devmount"
    until dev_mounted; do
    sleep 1
    if (( --timeout == 0 )); then
    print "==> ERROR: device didn't show up after %s seconds!\n" "$timeout"
    exit 1
    fi
    done
    fi
    # do backup stuff here...

  • I could not pair my bluetooth device with my ipad mini retina display. Is there anyone facing the same problem?

    I could not pair my bluetooth device with my ipad mini retina display.
    My ipad could not detect the bluetooth device. I do not facing this problem with my iphone and my older ipad on the same bluetooth device.Is there anyone facing the same problem?

    Yes I tried pairing with my bluetooth car hands-free set - Not discoverable.
    I tried to pair with my bluetooth headset - Also not discoverable.
    I have no problem with my other apple products my older ipad2 and my current iphone5.
    Just this ipad mini retina display could not discover the above bluetooth device.
    Any idea on how to solve this? Thnaks.

  • After updating to 8.1 unable to play audio via bluetooth devices!

    While ysing windows 8, i had no such problem. but after i updated it, i am unable to play music via bluetooth devices. sometimes it gives error message "DRIVER ERROR", while other time it gives no error message while it doesn't work. What should i do to check it??

    Hi karankishore007,
    Welcome to the HPCommunity, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I will be happy to help with your Bluetooth issue but I will need some additional information. What is the product number for your notebook? When you check under your Device Manager what do you have listed under Bluetooth or Network Adapters for Bluetooth?
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • HT204378 2 iOS8.1.1 devices can't connect via BT "Using Keynote Remote with Bluetooth" - HT6112

    I'm unable to get to iOS devices to connect via Bluetooth for Keynote control.  It's described above under the heading "Using Keynote Remote with Bluetooth".  Am I missing something?  I see the article mentions iOS8 so I know it's been updated recently.   I also see that this hasn't worked in the past.  Curious that the articles suggests it can be done now.
    I have 3 iOS devices all 8.1.1.
    iPhone 5
    iPhone 5s
    iPad 3rd Gen
    Thanks,
    Russell

    Just talked to Bose and learned the solution.
    Reset the speaker ....hold down the bluetooth button until you hear a tone. Delete the Bose in the Bluetooth Device directory on the iPad. When it is automatically rediscovered it will connect.
    Worked for me .....

Maybe you are looking for

  • Calling a method in acrobat plugin as COM obj method

    Hi all, I want to call a method from my acrobat plugin as a COM objects method. Can i import i.e. add reference of plugin and call the perticular method which accepts two PDDoc parameters. For this I can use any platform (JS, C#, VB.net or anything).

  • BAPI_ACC_PURCHASE_ORDER_CHECK

    Hi, How can the bapi BAPI_ACC_PURCHASE_ORDER_CHECK can help to check if funds reservation data (earmarked fund) from a purchase order item, can be posted. Thanks, Eyal.

  • Can't install Outlook conector

    Hi I get this error when trying to install the Outlook conector. (win XP with Outlook 2003) 2:00:39 [5179] Trying to login to shared session. 22:00:39 ERROR: [5501] Unable to find MAPI directory. 22:00:39 No directory "C:\Program files\common files\S

  • How to find webitem & Templete in RSA1 which in installed from BC

    Hi, All BW Gurus, here i have installed some Webitem and templeted from Business content. and try to see it in reporting agent in RSA1 transaction. and also try to see it in BEx Web application designer but not seen any where. Templettes: 0TPL_BUA_PC

  • Registering DB in Recovery Catalog

    how i can register DBs in Recovery Catalog, send commands plz