Установка Ubuntu Touch¶
Встановити Ubuntu Touch дуже просто, і було зроблено багато роботи, щоб процес встановлення був менш складним для пересічного користувача. UBports Installer — це зручний графічний інструмент, за допомогою якого можна встановити Ubuntu Touch на підтримуваний пристрій зі свого комп’ютера Linux, Mac або Windows. Для більш досвідчених користувачів ми також маємо інструкції з ручної інсталяції для кожного пристрою на сторінці пристроїв.
Попередження
Якщо Ви переходите з пристрою на базі Android, Ви не зможете зберегти дані, які зараз є на цьому пристрої. Якщо бажаєте їх зберегти, створіть зовнішню резервну копію.
You can Download the UBports Installer from GitHub. The following packages are available:
Windows:
ubports-installer-<version-number>.exemacOS:
ubports-installer-<version-number>.dmgUbuntu or Debian:
ubports-installer-<version-number>.debOther Linux distributions (snap):
ubports-installer-<version-number>.snapOther Linux distributions (AppImage):
ubports-installer-<version-number>.AppImage
Start the installer and follow the on-screen instructions that will walk you through the installation process. That’s it! Have fun exploring Ubuntu Touch!
If you’re an experienced android developer and want to help us bring Ubuntu Touch to more devices, visit the porting section.
Примітка
Please do not start the installer with sudo. It is meant to be run as a normal user, not as root. Using the installer with sudo will mess up permissions in the installer’s cached files and lead to problems down the road. If the installer does not recognize your device, check the troubleshooting information below.
Troubleshooting¶
If you need help, you can join UBports“ support channels on telegram or matrix or ask a question in the forum or on askubuntu. If you believe that the UBports Installer is not working correctly, you can also file a new issue to help us solve the problem.
Connection lost during installation¶
Try a different USB cable and a different USB port on your computer. Cheap and old cables tend to lose connection during the installation.
Windows Defender prevents Installer from starting¶
We have contacted Microsoft about this problem, but they seem to think it’s enjoyable. To dismiss the warning, click on «More Information», then select «Run anyway».
Device not detected¶
Virtual Machine¶
If you’re running the installer in a virtual machine, make sure the virtual machine is allowed to access the USB port.
Windows ADB drivers¶
Install the universal adb driver and reboot your computer.
Fairphone 2 Vendor-ID¶
Run echo 0x2ae5 >> ~/.android/adb_usb.ini in the terminal and restart the installer. This does not affect the snap package.
Missing udev-rules¶
If the device is not detected on Linux and you are not using the snap package, then you might be missing some udev-rules.
See if
/etc/udev/rules.d/51-android.rulesexists and contains the rules below. If not, add them to the file and runsudo service udev restartorsudo udevadm control --reload-rules && udevadm trigger.
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"
SUBSYSTEM=="usb", ATTRS{idVendor}=="2a45", MODE="0666", GROUP="plugdev"
Other issues¶
If the troubleshooting tips do not work, you might also try following the manual installation instructions for your device on the devices page.