Thursday, September 21, 2017
Ubuntu Edge
Ubuntu Edge
Ubuntu Edge | Apple iPhone 5 | Samsung Galaxy S4 | |
---|---|---|---|
Mobile OS | Dual-boots Android and Ubuntu mobile | iOS | Android |
Desktop OS | Ubuntu Desktop | No | No |
RAM | 4GB | 1GB | 2GB |
Internal storage | 128GB | 64GB | 16GB |
Screen | 720 x 1,280, 4.5 inches | 640 x 1,136, 4 inches | 1,080 x 1,920, 5 inches |
Protection | Sapphire Glass | Corning Gorilla Glass | Corning Gorilla Glass 3 |
Connectivity | Dual-LTE, GSM | LTE, GSM | LTE, GSM |
Speakers | Stereo | Mono | Mono |
Battery | Silicon-anode Li-ion | Li-ion | Li-ion |
Price | $695 | $849* | $750** |
�If youre not living on the edge, youre taking up too much room. Say hello to the Ubuntu Edge, the first smartphone to use open-source Ubuntu Touch software as well as Android�� CNET
�By this time next year, there could very well be one very elegant looking, monstrously powerful smartphone that can actually become a computer�� Silicon Angle
�In case you haven�t been following the story, the Edge is an awfully handsome concept for a phone that will run Ubuntu and Android�� TechCrunch
�Apparently the Ubuntu community is nuts about this idea. Within just under eight hours... some $2 million in donations to the project have flooded in, making it whats said to be the fastest and thus perhaps most successful crowdfunding effort ever seen�� Fast Company
We�ve scoured the research labs of the biggest companies and most exciting startups for the latest and greatest mobile technologies to specify the first-generation Edge.
- Dual boot Ubuntu mobile OS and Android
- Fully integrated Ubuntu desktop PC when docked
- Fastest multi-core CPU, 4GB RAM, 128GB storage
- Micro-SIM
- 4.5in 1,280 x 720 HD sapphire crystal display
- 8mp low-light rear camera, 2mp front camera
- Dual-LTE, dual-band 802.11n Wi-Fi, Bluetooth 4, NFC
- GPS, accelerometer, gyro, proximity sensor, compass, barometer
- Stereo speakers with HD audio, dual-mic recording, Active Noise Cancellation
- 11-pin connector providing simultaneous MHL and USB OTG
- 3.5mm jack
- Silicon-anode Li-Ion battery
- 64 x 9 x 124mm
download file now
Sunday, August 27, 2017
Ubuntu Logitech diNovo Edge Bluetooth Wireless Keyboard Part 2
Ubuntu Logitech diNovo Edge Bluetooth Wireless Keyboard Part 2
I reported on problems with Ubuntu Logitech diNovo Edge Bluetooth Wireless Keyboard, and now in Ubuntu 11.10 Oneiric and Ubuntu 12.04 Precise the problem resurfaces each time you do a fresh install or Distribution Upgrade. But the solution is slightly different than before.
Update: The problem appears in Ubuntu/Kubuntu 12.04 Precise also, but the solution is the same.
This solution is using for the Logitech diNovo Edge in Ubuntu/Kubuntu. Symptoms are the bluetooth-device-manager kept prompting me to connect to the device but nothing I did ever worked.
Here is the solution / fix for getting the keyword to work. The source for this information is here.
The problem is in the udev rules. In 11.04 there was a special line in /lib/udev/rules.d/70-hid2hci.rules for Logitech devices that started with KERNEL=="hidraw*".
These seem to be missing in default configurations. This fix adds this line into another file instead which makes things work.
Edit the file: /lib/udev/rules.d/##-bluez-hid2hci.rules (where the ## is the number on your system. Just search for the keywords bluez-hid2hci.rules in the /lib/udev/rules.d/ directory. For example, on my system in Ubuntu 11.10 it was number 62 and on Ubuntu 12.04 is was 97.)
download file now
Wednesday, August 16, 2017
Ubuntu Logitech diNovo Edge Bluetooth Wireless Keyboard
Ubuntu Logitech diNovo Edge Bluetooth Wireless Keyboard
I use the Logitech diNovo Edge in Ubuntu/Kubuntu and I love it. When I installed Kubuntu 10.04 Lucid, this wireless keyboard failed to work. The bluetooth device manager kept prompting me to connect and pair the device with a PIN but nothing I did ever worked.
UPDATE/EDIT: This problem has been reported in version dating from 10.04 to 11.04. This solution works for those, but there is a slightly different solution for 11.10.
Here is the solution / fix for getting the keyword to work. The source for this information is here.
Edit the file: /lib/udev/rules.d/70-hid2hci.rules
(If you need help editing a file, see bottom section.)
Change this line:
# Logitech devices
KERNEL=="hiddev*", ATTRS{idVendor}=="046d" , ATTRS{idProduct }=="c70[ 345abce] |c71[34bc] ",
RUN+="hid2hci --method=logitech- hid --devpath=%p"
to
KERNEL=="hidraw*", ATTRS{idVendor}=="046d" , ATTRS{idProduct }=="c70[ 345abce] |c71[34bc] ",
RUN+="hid2hci --method=logitech- hid --devpath=%p"
I have made the changed sections BOLD. I also turned bluetooth off from the icon in the system tray.
After making this change, I turned on my wireless keyboard, unplugged its bluetooth dongle, plugged it back in, paired the keyword with the dongle, and a few seconds later it worked. I did not even have to reboot.
HOW TO EDIT THE FILE (for those who need help with this stage)
New users to Linux may have trouble editing text files at first. Ill try to be simple, and this guide is for people using Gnome or KDE.
The simplest way is using a user friendly program. In Gnome (which is normal Ubuntu), the default text editor is gedit. In KDE (in Kubuntu) it is Kate. Also, this is a protected system file, so you need to use special Administrator privileges before you can edit it. Dont worry. This is simply.
KDEIn KDE, you need to find the "Run Command" option the Application menu. (The App menu is usually in the lower left-hand corner, with a colorful K-button.) In KDE4s new menu style, the "Run Command" is (currently) under the Computer section, near the top of the small list. Find the option and click it.
In the input box that displays, copy/paste the this command into it and press enter:kdesu kate /lib/udev/rules.d/70-hid2hci.rules
The kdesu program tells the system you want to run the text editor (kate) with Admin access. You will be prompted for your individual user password, which you enter. Then kate should open with a file ready for you. (This is the /lib/udev/rules.d/70-hid2hci.rules file which we told kate to open for us.) If this file does not open, you can open it manually by going to menu File -> Open... and then navigating to the / root directory, down to lib and so on until you find the file 70-hid2hci.rules.
Edit the file as directed earlier in this article. Save the file, close the file (menu File -> Close), and then finally exit Kate.
GNOME
In the input command window that displays, copy/paste the this command into it and press enter:
gksu gedit /lib/udev/rules.d/70-hid2hci.rules
The gksu tells the system you want to run the text editor (gedit) with Admin access. You will be prompted for your individual user password, which you enter. Then gedit should open with a file ready for you. (This is the /lib/udev/rules.d/70-hid2hci.rules file which we told gedit to open for us.) If this file does not open, you can open it manually by going to menu File -> Open... and then navigating to the / root directory, down to lib and so on until you find the file 70-hid2hci.rules.
Edit the file as directed earlier in this article. Save the file, close the file (menu File -> Close), and then finally exit gedit. You can close the Terminal also.
Hope that helps.
download file now
Saturday, August 5, 2017
Troubleshooting Lync Edge 101
Troubleshooting Lync Edge 101
We installed a "simple" Lync Edge system with collocated Front-End and Mediation server and Enterprise Voice connected to the PSTN via a Nortel CS1000 PBX.

- Internal DNS
- External DNS
- Routing on the EdgeServer
- Internal Certificate
- External Certificate
- Public IP addresses
- Primary DNS suffix on the EdgeServer
- Open ports on the Internal Firewall
- Open ports on the External Firewall
- The mediation server to find the PBX
- The PBX with a SIP Trunk
- The topology, exported it and imported it on the EdgeServer
- Users with external access, enterprise voice and a valid line URI
- A Voice Policy, PSTN Usage and Route
- Automatic login internally and externally
download file now
Change this line:
to
I have made the changed sections BOLD. Save the changes to the file. I also turned bluetooth off from the icon in the system tray.
After making this change, I turned on my wireless keyboard, unplugged its bluetooth dongle, plugged it back in, paired the keyword with the dongle, and a few seconds later it worked. I did not even have to reboot.
IF YOU NEED HELP EDITING CONFIGURATION FILES UNDER LINUX, please see this link: http://awesomelinux.blogspot.com/2010/09/how-to-edit-configuration-file.html