-
On Fedora 20, as root:
yum install bluetoothctl
-
Insert bluetooth adapter.
-
At a termninal, run:
bluetoothctl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| usage () | |
| { | |
| echo "Usage: $0 newbranchname" | |
| echo "Example: $0 jbosstools-4.1.0.Alpha1" | |
| exit 1; | |
| } | |
| if [[ $# -lt 1 ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GITUSER=nickboldt | |
| for d in `git branch -a`; do | |
| # list only /remotes/GITUSER branches, then remove all but the jbosstools-* official ones | |
| if [[ ! ${d%%*remotes/${GITUSER}/*} ]] && [[ ${d%%*remotes/${GITUSER}/jbosstools-*} ]]; then | |
| echo "${d/remotes\/${GITUSER}\//} ..." | |
| git push ${GITUSER} :${d/remotes\/${GITUSER}\//} | |
| fi | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| usage () | |
| { | |
| echo "Usage: $0 /path/to/jbdevstudio-product-universal-*.jar [/path/to/jre/bin/java]" | |
| echo "" | |
| echo "Usage: $0 /tmp/jbdevstudio-product-universal-8.0.0.GA-v20140720-0044-B420.jar" | |
| echo "Usage: $0 /tmp/jbdevstudio-product-universal-8.0.0.GA-v20140720-0044-B420.jar /usr/bin/java" | |
| echo "" | |
| exit 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # quick way to get jbosstools or jbdevstudio unified target into your ~/.m2 folder without having to build it locally: | |
| VERSION=4.31.0.Alpha2-SNAPSHOT | |
| PROJECT=jbosstools | |
| # get the zip + unpack it | |
| cd /tmp/ | |
| wget http://download.jboss.org/${PROJECT}/targetplatforms/${PROJECT}target/${VERSION}/${PROJECT}target-${VERSION}.zip | |
| unzip ${PROJECT}target-${VERSION}.zip -d ${PROJECT}target-${VERSION} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| usage () | |
| { | |
| echo "Usage 1: $0 -s user@server:/path/ path/to/rsync path2/to/rsync path3/to/rsync ..." | |
| echo " $0 -s user@server:/path/to/devstudio/ updates/7.0/devstudio-directory.xml" | |
| echo "Usage 2: $0 -s user@server:/path/to/jbosstools/ -dirty" | |
| echo " -dirty flag will push all files listed with 'git status -s' to specified server" | |
| exit 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| usage () | |
| { | |
| echo "Usage: $0 \"/path/to/some zipfile.zip\"" | |
| echo "" | |
| exit 1; | |
| } | |
| if [[ $# -lt 1 ]]; then usage; fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # set working folder | |
| WORKSPACE=/tmp | |
| cd ${WORKSPACE} | |
| # set path to JBoss Developer Studio install folder | |
| JBDS=${HOME}/jbdevstudio7.1.1.GA/studio | |
| # set path to JBDS IS update site zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| usage () | |
| { | |
| echo "Usage: $0 <URL for topic branch or PR>" | |
| echo "Example 1: $0 https://github.com/robstryker/jbosstools-server/tree/integration_tests" | |
| echo "Example 2: $0 https://github.com/jbdevstudio/jbdevstudio-devdoc/pull/118" | |
| exit 1; | |
| } |
Drivers on website [1] are the same version as those on the CD (website last updated Oct 12 2014, CD received in Dec 2014): Broadcom BCM20702 Bluetooth 4.0 USB Device, driver version 12.0.0.8030.
Had to install twice - first time wasn’t prompted to reboot, so nothing worked. Upon reboot, device worked perfectly & connected easily.
HOWEVER, Windows uninstalled my Intel BT drivers, so when I wanted to switch back to my built-in bluetooth driver (Intel® PROSet/Wireless Software for Bluetooth® Technology) I had to reinstall that, which in turn disabled the Inateck device (Broadcom) in Device Manager > Bluetooth.