UBports Installer
This tool is still under development, bugreports are appreciated.
How to install
Linux:
Snap:
- Open a terminal
- Run
sudo snap install ubports-installer --edge --devmodeto install - Run
ubports-installeror select the icon in your application list to start the program
Deb:
- Download the latest deb from https://github.com/ubports/ubports-installer/releases
- Open the deb package with your software installation tool and follow the on-screen instructions
- Launch the program from your application list.
Appimage:
- Download the latest Appimage from https://github.com/ubports/ubports-installer/releases
- Make the AppImage executable
- Then run the file by double-clicking
Mac
- Download the latest dmg file from https://github.com/ubports/ubports-installer/releases
- Open the file and follow the onscreen instructions.
- Launch the program from the application list.
Windows
- Download the latest exe file from https://github.com/ubports/ubports-installer/releases
- Open the file and follow the onscreen instructions
- Launch the program from your application list.
You might have to install the windows/android/adb drivers required for your device.
How to run the program from source
git clone https://github.com/ubports/ubports-installer.git
cd ubports-installer
./setup-dev.sh
How to start GUI
npm start
How to use CLI
Please note that the command line interface was created for testing purposes only and does not necessarily try to be user-friendly.
$ ./cli.js
Usage: cli [options]
Options:
-h, --help output usage information
-V, --version output the version number
-d, --device <device> Specify device
-c, --channel <channel> Specify channel (default: ubuntu-touch/stable)
-v, --verbose Verbose output
-b, --bootstrap Flash boot and recovery from bootloader
Troubleshooting
Prerequisites: udev rules:
- See if cat
/etc/udev/rules.d/51-android.rulesexists and contains the following rules:
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0e79", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0502", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0b05", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="413c", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0489", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="091e", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="18d1", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="12d1", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="24e3", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="2116", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0482", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="17ef", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="1004", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="22b8", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0409", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="2080", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0955", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="2257", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="10a9", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="1d4d", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0471", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="04da", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="05c6", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="1f53", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="04e8", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="04dd", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fce", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0930", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="19d2", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTRS{idVendor}=="2ae5", MODE="0666", GROUP="plugdev"
2a. If this file does not exist or has not all the rules inside, create it as su or add accordingly.
2b. Also check if other files contain similar rules
3. Restart udev daemon by issuing sudo service udev restart