Skip to main content

Posts

Installing BlackBerry Playbook Simulator 2.1 fails on Ubuntu 16.04 64-bit

Tried to install BlackBerry Play Simulator 2.1 on Ubuntu 16.04 64-bit but it fails with error message below. sudo ./installer-bbndk-2.1.0-linux-1032-201209271809-201209280007.bin Preparing to install... Extracting the JRE from the installer archive... Unpacking the JRE... Extracting the installation resources from the installer archive... Configuring the installer for this system's environment... Launching installer... ./installer-bbndk-2.1.0-linux-1032-201209271809-201209280007.bin: 3320: exec: /tmp/install.dir.3056/Linux/resource/jre/bin/java: not found The installation is failing because it has dependencies to 32-bit libraries. To fix it, do: $ sudo dpkg --add-architecture i386 $ sudo apt install libc6:i386 $ sudo ./installer-bbndk-2.1.0-linux-1032-201209271809-201209280007.bin Installation should now complete but the IDE will not be working. Next post details how to fix it. Follow-up post is here .

Installing VMware Workstation Professional VMware Tools in Ubuntu 16.04

It is good practice to get the latest updates before installing VMware Tools. Open terminal and run the following: $ sudo apt update $ sudo apt upgrade $ sudo reboot If the update needs to upgrade the kernel, it is a good idea to reboot the machine before installing the tools so that we are compiling against the correct kernel. From VMware Workstation menu, do VM | Install VMware Tools... . $ mount cdrom $ mkdir ~/tmp $ tar -xvzf /media/u1/VMware\ Tools/VMwareTools-9.9.5-3735633.tar.gz -C ~/tmp $ cd ~/tmp/vmware-tools-distrib/ $ sudo ./vmware-install.pl -d $ eject $ sudo reboot Where: u1 = is the username, replace it with your username VMwareTools-9.9.5-3735633.tar.gz = version of VMware Tools in the ISO, change it with what's in /media/<user>/VMware Tools/ .

How to determine BlackBerry PlayBook Simulator IP address

Click on user icon, a popup dialog will show up and show the IP address.

Windows 10 Task Manager not updating

This is probably my silly mistake but it took me a while to figure out why it is not updating - it was paused!!! Did I do it? Maybe... but could be Windows just deciding to pause it. Anyway, un-pause it like as shown below. Reference: http://www.tenforums.com/performance-maintenance/31047-task-manager-not-updating.html

How to remove floppy icon in Ubuntu 16.04 running on VMware Workstation 11

Even when the floppy hardware is removed from the VM configuration of a Ubuntu guest under VMware Workstation 11, the icon for floppy disk drive still shows up in the Launcher . To fix this  you need to disable Legacy Diskette A in the virtual BIOS of the guest. An easy way to boot to the virtual BIOS is to shutdown the VM, then select VM | Power | Power On to Firmware . Then change Legacy Diskette A: to [Disabled], F10  to save and exit. This should reboot the machine. References: https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1004129 https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1034616 https://communities.vmware.com/thread/449235?start=0&tstart=0

What is 169.254.x.x IPv4 address?

169.254.x.x is a link-local IP address that gets assigned automatically when, generally, DHCP is not available. On Windows operating system, this is called APIPA (Automatic Private IP Addressing). RFC 3927 defines the 169.254.0.0/16 address block for use in the link-local assignments. Note that routers are not supposed to route traffic from this address block. Reference: https://en.wikipedia.org/wiki/Link-local_address