LINUX on UEFI 32bit | [linuxos] tablets and TV box INTEL Bay \ Cherry Trail



Rep: (126)
LINUX on UEFI 32/64 bit


The topic discusses installing any kind of LINUX on tablets and TV boxes on INTEL Bay [Cherry] Trail with UEFI 32 / 64bit

Specifications
Specifications:
INTEL Bay [Cherry] Trail.
The screen size, touchscreen, Ram, Rom, it's all not important, they are almost identical, in tablets on Intel.
additional information
If you were able to launch Linux on your machine, write its name, what does not work and what works and how you launched it.
P.SThe topic is forbidden to discuss dualboot Android / Windows only linux / windows
Linux builds
Instructions
Drivers and sources
Kernel

Neighboring topics


Post has been editedM | A | G - 30.12.20, 13:09
Reason for editing: + instructions



Rep: (756)
Weifai disappeared, only the wire remained, I tried the login prompt and tried without a password - it does not allow. Probably doing something wrong.


Boot lightdm and there in the window "Live session user" on the right you need to click on the wheel, select Cinnamon and then mouse in the password window, but do not enter anything and press Enter. Wait a couple of minutes.

Post has been editedsergej_a_g - 24.11.15, 23:57



Rep: (10)
I did it when you choose Cinnamon, everything works, you connected a USB sound - everything is in order. Help please on wi-fi that I could miss, in your previous build wi-fi works.



Rep: (756)
I did it when you choose Cinnamon, everything works, you connected a USB sound - everything is in order. Help please on wi-fi that I could miss, in your previous build wi-fi works.


Wi-fi gone after installing to disk? You can reinstall the driverSo.



Rep: (10)
wi-fi disappeared in live-mode, in the sense that when I boot from your first system image, it works, but not from the new one. I will try to install the driver, as you said

Post has been editedbologa - 25.11.15, 20:54



Rep: (756)
wi-fi disappeared in live-mode, in the sense that when I boot from your first system image, it works, but not from the new one. I will try to install the driver, as you said


So be it. Wi-fi is not in live mode. It will be after installing the disk (or reinstalling the drivers). In the second assembly this is done. Just the driver introduced in a different way.



Rep: (6)
What to do?
Attached Image



Rep: (756)
Driftmen @ 12.12.2015, 10:43*
What to do?


Ignore.



Rep: (6)
Need to add a file in efi / ubuntu, how to do it?



Rep: (756)
Need to add a file in efi / ubuntu, how to do it?


Are you talking about this?
sudo apt-get install grub-efi-ia32 grub-efi-ia32-bin
sudo cp /boot/efi/EFI/ubuntu/grubia32.efi /boot/efi/EFI/ubuntu/grubx64.efi
sudo update-grub2


Post has been editedsergej_a_g - 14.12.15, 13:39



Rep: (6)
Yes thank you)
Attached Image

Did not work out



Rep: (756)
Did not work out


Try this
sudo add-apt-repository ppa: yannubuntu / boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair



Rep: (6)
does not work
How many suffered I do not know what to do, how to do it so that after the installation a 32-bit downloader started



Rep: (756)
How many suffered I do not know what to do, how to do it so that after the installation a 32-bit downloader started


Write on what hardware and put your actions in steps.



Rep: (6)
Sergej_a_g @ 12/15/2015, 10:38 PM*
...

Write on what hardware and put your actions in steps.


Prestigio pmp880td - run live cd to gparted format hard in ext4 and do swap then install



Rep: (756)
Prestigio pmp880td - run live cd to gparted format hard in ext4 and do swap then install


Try this
sudo dpkg --configure -a
sudo apt-get install -fy
sudo apt-get purge -y --force-yes grub * -common grub-common: i386 shim-signed

sudo apt-get install -y --force-yes grub-efi-amd64-signed shim-signed



sudo apt-get install grub-efi-ia32 grub-efi-ia32-bin
sudo cp /boot/efi/EFI/ubuntu/grubia32.efi /boot/efi/EFI/ubuntu/grubx64.efi
sudo update-grub2



Rep: (169)
so that the 32bit boot loader starts after installation


Not sure, but it seems to work
#! / bin / sh

# Linuxium installation script for booting from a 32-bit bootloader

DEFAULT_GATEWAY = `ip r | grep default | cut -d '' -f 3`
if (! ping -q -w 1 -c 1 ya.ru>/ dev / null 2>&one ); then
echo "$ 0: Not connected to internet ... exiting."
exit
fi

TARGETMOUNT = `mount | grep / target`
if ["x $ {TARGETMOUNT}" = "x"]; then
mkdir -p / target
mount / dev / mmcblk0p2 / target
mount / dev / mmcblk0p1 / target / boot / efi
fi

cat<<+ >/target/etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu trusty main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu trusty main restricted universe multiverse

deb http://archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu trusty-updates main restricted universe multiverse

deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse

deb http://archive.ubuntu.com/ubuntu trusty-security main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu trusty-security main restricted universe multiverse

deb http://extras.ubuntu.com/ubuntu trusty main
deb-src http://extras.ubuntu.com/ubuntu trusty main
+
chroot / target mount -t proc proc / proc
chroot / target mount -t sysfs sysfs / sys
mount --bind / dev / target / dev
mount --bind / run / target / run
chroot / target apt-get -y purge grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed
chroot / target rm -rf / boot / grub /
chroot / target rm -rf / boot / efi / EFI / ubuntu /
chroot / target apt-get update
chroot / target apt-get -y install grub-efi-ia32-bin grub-efi-ia32 grub-common grub2-common
chroot / target grub-install --target = i386-efi / dev / mmcblk0p1 --efi-directory = / boot / efi / --boot-directory = / boot /
chroot / target grub-mkconfig -o /boot/grub/grub.cfg
chroot / target umount / sys
chroot / target umount / proc
umount / target / run
umount / target / dev

if ["x $ {TARGETMOUNT}" = "x"]; then
umount / target / boot / efi
umount / target
fi

Create a script from this, change the permissions to access it:
sudo chmod 700<script name>
And run it:
sudo ./<script name>



Rep: (169)
For those who do not watch, for z37 ** there is one interesting bundle on the net.debian x86
The main emphasis of the assembly in asus t100, but on other tablets, too, a lot of things work.
Owners of chuwi vi8, vi10 or who has a touch on the Silead GSL3676 controllertrythisThe patch looks like the touch will work fine. My vi8 changed owner: hysterics:

Post has been editedextozi - 17.12.15, 13:39
Reason for editing: UPD



Rep: (6)
Nothing helps(



Rep: (3)
Launcheddebian x86andubuntu mate 14.10on Chuwi Hi8. Naturally, nothing works without drivers.
* extozi, How to add this patch to the assembly?

Post has been editedNiksan1994 - 20.12.15, 01:46



Rep: (6)
So, did anyone run ubuntu after installation?


Full version    

Help     rules

Now: 29.01.21, 06:58