Android from usb stick

Работа с устройствами USB в Android

В недавней статье на Geektimes в комментариях возник вопрос о поддержке в ОС Android периферии, подключенной к шине USB. Действительно, большинство вендорского ПО, к примеру, для работы с принтерами и МФУ, поддерживает только подключение по сети. Однако это не означает, что в самой ОС Android нет такой возможности — это означает лишь то, что большинство устройств не имеют полноценного USB хоста, и далеко не все имеют поддержку OTG. По сети же могут работать абсолютно все без исключения.

Большинство устройств на Android при наличии порта OTG поддерживают на уровне системы (ядра Linux или стандартных компонентов Android) следующие классы устройств:

  • Устройства ввода — клавиатуры, мыши, джойстики (HID)
  • Накопители (Mass Storage)

Несколько реже:

  • Сотовые модемы
  • Сетевые адаптеры
  • Вебкамеры

Хабы поддерживаются при наличии полноценных хост-портов, но не поддерживаются на портах OTG.

Подробнее список устройств, поддерживаемых на уровне ядра Linux, можно получить в sysfs:

$ ls /sys/bus/usb/drivers

Если же модуль в принципе доступен в исходниках ядра Linux, но не включен в Android — не стоит рассчитывать на то, что его получится собрать и расставить на все целевые системы.

Однако, начиная с Android 3.1 (API 12), в системе содержатся средства, достаточные для поддержки на уровне приложения любой USB периферии. Данные средства описаны в разделе USB Host руководства по Android API. Здесь же я хочу привести примеры реальной работы с некоторыми видами устройств.

Права доступа

Как и для прочих действий, Android требует, чтобы приложение получило разрешение на доступ к USB периферии. Существует 2 способа получить такое разрешение:

  • Задекларировать список устройств в AndroidManifest
  • Явно показать пользователю диалог “разрешить”

Поскольку для моих задач лишние вопросы к пользователю были нежелательны, я использовал первый способ.

Итак, нам необходимо добавить в манифест следующее:

А в res/xml/device_filter.xml вписать следующее:

Отмечу, что хотя общепринято указывать VID:PID в 16-ричной системе счисления, здесь они должны быть указаны в десятичной. В документации заявляется, что возможно указание только класса, без VID и PID, но у меня это не стало работать.

Принтеры

На примере принтера я покажу, как непосредственно использовать API android.hardware.usb. На уровне передачи данных все принтеры поддерживают стандартый класс USB устройств:

Класс предельно простой. В рамках этого класса устройство должно поддерживать:

  • Обязательный bulk out endpoind для отправки данных на принтер
  • Опциональный bulk in endpoind для получения статуса принтера
  • 3 управляющих запроса

Код, приведенный ниже, предоставляет функциональность, аналогичную устройству /dev/usb/lp в Linux. Далее нам нужен фильтр, преобразующий исходный документ в пакет данных, понятный конкретной модели принтера. Но это тема иной статьи. Как один из вариантов — можно собрать ghostscript с помощью NDK.

Для работы с устройством нам в первую очередь нужно:

1. Найти устройство. В примере для простоты я ищу первый попавшийся:

2. Получить endpoint’ы:

3. Непосредсвенно открыть устройство:

4. После этого мы можем читать и писать в устройство:

5. По завершении работы — закрыть устройство:

Преобразователи USB-Serial

В отличие от притеров, преобразователи USB-Serial гораздо менее стандартизированы. Существует несколько распространенных чипов, для которых существенно отличается установка параметров последовательного порта — битрейта, чётности и проч. К счастью, есть библиотека github.com/mik3y/usb-serial-for-android, поддерживающая практически все существующие чипы. Библиотека полностью скрывает USB API, сводя все необходимые действия к минимуму вызовов с минимумом параметров.

Читайте также:  Unity переустановка android sdk

1. Найти и открыть устройство:

2. Установить параметры последовательного порта:

3. Читать и писать в порт:

4. По завершении работы — закрыть порт:

Резюме

Надеюсь, что мне удалось показать, что работа с USB периферией достаточно проста и логична. Безусловно, реализация протоколов некоторых конкретных устройств не блещет простотой — но это проявится в любой системе в одинаковой степени.

Все приведенные примеры я взял из реального проекта, лишь исключил очевидные проверки, оставив только ключевые строки.

Источник

How to Create an Android USB Drive

Run a version of Android on your computer with Android x86

This article describes how to create and run a bootable Android USB drive that allows you to use Android on a desktop computer.

Download Android x86

The Android x86 project allows an older version of Android to run as an emulator on desktop-class hardware. The software from this site isn’t always in perfect sync with Google’s Android releases. Android x86 isn’t an official Google product and, therefore, requires time to port.

Visit the Android x86 download page to find a list of available downloads.

Look for the latest Android ISO files. Depending on the computer you use the Android USB on, choose between the 64-bit and 32-bit files. Most of the time, you’ll want the 64-bit file.

The latest releases are located at the top of the page. Don’t worry about the CM release numbers.

Select the latest ISO. You’re taken to a different page to download it.

Save the ISO file. Don’t do anything else with it yet.

Download Etcher

There are several ways to write a disk image to a USB drive. The complexity of these varies, and it can be easy to write the image to the wrong place. We recommend the free, open source balenaEtcher. It works on Windows, Mac, and Linux, so you can make your Android USB on any computer.

In a web browser, go to the balenaEtcher home page.

Look for the green button to download Etcher. Make sure that the text in the button says that the download is for your operating system. If not, select the drop-down arrow to the right of the button.

The download should only take a few seconds to complete.

Depending on the operating system, the install will vary. Windows users will have an EXE to run and install. The Mac version comes in a DMG. Linux users will find an AppImage to run from the downloaded directory.

Write Android to the USB

You now have everything that you need to write the Android ISO image to a USB drive. You’ll use balenaEtcher to accomplish this, and your USB will work on nearly every computer when you’re done.

Insert the USB drive into your computer.

Look for where the USB is mounted. This step is critical. You must write to the correct drive; otherwise, you could overwrite data on another drive.

Open Etcher. On Windows and Mac, it is in the list of applications. On Linux, launch the AppImage that you downloaded.

Etcher offers a simple interface that’s divided into three columns. Go to the first column and select the Android ISO file.

In the second column, select the USB drive.

When you’re certain that everything’s right, select Flash to write the ISO to the USB.

This process erases everything on the USB, so make backups before you flash.

Читайте также:  Лучшие шахматные приложения для iOS и Android

The Etcher screen switches to show the progress in writing the USB drive.

When Etcher is done, the screen displays a message that the image was successfully written to the USB.

Remove the USB drive and use it anywhere you choose.

Boot into the USB

In most cases, you’ll be able to boot into the USB fairly easily. If you know your computer’s boot-menu hotkey, press it while the computer boots, and select the USB to boot from.

Источник

How to access USB stick or the Android file system? #95

Comments

mhofert commented Jan 11, 2014

I started working with Linux Deploy (Ubuntu 13.10 on Android 4.4.2 [Nexus 5]) and I like it a lot so far. I am wondering how one can transfer files from Ubuntu to the Android file system and the other way round? This would be very important for using Ubuntu under Android for real work. I also connected the phone to a USB stick but /media/. does not show any media. It’s somehow clear, since Ubuntu runs inside an image, but is there really no way to access the Android file system? the only possibility which remains in this case, would be to upload all your data to a server and download it from within Ubuntu. but that’s very tedious.

PS: Although it also runs Ubuntu inside an image, with the ‘Complete Linux Installer’ app one can access the Android file system. From within Ubuntu, go to /root/Desktop/sdcard (which accesses /sdcard on Android). With ‘sudo su’ I can change to /root, but it only shows some dot-files 🙁

The text was updated successfully, but these errors were encountered:

sunaku commented Jan 11, 2014

Yes, this is possible. ✨ You just need to enable «Custom mounts» and set up the proper «Mount points» in the properties (the download arrow button in LinuxDeploy) of your LinuxDeploy image.

For example, I added /data/media/0 in the «Mount points» list to make LinuxDeploy mount my SD card from Android into my chroot’ed Linux as /mnt/0 . Then, I can access /mnt/0 from my chroot’ed Linux. Any changes made there will be immediately available to Android and vice versa.

This is how you can efficiently share data between Android and your chroot’ed Linux.

mhofert commented Jan 11, 2014

Thanks a ton, works like a charm!
[this time, I indeed can close this issue :-)]

yuezy3 commented Jan 28, 2018

@sunaku Well,what I DO IS :
Enable «Custom mounts» and set up the «Mount points» to «/storage/sdcard0»
Then In my chroot’ed Linux, When I access the /storage/sdcard0, I got permission denied error.
How can i fix this?

Источник

How to Install Android x86 5.0.2 on USB Drive

Hello and Welcome to the new How to Guide from Techposts.org. Today in this How-to Guide we will show you how to Install Android 5.0.2 Lollipop on USB Drive and boot on any windows, Linux PC or Mac, that is dual boot – Android Lollipop with Windows 7, 8 or 10, Linux or MAC.

Update – What’s New in Lollipop 5.0.2 x86:

  • Wifi and Bluetooth Working perfectly fine.
  • PlayStore and Google Apps preinstalled
  • Much better than previous 5.0 Update
  • Many other important Bug Fixes

The following video shows installtion of Android x86 on the internal Hard Drive of your System along with Windows and Linux (Dual/Triple Boot).

Android mobile operating system is an open source system software available for various smartphone, tablet devices and Desktops too. In our previous Videos we shown you How to install Android 4.4.4 Kitkat on PCs but This time we will be installing the latest Android version which is ANdroid 5 Lollipop on external USB drives ( External Hard disk, Pen Drive or MicroSd Card).
With This installation Method, Users can multi Dual Boot Android with Windows on PC and Laptops powered by x86 (32-bit) or x64 (64 Bit) computer architecture hardware. Users are required to Download Android x86 ISO File and can install it via bootable USB flash drive or bootable CD/DVD.

Читайте также:  Оптимизация системы для андроид

Advantages of installing on External Hard Disk or USB Drive :

  • No need to modify Windows BCD/Master boot partition or format hard disk.
  • Don’t need to install Grub bootloader on your Machine.
  • Your Windows will work as it was working before, so you don’t have to worry about uninstalling Androidx86, just remove the usb drive and you are good to go.

Step1. Things you’ll need ?

  • 1 USB Flash Drive or Bootable CD/DVD.
  • 4GB Free USB Disk Space for Android installation. (use a 4 or 8 GB Pen drive, SD Card or external Hard disk)
  • Android x86 5.0.2 Lollipop ISO File. Download it from Here
  • Universal USB Installer Tool to create bootable USB thumb drive. You can Find the Links in Description.
    Installing Android on PC

Step 2: By using Universal USB Installer Tool, Make a bootable USB flash drive using the ISO image file that you downloaded.

Select Android from the Drop Down menu, Then Browse the Android x86 ISO file and then select the USB Thumb Drive and Hit Create Button.

Step 3: After that, Restart your PC or Laptop via USB flash drive as the source. (Make USB to boot first and before CD/DVD ROM under your system’s BIOS settings)

Step 4: Now, When the menu appears, just select Install Android x86 to External hard disk or Pen Drive/Sd Card. You can also Run it As a Live Cd which means that if any changes made, they will not be saved. But if you install it on USB Drive or internal hard drive, then any changes that you make will be saved next time you boot android.

Step 5: Select your appropriate external hard disk partition to install Android x86 i.e. you can see in the image below: “sdb1 win95 FAT32 v220w” is the external USB Drive partition other than the installation media or you can install on any new partition.You can format the USB drive to ext3 or ext2 partition to get more internal storage.

Step 6: Now, You will get a few prompts messages pertaining to installation of GRUB Bootloader. Make sure to allow it.

Step 7: Now, another prompt message will ask you to make system /r/w. Hit Yes on this as well, especially if you’d like to modify your Android x86 installation later.

Step 8: After that, you will get another prompt to install virtual SD card. Use 2048 MB for space, as that’s the maximum supported.

Step 9: Now, You can Restart your Windows PC / Laptops. After Reboot, You can select to either boot to Android by inserting USB Drive and boot from it or Windows.

Voilah! You’re done. Congratulations!! You have successfully installed Android 5.0 Lollipop on USb drive. Enjoy this latest update.

If you have any questions or feedback, please use comment box below. If you face any problem during Installation, please contact us, and we’ll do our best to solve your queries.

Subscribe us for more such How to Guides on Android, iOS, Windows, Mac and Linux below or Connect with us to stay updated for more on Facebook, Google+and Twitter.

Источник

Оцените статью