Tag: YouTube

Run Android 10 on your PC :: AndEX 10 (Android-x86_64) with GAPPS (Google Play Store etc.), F-Droid, Brave Browser, VLC, Computer Launcher 2 and Spotify :: Build 201027

NEWS 201027 – A new version of AndEX 10 is ready!
I’ve uploaded a new upgraded version of AndEX 10 – android_x86_64-10-exton-gapps-aptoide-fdroid-spotify-1330mb-201027.iso. All included apps have been updated to the latest version. Also Google Play Services and Google Play Store. The ISO file is of only 1330 MB! Makes it easier to run AndEX on computers with low RAM. The very nice launcher Computer Launcher 2 is used in this AndEX version. Make it your standard Launcher. (Surprise your friends with new look style windows 11 of your Android). Version 201027 of AndEX 10 is a totally new build with a new kernel – 4.19.122-exton-android-x86_64. I’ve noticed that the WiFi connection works better with this new kernel. I.e. the connection is more stable – see below.

Upgrade from previous versions of AndEX 10?
If you already have AndEX 10 version 200108, 200218, 200225 or 200604 up and running there is no need to acquire the newest version from 201027. Just upgrade all apps to the latest version of today and you’re done! Use Google Play Store for that. You can of course also install for example YouTube, Brave, the Spotify app and Google Play Games yourself (if you are running the AndEX 10 mini version of 200225).

NEWS 201027 about AndEX 10 with GAPPS
My fifth build of AndEX 10 is ready. It has GAPPS (Google Play Store etc), Aptoide App Manager, F-Droid, Spotify, Google Maps, YouTube, Gmail, VLC, Brave Private Browser, Computer Launcher 2 and many other apps pre-installed. My new build of Android x86_64 10 – android_x86_64-10-exton-gapps-aptoide-fdroid-spotify-1330mb-201027.iso can be installed to hard drive or on a USB stick. You can also run the system live. I.e. from a DVD or a USB stick. On some computers you’ll have to start up AndEX 10 in compatibility mode (VESA) though. The sound and video performance is generally very very good. Google Play Store works very well in this build of AndEX 10. So does the YouTube and Spotify app. I’ve also included two extra app stores – Aptoide App Manager and F-Droid. Use them if you can’t find the app you’re looking for using Google Play Store.

MORE ABOUT AndEX 10
My new compiled Android-x86_64 system (10) can run and be installed on almost all newer laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. You can also run AndEX 10 in VirtualBox and/or VMware. Unfortunately with somewhat bad performance. I.e. the system is a bit slow and it might restart. I can also mention that I could run my AndEX 10 on a HP Pavilion 500-317no Desktop Computer and on a Lenovo ThinkStation C30. You can very easy do a “normal” or manual installation to hard drive. A manual installation can also be done to a drive where you already have another Linux system (for example Ubuntu 20.04) installed. Read more about how to install AndEX 10 below.

Android 10 was released 190903.

About the Android-x86 project – my sources

AndEX 10 is compiled by me with sources from the Android-x86 Project. All AndEX versions are also dependent of the Android-x86 Project’s activity and development. Following Android-x86 Project’s instructions you can build your own Android-x86_64 system.

You will see this boot screen (when booting from a DVD or a USB stick).

(AndEX 10 was compiled 201025).

When booting up AndEX 10 you shall see this boot animation.

Clash of Clans and Angry Birds (not pre-installed) and other popular games
Clash of Clans (a very popular epic strategy game) and Angry Birds (not pre-installed) work very very well. Perfect video quality and audio. If you have a touchscreen you can also run some hunting, shooting and racing games. 3D Chess Game is pre-installed. Unfortunately some very big games won’t run. They can be installed via Google Play, but the won’t run (at least on my computers). One example of such big games is PUBG Mobile.

Kernel
Kernel 4.19.122-exton is used in AndEX 10 Build 201027.

HOW TO do a simple manual installation (FRUGAL) of AndEX 10 to hard drive
The system’s install function work very well in AndEX 10 Build 201027. You can, however, also do a very simple manually installation to hard drive. To be able to do that you must have at least one Linux system installed on your hard drive. You must also use Grub as boot loader. Follow these steps.
1. Download android_x86_64-10-exton-gapps-aptoide-fdroid-spotify-1330mb-201027.iso
2. Start up a Linux system (Ubuntu or…) on the computer where you want to have AndEX 10 installed.
3. Create a special partition for AndEX 10 or use the partition where you already have one Linux system installed. The one you just booted up or…
4. Create a folder called (for example) ANDEX-10-201027
5. Extract android_x86_64-10-exton-gapps-aptoide-fdroid-spotify-1330mb-201027.iso to the root (/ANDEX-10-201027) of your new partition (formatted as ext4) or to the root of (for example) your Ubuntu system.
6. Create a folder called data in the folder ANDEX-10-201027.
7. You will then have a folder called ANDEX-10-201027 with four important files – the folder data, initrd.img, system.sfs and kernel – see the picture below. The folder /ANDEX-10-201027/data is very important! All your system changes will be saved to the folder data. You can’t even run the system without it. All other files which is in the ISO file can be deleted.

When you have the folder ANDEX-10-201027 in the right place it is time to configure Grub so you will be able to boot up AndEX 10 – see the examples below.

About Grub and “dual-boot/multi-boot”
If you already have have one or more Linux systems installed on your hard drive (which you must have to be able to install AndEX 10 Build 200108 manually) you can see below how to use Grub2 (which Ubuntu and most other Linux systems use as boot loader). You should add these lines to /boot/grub/grub.cfg or /etc/grub.d/40_custom – for example:
menuentry ‘AndEX 10 201027 (sda8-FRUGAL)’ {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
search –no-floppy –fs-uuid –set=root 35527b5d-4652-4bcf-97b5-27ff3b1f267a
else
search –no-floppy –fs-uuid –set=root 35527b5d-4652-4bcf-97b5-27ff3b1f267a
fi
linux /ANDEX-10-201027/kernel root=/dev/ram0 androidboot.selinux=permissive androidboot.hardware=android_x86_64 DPI=160 UVESA_MODE=1366×768 SRC=/ANDEX-10-201027
initrd /ANDEX-10-201027/initrd.img
}

NOTE 1: On some computers you may have to add nomodeset to the linux boot line. If so you may also have to remove DPI=160 and UVESA_MODE=1366×768 from the linux boot line. AndEX won’t start otherwise or you won’t have sound.

NOTE 1 B: On my HP Pavilion 500-317no Desktop Computer I had to use the boot lines below to make everything work.
linux /ANDEX-10-200108/kernel root=/dev/ram0 androidboot.selinux=permissive androidboot.hardware=android_x86_64 nomodeset SRC=/ANDEX-10-201027
I could also run AndEX 10 from hard drive on my Lenovo ThinkStation C30 using the same boot line. I.e. with nomodeset.

NOTE 2
: The DPI=160 entry provides a hint about the display’s pixel density in dots per inch. This is an important setting – if the Android display’s icons and text look too small and crowded, increase this number. If things seem too big, make it smaller.

NOTE 3: The UVESA_MODE=1366×768 entry describes the display size. This is also an important setting. If you know your display’s actual dimensions, enter them here. But not all dimensions work – it sometimes happens that a display specification that’s possible in principle isn’t feasible in practice.

NOTE 4 (Very important): On some computers you may have to skip adding DPI and UVESA_MODE to be able to connect to Google Play Store. Otherwise you will get an error message saying There was a problem communicating with google servers. Once you have logged in to Google Play Store and/or Gmail you can change your Grub configuration. I.e. add for example DPI=160 and UVESA_MODE=1366×768 (if you need to).

If you use Grub Legacy (which is very unusual today) you should add these lines to /boot/grub/menu.lst
title AndEX 10 – 201027 (sda8)
root (hd0,7)

kernel /ANDEX-10-201027/kernel quiet root=/dev/ram0 androidboot.selinux=permissive androidboot.hardware=android_x86_64 SRC=/ANDEX-10-201027
initrd /ANDEX-10-201027/initrd.img

NOTE: Doing a manual installation is not necessary. The system’s install function works very well. On the other hand I wouldn’t mess with my UEFI partition if I have other Linux systems and Windows installed and everything works alright. Anyway for testing purposes I did a normal installation of AndEX 10 Build 200108. I.e. I let the installation program reinstall Grub. After a reboot I saw this Grub menu.

I could still start my other Linux systems and Windows, but nevertheless I wanted my old/normal boot menu back. To achieve that I booted up the Linux system (Ubuntu 19.10) where I had Grub installed in the first place. Then I ran the command sudo boot-repair. After that I got my old/normal Grub boot menu back. It looked like this.

Watch a movie showing the “normal” install process (in VirtualBox)…

Language settings
You can (of course) run AndEX 10 in any language. Just go to Settings and change to your preferred language. The changes will take immediate effect.

Wireless connections
WiFi works alright in AndEX 10. Just go to Settings and turn WiFi on. Connect to your Network. Sometimes your WiFi connection will be “Saved”. I.e no Internet. Just keep on trying. Eventually you will get connected to Internet. Or move yourself (and the computer) next to your router. You will be connected immediately – screenshot. NOTE: In VirtualBox you must also turn WiFi on even if you don’t have a WiFi card. Then connect to Virtual WiFi (VirtWifi) – screenshot.

Running AndEX 10 live from a USB stick
When running AndEX 10 from a USB stick you can install new apps or download new wallpapers or… Nothing will be left after a reboot (of course). When installing to a USB stick using Rufus it will look like this.



Power off the system

Just press gently on Ctrl Alt Delete keys simultaneously and you will get two alternatives. Power off or Restart. Or use the app Simple Rebootscreenshot.

Using Spotify
Just start the Spotify app and log in. You must be a premium subscriber to be able to use the app.

Cloud connections
From AndEX 10 you can connect to your account at Dropbox, Google Drive, OneDrive, Box and Yandex. Watch this screenshot.

Samba connections
From AndEX 19 running File Manager+ you can connect to your shared folders on Windows computers in your Network. Watch this screenshot and this one.

Running AndEX 10 in VirtualBox and/or VMware

You can run AndEX 10 Build 201027 (from the ISO file) live in VirtualBox and VMware. You can also install AndEX 10 to a virtual hard drive in VirtualBox and VMware. The install function works very well. The desktop will look like this.

It is not possible to setup a wallpaper when running AndEX 10 Build 201027 in VirtualBox/VMware. NOTE: AndEX 10 Build 200604 works very well in VirtualBox. I.e. you can use the nice launcher 3D Live Launcher and you can change wallpaper. Watch this screenshot. As regards AndEX 10 Build 200604 you can also change the screen resolution by editing grub/menu.lst. Then you have to start up VirtualBox from a ISO file (Ubuntu or…) and mount the partition where you have AndEX installed. Run the commands sudo mkdir /dev/sda1 and sudo mount /dev/sda1 /mnt/sda1. Then open up a file manager with (for example) sudo pcmanfm and go to /mnt/sda1/grub. Edit menu.lst as this screenshot shows. I.e. you shall add UVESA_MODE=1366×768 to the kernel line. You can try with other resolutions, but not all will work.

About YouTube
The YouTube app works very well – screenshot. You can also run YouTube in Google Chrome – screenshot. Or in the Mint Browser. The video performance is excellent.

About Facebook
The Facebook app works very well in AndEX 10. Just go get it via Google Play Store.

What’s the point?
Well, if you like your Android phone and all the apps you have installed on it I’m sure you will also like to run apps from your laptop. Bigger screen and better sound etc. Also: In AndEX 10 many new apps and games can be installed via Google Play Store, Aptoide App Manager or F-Droid. You can even install some very big games (of 1GB or so), but unfortunately almost all such games need a touchscreen. Still not convinced? Then read my article about “How useful an Androx-x86 system can be for the average computer user“.

NOTE1/WARNING1
You must use a fairly new/modern computer. Android-x86_64 10 won’t run (even start) on older computers. My other Android remaster KitKat 4.4.4 Build 180108 will run also on older computers.

NOTE2/WARNING2
Before you buy and download AndEX 10 you must be aware of that not all apps downloaded via Google Play Store, Aptoide App Manager or F-Droid can run in an Android-x86_64 system. Some very big (around 1GB) games for example won’t run. You must also be aware of that some (many) games need a touchscreen. Clash of Clans (not pre-installed) and Angry Birds (not pre-installed) work very well though.

NOTE3/WARNING3
1. Bluetooth doesn’t work. (You may be able to enable Bluetooth and see units/devices on some computers though). You can, however, use the installed File Manager to connect to other computers in your Home network – screenshot1 and screenshot2. You can also connect to Google Drive and OneDrivescreenshot.
2. You can’t run Netflix. The Netflix app works in my AndEX 9 Pie Build 190912, AndEX Oreo Build 181028 and AndEX Marshmallow Build 170923 though. AndEX 10 is rooted, which prevents Netflix from running.
3. AndEX 10 Build 201027 can run live (from the ISO file) with very good video and sound quality. AndEX 10 Build 201027 can also run live and be installed in VirtualBox/VMware, but unfortunately the video performance is really bad. NOTE: Not as regards AndEX 10 Build 200604 though. As you can see from this screenshot you can even set a wallpaper when running AndEX 10 Build 200604 in VirtualBox.

And once again please note this
PREREQUISITE for manual installations
The system can be installed the “normal way” or manually to hard drive – see above. That’s sort of a FRUGAL installation used by Puppy Linux. To be able to do a frugal installation you must have at least one Linux system installed on your hard drive. You must also use Grub as boot loader. Running AndEX 10 live: Use preferably Rufus 3.12 (see above) to create a bootable USB stick from the different ISO files. Or burn the ISO file to a DVD and run the system from it.

Screenshots
Screenshot 1 – AndEX 10 Desktop 201027 with GAPPS
Screenshot 2 – AndEX 10 201027 running Google Play Store
Screenshot 3 – AndEX 10 201027 Desktop with another wallpaper
Screenshot 4 – AndEX 10 201027 – shows how to access files from a PC in your Network
Screenshot 5 – AndEX 10 Build 201027 running AIDA64
Screenshot 6 – AndEX 10 Build 201027 running VLC with very good video quality
Screenshot 7 – AndEX 10 running Aptoide App Manager
Screenshot 8 – AndEX 10 running F-Droid
Screenshot 9 – AndEX 10 running the YouTube
Screenshot 10 – AndEX 10 running Angry Birds
Screenshot 11 – AndEX 10 running Drag Racing
Screenshot 12 – AndEX 10 running 3D Chess
Screenshot 13 – AndEX 10 Fishing Clash
Screenshot 14 – AndEX 10 running CSR Racing 2

DOWNLOAD five different versions of AndEX 10. All for for 9 $

Or use this download link especially for AndEX 10 Build 201027…

md5sum for AndEX 10 Build 200108 ISO
md5sum for AndEX 10 Build 200218 ISO
md5sum for AndEX 10 Build 200225 ISO
md5sum for AndEX 10 Build 200604 ISO
md5sum for AndEX 10 Build 201027 ISO

Android is a trademark of Google Inc.

Read about my Android-x86 Systems – 10, Pie, Oreo, Nougat, Marshmallow, Lollipop and KitKat at
andex.exton.net – latest is AndEX 10 (with GAPPS) and AndEX Pie 9.0 (also with GAPPS)!
and

about my Android 11, 10, Pie, Oreo, Nougat, Marshmallow and Lollipop versions for Raspberry Pi 4 and 3/2 at
raspex.exton.se
– latest is RaspAnd 11 (with GAPPS) and RaspAnd Oreo 8.1 (also with GAPPS)!
No Comments AndEXAndroidextonEXTON Linux systems

Android-x86_64 Pie 9.0 with Pie Launcher, Yalp Store, Aptoide App Manager, Netflix, Spotify and Firefox with YouTube – Build 190426

NEWS 190426 about a new extra version of AndEX Pie 9.0
My new build of Android x86_64 – andex-x86_64-pie-9.0-aptoide-netflix-spotify-1610mb-190426.iso can be installed to hard drive or on a USB stick. You can also run the system live. I.e. from a DVD or a USB stick. On some computers you’ll have to start up AndEX 9.0 in compatibility mode (VESA) though. The sound and video performance is generally very very good. Yalp Store and Aptoide App Manager work very well in this build of AndEX Pie. So does the Netflix and Spotify app. I have unfortunately not been able to install Google Play Store and other GAPPS. Yalp Store and Aptoide work as a good replacements for Google Play Store though. This new version of AndEX Pie (build 190426) runs somewhat faster and is a bit more responsive than the “old” version (build 190326) och AndEX Pie. It also runs very well live in VirtualBox and VMware. The new version looks better too since it uses Pie Launcher as Desktop environment. You will get both versions of AndEX Pie for $ 9.

About Yalp Store
Yalp Store lets you download apps directly from Google Play Store as apk files. It can search for updates of installed apps and lets you search for other apps. The point of Yalp Store is to be small and independent from Google Services Framework. By default Yalp Store connects to Google services using a built-in account, so you do not have to own a Google account to use it. The only reason to use a live Google account is to access the paid apps you own or leave reviews. So Yalp Store works as a pretty good replacement for Google Play Store. I think.

Screenshot– AndEX Pie Build 190326 – the Desktop with many nice apps installed. (The apps Popcorn Time, Mi Home and Racing in Car 2 are not pre-installed).

MORE NEWS 190426 about AndEX Pie 9.0
My new build of Android-x86_64 Pie 9.0 have Yalp Store (see above) and Aptoide App Manager pre-installed. Also many other apps. For example: Netflix, Spotify, ES File Explorer, AIDA64 and Firefox. YouTube works very well in Firefox.

MORE ABOUT AndEX Pie
My new compiled Android-x86_64 system (Pie 9.0) can run and be installed on almost all newer laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. You can (of course) also run AndEX in VirtualBox and/or VMware. I can also mention that I could run my new Pie version without problems on a HP Pavilion 500-317no Desktop Computer. You can very easy do a manual installation to hard drive. That can also be done to a drive where you already have another Linux system (for example Ubuntu 19.04) installed. Read more about how to install AndEX Pie at the main site about AndEX Pie.

Android Pie 9.0 was released 180806.

SCREENSHOTS showing the new AndEX Pie Desktop etc
1. First screen after boot
2. Screen after Pie Launcher is configured
3. The Desktop is ready
4. Showing all pre-installed apps
5. Yalp Store categories
6. Examples of games which can be installed via Yalp Store
7. AndEX Pie running in VMware

READ MORE…

No Comments AndEXextonEXTON Linux systems

AndEX Oreo 8.1 (Android-x86_64) – Build 180918 – with Google Play Store (and everything else) working very well

NEWS 180918 about AndEX Oreo 8.1
My first build of AndEX Oreo 8.1 is from 180103. My second build is from 180202. My third build is from 180614. My new build of Android x86_64 – andex_x86_64-oreo-8.1-gapps-windows-launchers-1050mb-180918.iso can be installed to hard drive using the installation program or manually. You can also run the system live. I.e. from a DVD or a USB stick. On some computers you’ll have to start up AndEX 8.1 in compatibility mode (VESA) though. NOTE: You can run AndEX Oreo Build 180918 on newer laptops and Desktop computers. The sound and the video performance is generally very very good.

MOST IMPORTANT CHANGES IN BUILD 180918
Google Play Store now works as intended. As an alternative you can use Aptoide App Manager, which also is pre-installed. Three nice special window launchers are pre-installed: Microsoft Launcher, Win 10 Launcher and OO Launcher. (OO Launcher is an enhanced Android™ O Oreo™ style launcher, with many useful enhanced launcher features). I’ve discovered a new way to manually install AndEX Oreo to hard drive. Very simple! Read more below. You can now open up a terminal and become root with the command su root (which you couldn’t in previous versions of AndEX Oreo). Build 180918 uses kernel 4.9.109 with more support for various hardware. Most important: The install function works in this new version of AndEX Oreo. You can also install AndEX Oreo to a virtual hard drive while using VirtualBox. That is for some unknown reason not possible in VMware. You can run AndEX Oreo very well live in both VMware and VirtualBox though.

Screenshot – AndEX Build 180918 – the Desktop with Win 10 Launcher for Android 8.1 Oreo – with several extra apps (games) – Koi Video Live Wallpaper, Air Fighters, Popcorn Time, Wild Hunt, Racing In Car 2, Drift Clash and Fishing Club 3D – not pre-installed.

MORE NEWS 180918: AndEX – Oreo 8.1 with kernel 4.9.109-exton-android-x86_64 and GAPPS
My new build of Android-x86_64 Oreo 8.1 have GAPPS pre-installed. I.e. Google Play Services, Google Play Store, Google Play Games and YouTube. Also many other apps. For example: Spotify, ES File Explorer, Firefox, Root Explorer, Control Screen Orientation and Clash of Clans.

ABOUT AndEX Oreo
My compiled Android-x86_64 system (Oreo 8.1) can run and be installed on almost all newer laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. You can (of course) also run AndEX in VirtualBox and/or VMware. Unfortunately only live though. I can also mention that I could run my new Oreo version without problems on a HP Pavilion 500-317no Desktop Computer. You can only do a manual installation to hard drive. That can, however, even be done to a drive where you already have another Linux system (for example Ubuntu 18.04) installed. Read more below about how to do a very simple manual installation of AndEX Oreo 8.1.

Android Oreo 8.1 was released 171205.

About the Android-x86 project – my sources

All AndEX versions are dependent of the Android-x86 Project’s activity and development.

Clash of Clans (pre-installed) and other popular games
Clash of Clans (a very popular epic strategy game) works very very well. Perfect video quality and audio. If you have a touchscreen you can also (for example) run Wild Hunt, Flight Pilot, CSR Racing 2, Angry Birds, Bowmasters and Shooting King. Watch a screenshot of the desktop when I have installed the just mentioned game apps (in AndEX Nougat).

HOW TO do a simple manual installation (FRUGAL) of AndEX Oreo to hard drive
The system’s install function does work in this new version of AndEX Oreo. You can, however, also do a very simple manually installation to hard drive. To be able to do that you must have at least one Linux system installed on your hard drive. You must also use Grub as bootloader. Follow these steps.
1. Use preferably Etcher to create a bootable USB stick from the ISO file andex_x86_64-oreo-8.1-gapps-windows-launchers-1050mb-180918.iso.
2. Start up a Linux system (Ubuntu or…) on the computer where you want to have AndEX Oreo installed.
3. Create a special partition for AndEX Oreo or use the partition where you already have one Linux system installed. The one you just booted up or…
4. Create a folder called ANDEX-OREO-180918 (or…) in the root (/) of your new partition (formatted as ext4) or in the root of for example your Ubuntu system.
5. Create also the folder /ANDEX-OREO-180918/data. Very important! All your system changes will be saved to the folder data. You can’t even run the system without it.
6. Now insert your USB stick with AndEX Oreo 8.1 and mount it (if not mounted automatically. You will see this.


As you can see there are 9 files on the USB stick. Transfer (copy) all of them to the folder ANDEX-OREO-180918. When you have done that the folder ANDEX-OREO-180918 will look like this.

You will now have 10 files in the folder ANDEX-OREO-180918 including the important folder data. As you can see I’ve presumed that you want to do a FRUGAL installation. I.e. have AndEX Oreo on the same partition you are running from. Now you must configure Grub to be able to boot up AndEX Oreo – see the example below.

About Grub and “dual-boot/multi-boot”
If you already have have one or more Linux systems installed on your hard drive (which you must have to be able to install AndEX Oreo Build 180918) you can see below how to use Grub2 (which Ubuntu and most other Linux systems use as boot loader). You should add these lines to /boot/grub/grub.cfg or /etc/grub.d/40_custom – for example:
menuentry ‘AndEX 8.1 Oreo 180918 (sda8-FRUGAL)’ {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
search –no-floppy –fs-uuid –set=root 35527b5d-4652-4bcf-97b5-27ff3b1f267a
else
search –no-floppy –fs-uuid –set=root 35527b5d-4652-4bcf-97b5-27ff3b1f267a
fi
linux /ANDEX-OREO-180918/kernel root=/dev/ram0 androidboot.selinux=permissive DPI=160 UVESA_MODE=1366×768 SRC=/ANDEX-OREO-180918
initrd /ANDEX-OREO-180918/initrd.img
}

NOTE 1: On some computers you may have to add nomodeset to the linux boot line. If so you may also have to remove DPI=160 and UVESA_MODE=1366×768 from the linux boot line. AndEX won’t start otherwise or you won’t have sound.

NOTE 2: The DPI=160 entry provides a hint about the display’s pixel density in dots per inch. This is an important setting — if the Android display’s icons and text look too small and crowded, increase this number. If things seem too big, make it smaller.

NOTE 3: The UVESA_MODE=1366×768 entry describes the display size. This is also an important setting. If you know your display’s actual dimensions, enter them here. But not all dimensions work – it sometimes happens that a display specification that’s possible in principle isn’t feasible in practice.

If you use Grub Legacy (which is very unusual today) you should add these lines to /boot/grub/menu.lst
title AndEX Oreo 8.1 – 180918 (sda8)
root (hd0,7)

kernel /ANDEX-OREO-180918/kernel quiet root=/dev/ram0 androidboot.selinux=permissive SRC=/ANDEX-OREO-180918
initrd /ANDEX-OREO-180918/initrd.img

Manual installation of AndEX Oreo in VirtualBox and/or VMware
You can (of course) also do a manual (FRUGAL) installation – as described above – also in VirtualBox and/or VMware. After such an installation everything will work very good. Do it like this.
1. Install a Linux system on a virtual partition of at least 20 GB in for example VirtualBox. Use Grub2 as boot loader. In this example I use ExLight Build 180214.
2. Start up ExLight and download the ISO file andex_x86_64-oreo-8.1-gapps-windows-launchers-1050mb-180918.iso to /root.
3. Create the folder mnt and mount the ISO file there – watch this screenshot.
4. Create the folder /ANDEX-OREO and /ANDEX-OREO/data.
5. Copy all files from the folder mnt to /ANDEX-OREO – watch this screenshot. Be sure to also copy the hidden folder mnt/.disk to /ANDEX-OREO.
6. Finally edit /boot/grub/grub.cfg as this screenshot shows. Your Grub menu will then look like this. I.e. add these start lines to /boot/grub/grub.cfg:
menuentry ‘AndEX Oreo 8.1 (sda1/VirtualBox-FRUGAL)’ {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root=’hd0,msdos1′
linux /ANDEX-OREO/kernel root=/dev/ram0 androidboot.selinux=permissive SRC=/ANDEX-OREO
initrd /ANDEX-OREO/initrd.img
}

Language settings
You can (of course) run AndEX Nougat in any language. Just go to Settings and change to your preferred language. The changes will take immediate effect.

Wireless connections
Wifi works alright in AndEX Oreo. Just go to Settings and turn Wifi on.

Power off the system

Just press gently on your computer’s power button and you will get two alternatives. Power off or Restart.

Running AndEX Oreo in VirtualBox and/or VMware

You can run AndEX Oreo Build 180918 (from the ISO file) very well live in VirtualBox and VMware. But you cannot install AndEX 8.1 to a virtual hard drive in VMware. The install function doesn’t work in VMware. I.e. everything seems alright during the install process, but the system won’t boot from hard drive. You can, however, do a manual installation as describe above under Manual installation of AndEX Oreo in VirtualBox and/or VMware. The install function in AndEX 7.1.2 Build 170619 and AndEX 7.0 Build 161107 work very well in VMware (and VirtualBox) though. Watch a slideshow, which shows all installation steps in VMware. NOTE: The “normal” install function works in VirtualBox while running AndEX Oreo Build 180918.

Becoming root is possible in AndEX Build 180918
You can become root by open up a terminal and su root. The app Root Explorer is also installed. Very useful I think. You can also become “Developer” by going to Settings >> About table >> and click several times on “Build number”. Watch this screenshot. As Developer you can do/test a lot of things. Watch this screenshot. In AndEX Marshmallow Build 170923 you can also su to become root. (Another good thing about that AndEX build is that Netflix works!).

What’s the point?
Well, if you like your Android phone and all the apps you have installed on it I’m sure you will also like to run apps from your laptop. Bigger screen and better sound etc. Also: In AndEX Oreo Build 180918 almost all apps and games can be installed via Google Play Store and via Aptoide App Manager. You can even install very big games (of 1GB or so), but unfortunately almost all such games need a touchscreen. Still not convinced? Then read my article about “How useful an Androx-x86 system can be for the average computer user“.

NOTE1/WARNING1
You must use a fairly new/modern computer. Android-x86_64 Oreo won’t run (even start) on older computers. My other Android remaster KitKat 4.4.4 Build 180108 will run also on older computers.

NOTE2/WARNING2
Before you buy and download this version of AndEX Oreo you must be aware of that not all apps downloaded from Google Play Store or Aptoide App Manager can run in an Android-x86_64 system. Some very big (around 1GB) games for example won’t run. You must also be aware of that some (many) games need a touchscreen. Clash of Clans and Angry Birds work very well though.

KNOWN ISSUES
1. You can’t install AndEX Oreo in VMware using the install function. You can run the system live very well though. You can also do a manual installation as describe above under Manual installation of AndEX Oreo in VirtualBox and/or VMware. After that everything will work very well while running AndEX Oreo from your virtual hard drive.
2. Bluetooth doesn’t work. (You can enable Bluetooth and see units though).
3. You can’t use Netflix. (You can install the Netflix app, but it won’t run).

And once again please note this
PREREQUISITE for manual installations
The system can be installed manually to hard drive – see above. That’s sort of a FRUGAL installation used by Puppy Linux. To be able to do a frugal installation you must have at least one Linux system installed on your hard drive. You must also use Grub as bootloader. Running AndEX Oreo live: Use preferably Etcher or Rufus to create a bootable USB stick from the ISO file andex_x86_64-oreo-8.1-gapps-windows-launchers-1050mb-180918.iso. Or burn the ISO file to a DVD and run the system from it.

Screenshots
Screenshot 1 – AndEX Oreo 8.1 Desktop with Microsoft Launcher
Screenshot 2 – AndEX Oreo 8.1 Desktop with Microsoft Launcher – all apps
Screenshot 3 – AndEX Oreo 8.1 running live in VMware
Screenshot 4 – AndEX Oreo 8.1 running from hard drive in VirtualBox
Screenshot 5 – AndEX Oreo 8.1 live boot screen
Screenshot 6 – AndEX Oreo 8.1 boot screen in VirtualBox after installation
Screenshot 7 – AndEX Oreo 8.1 developer options

DOWNLOAD
This Build (180918) has been replaced by Build 181026…

Android is a trademark of Google Inc.

Read about my Android-x86 Systems – 10, Pie, Oreo, Nougat, Marshmallow, Lollipop and KitKat at
andex.exton.net – latest is AndEX 10 (with GAPPS) and AndEX Pie 9.0 (also with GAPPS)!
and

about my Android 11, 10, Pie, Oreo, Nougat, Marshmallow and Lollipop versions for Raspberry Pi 3/2 at
raspex.exton.se
– latest is RaspAnd 11 (without GAPPS) and RaspAnd Oreo 8.1 (with GAPPS)!
2 Comments AndEXAndroidextonEXTON Linux systems

AndEX Oreo 8.1 (Android-x86_64) – Build 180202 – with Google Play Store working very well!

NEWS 180202 about AndEX Oreo 8.1
My first build of AndEX Oreo 8.1 is from 180103. My new build of Android x86_64 – andex_x86_64-oreo-8.1-gapps-windows-launchers-1060mb-180202.iso can be installed (manually) to hard drive or on a USB stick. You can also run the system live. I.e. from a DVD or a USB stick. On some computers you’ll have to start up AndEX 8.1 in compatibility mode (VESA) though. NOTE: You can run AndEX Oreo Build 180202 on newer laptops and Desktop computers. The sound and video performance is generally very very good.

MOST IMPORTANT CHANGES IN BUILD 180202
Google Play Store now works as intended. As an alternative you can use Aptoide App Manager. Three nice special window launchers are pre-installed: Win 10 Launcher, Microsoft Launcher and OO Launcher. (OO Launcher is an enhanced Android™ O Oreo™ style launcher, with many useful enhanced launcher features). I’ve discovered a new way to manually install AndEX Oreo to hard drive. Very simple! Read more below.

Screenshot – AndEX Build 180202 – the Desktop with Win 10 Launcher for Android 8.1 Oreo – with several extra apps (games) – Koi Video Live Wallpaper, Air Fighters, Popcorn Time, Wild Hunt, Racing In Car 2, Drift Clash and Fishing Club 3D – not pre-installed.

MORE NEWS 180202: AndEX – Oreo 8.1 with kernel 4.9.54-exton-android-x86_64 and GAPPS
My new build of Android-x86_64 Oreo 8.1 have GAPPS pre-installed. I.e. Google Play Services, Google Play Store, Google Play Games, Gmail and YouTube. Also many other apps. For example: Spotify, File Manager, Firefox, Root Explorer and Clash of Clans.

ABOUT AndEX Oreo
My compiled Android-x86_64 system (Oreo 8.1) can run and be installed on almost all newer laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. You can (of course) also run AndEX in VirtualBox and/or VMware. Unfortunately only live though. I can also mention that I could run my new Oreo version without problems on a HP Pavilion 500-317no Desktop Computer. You can only do a manual installation to hard drive. That can, however, even be done to a drive where you already have another Linux system (for example Ubuntu 17.10) installed. Read more below about how to do a very simple manual installation of AndEX Oreo 8.1.

Android Oreo 8.1 was released 171205.

About the Android-x86 project – my sources

All AndEX versions are dependent of the Android-x86 Project’s activity and development.

Clash of Clans (pre-installed) and other popular games
Clash of Clans (a very popular epic strategy game) works very very well. Perfect video quality and audio. If you have a touchscreen you can also (for example) run Wild Hunt, Flight Pilot, CSR Racing 2, Angry Birds, Bowmasters and Shooting King. Watch a screenshot of the desktop when I have installed the just mentioned game apps (in AndEX Nougat).

HOW TO do a simple manual installation (FRUGAL) of AndEX Oreo to hard drive
The system’s install function doesn’t work. I.e. everything seems alright during the install process, but the system won’t boot from hard drive. The system can therefore only be installed manually to hard drive. To be able to do that you must have at least one Linux system installed on your hard drive. You must also use Grub as bootloader. Follow these steps.
1. Use preferably Rufus to create a bootable USB stick from the ISO file andex_x86_64-oreo-8.1-gapps-windows-launchers-1060mb-180202.iso.
2. Start up a Linux system (Ubuntu or…) on the computer where you want to have AndEX Oreo installed.
3. Create a special partition for AndEX Oreo or use the partition where you already have one Linux system installed. The one you just booted up or…
4. Create a folder called ANDEX-OREO-180202 (or…) in the root (/) of your new partition (formatted as ext4) or in the root of for example your Ubuntu system.
5. Create also the folder /ANDEX-OREO-180202/data. Very important! All your system changes will be saved to the folder data.
6. Now insert your USB stick with AndEX Oreo 8.1 and mount it (if not mounted automatically. You will see this.

As you can see there are 10 files on the USB stick. Transfer (copy) all om them to the folder ANDEX-OREO-180202. When you have done that the folder ANDEX-OREO-180202 will look like this.

You will now have 11 files in the folder ANDEX-OREO-180202 including the important folder data. As you can see I’ve presumed that you want to do a FRUGAL installation. I.e. have AndEX Oreo on the same partition you are running from. Now you must configure Grub to be able to boot up AndEX Oreo – see the example below.

About Grub and “dual-boot/multi-boot”
If you already have have one or more Linux systems installed on your hard drive (which you must have to be able to install AndEX Oreo Build 180103) you can see below how to use Grub2 (which Ubuntu and most other Linux systems use as boot loader). You should add these lines to /boot/grub/grub.cfg or /etc/grub.d/40_custom – for example:
menuentry ‘AndEX 8.1 Oreo 180202 (sda8-FRUGAL)’ {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
search –no-floppy –fs-uuid –set=root 35527b5d-4652-4bcf-97b5-27ff3b1f267a
else
search –no-floppy –fs-uuid –set=root 35527b5d-4652-4bcf-97b5-27ff3b1f267a
fi
linux /ANDEX-OREO-180202/kernel root=/dev/ram0 androidboot.selinux=permissive DPI=160 UVESA_MODE=1366×768 SRC=/ANDEX-OREO-180202
initrd /ANDEX-OREO-180202/initrd.img
}

NOTE 1: On some computers you may have to add nomodeset to the linux boot line. If so you may also have to remove DPI=160 and UVESA_MODE=1366×768 from the linux boot line. AndEX won’t start otherwise or you won’t have sound.

NOTE 2: The DPI=160 entry provides a hint about the display’s pixel density in dots per inch. This is an important setting — if the Android display’s icons and text look too small and crowded, increase this number. If things seem too big, make it smaller.

NOTE 3: The UVESA_MODE=1366×768 entry describes the display size. This is also an important setting. If you know your display’s actual dimensions, enter them here. But not all dimensions work – it sometimes happens that a display specification that’s possible in principle isn’t feasible in practice.

If you use Grub Legacy (which is very unusual today) you should add these lines to /boot/grub/menu.lst
title AndEX Oreo 8.1 – 180202 (sda8)
root (hd0,7)

kernel /ANDEX-OREO-180202/kernel quiet root=/dev/ram0 androidboot.selinux=permissive SRC=/ANDEX-OREO-180202
initrd /ANDEX-OREO-180202/initrd.img

Manual installation of AndEX Oreo in VirtualBox and/or VMware
You can (of course) also do a manual (FRUGAL) installation – as described above – also in VirtualBox and/or VMware. After such an installation everything will work very good. Do it like this.
1. Install a Linux system on a virtual partition of at least 20 GB in for example VirtualBox. Use Grub2 as boot loader. In this example I use ExLight Build 180214.
2. Start up ExLight and download the ISO file andex_x86_64-oreo-8.1-gapps-windows-launchers-1060mb-180202.iso to /root.
3. Create the folder mnt and mount the ISO file there – watch this screenshot.
4. Create the folder /ANDEX-OREO and /ANDEX-OREO/data.
5. Copy all files from the folder mnt to /ANDEX-OREO – watch this screenshot. Be sure to also copy the hidden folder mnt/.disk to /ANDEX-OREO.
6. Finally edit /boot/grub/grub.cfg as this screenshot shows. Your Grub menu will then look like this. I.e. add these start lines to /boot/grub/grub.cfg:
menuentry ‘AndEX Oreo 8.1 (sda1/VirtualBox-FRUGAL)’ {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root=’hd0,msdos1′
linux /ANDEX-OREO/kernel root=/dev/ram0 androidboot.selinux=permissive SRC=/ANDEX-OREO
initrd /ANDEX-OREO/initrd.img
}

Language settings
You can (of course) run AndEX Nougat in any language. Just go to Settings and change to your preferred language. The changes will take immediate effect.

Wireless connections
Wifi works alright in AndEX Oreo. Just go to Settings and turn Wifi on.

Power off the system

Just press gently on your computer’s power button and you will get two alternatives. Power off or Restart.

Running AndEX Oreo in VirtualBox and/or VMware

You can run AndEX Oreo Build 180202 (from the ISO file) very well live in VirtualBox and VMware. But you cannot install AndEX 8.1 to a virtual hard drive in VirtualBox and VMware. The install function doesn’t work. I.e. everything seems alright during the install process, but the system won’t boot from hard drive. You can, however, do a manual installation as describe above under Manual installation of AndEX Oreo in VirtualBox and/or VMware. The install function in AndEX 7.1.2 Build 170619 and AndEX 7.0 Build 161107 work very well in VMware (and VirtualBox) though. Watch a slideshow, which shows all installation steps in VMware.

Becoming root
You can’t become root by open up a terminal and su root. The app Root Explorer is however installed. Very useful I think. You can also become “Developer” by going to Settings >> About table >> and click several times on “Build number”. Watch this screenshot. As Developer you can do/test a lot of things. Watch this screenshot. In AndEX Marshmallow Build 170923 you can su to become root. (Another good thing about that AndEX build is that Netflix works!).

What’s the point?
Well, if you like your Android phone and all the apps you have installed on it I’m sure you will also like to run apps from your laptop. Bigger screen and better sound etc. Also: In AndEX Oreo Build 180202 almost all apps and games can be installed via Google Play Store and via Aptoide App Manager. You can even install very big games (of 1GB or so), but unfortunately almost all such games need a touchscreen. Still not convinced? Then read my article about “How useful an Androx-x86 system can be for the average computer user“.

NOTE1/WARNING1
You must use a fairly new/modern computer. Android-x86_64 Oreo won’t run (even start) on older computers. My other Android remaster KitKat 4.4.4 Build 180108 will run also on older computers.

NOTE2/WARNING2
Before you buy and download this version of AndEX Oreo you must be aware of that not all apps downloaded from Google Play Store or Aptoide App Manager can run in an Android-x86_64 system. Some very big (around 1GB) games for example won’t run. You must also be aware of that some (many) games need a touchscreen. Clash of Clans and Angry Birds work very good though.

KNOWN ISSUES
1. You can run AndEX Oreo live on many computers, but the install function doesn’t work. You’ll have to do a manual installation as described above.
2. You can’t install AndEX Oreo in VirtualBox and VMware. You can run the system live very well though. You can also do a manual installation as describe above under Manual installation of AndEX Oreo in VirtualBox. After that everything will work very well while running AndEX Oreo from your virtual hard drive.
3. Bluetooth doesn’t work. (You can enable Bluetooth and see units though).
4. You can’t use Netflix. (You can install the Netflix app, but it won’t run).
5. You can use the YouTube app, but he sound is better when running YouTube in Firefox or Google Chrome.

And once again please note this
PREREQUISITE
The system can be installed manually to hard drive – see above. That’s sort of a FRUGAL installation used by Puppy Linux. To be able to do a frugal installation you must have at least one Linux system installed on your hard drive. You must also use Grub as bootloader. Running AndEX Oreo live: Use preferably Etcher or Rufus to create a bootable USB stick from the ISO file andex_x86_64-oreo-8.1-gapps-windows-launchers-1060mb-180202.iso. Or burn the ISO file to a DVD and run the system from it.

Screenshots
Screenshot 1 – AndEX Oreo 8.1 Desktop with Win 10 Launcher 1
Screenshot 2 – AndEX Oreo 8.1 Desktop with Win 10 Launcher 2
Screenshot 3 – AndEX Oreo 8.1 Desktop with Microsoft Launcher
Screenshot 4 – AndEX Oreo 8.1 Desktop with OO Launcher
Screenshot 5 – AndEX Oreo 8.1 running in VMware

DOWNLOAD
This build of AndEX Oreo has been replaced by Build 180614.

Android is a trademark of Google Inc.

9 Comments AndEXAndroidextonEXTON Linux systems

AndEX Oreo 8.1 (Android-x86_64) – Build 180103 – with GAPPS, Aptoide App Manager and Win 10 Launcher

NEWS 180103 about AndEX Oreo 8.1
My new build of Android x86_64 – andex-x86_64-oreo-8.1-gapps-aptoide-windows-1280mb-180103.iso can be installed to hard drive or on a USB stick. You can also run the system live. I.e. from a DVD or a USB stick. On some computers you’ll have to start up AndEX 8.1 in compatibility mode (VESA) though. NOTE: You can run AndEX Oreo Build 180103 on newer laptops and Desktop computers. The sound and video performance is generally very very good.

WARNING
Google Play Store doesn’t work in AndEX Oreo 8.1 because you can’t sign in to Google. Aptoide App Manager is a good replacement though, since Google Play Services work. I.e. you can install Google apps via Aptoide. Google Play Services are needed for YouTube (the app) and Clash of Clans to work.

Screenshot – AndEX Build 180103 – the Desktop with Win 10 Launcher for Android 8.1 Oreo

MORE NEWS 180103: AndEX – Oreo 8.1 with kernel 4.9.54-exton-android-x86_64 and GAPPS

My new build of Android-x86_64 Oreo 8.1 have GAPPS pre-installed. I.e. Google Play Services, Google Play Store 8.5.39.W-all, Aptoide App Manager 8.6.02, Google Play Games, Gmail and YouTube 12.45.56. Also many other apps. For example: Spotify 8.4.31.723, File Manager 2.2.0.199, Firefox 57.0.1, Google Chrome 63.0.32, Clash of Clans 9.434.4 and Popcorn Time 2.8.0.2.

ABOUT AndEX Oreo
My compiled Android-x86_64 system (Oreo 8.1) can run and be installed on almost all newer laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. You can (of course) also run AndEX in VirtualBox and/or VMware. Unfortunately only live though. I can also mention that I could run my new Oreo version without problems on a HP Pavilion 500-317no Desktop Computer. You can only do a manual installation to hard drive. That can, however, even be done to a drive where you already have another Linux system (for example Ubuntu 17.10) installed. Read more below about how to do a manual installation of AndEX Oreo 8.1.

Android Oreo 8.1 was released 171205.

About the Android-x86 project – my sources

All AndEX versions are dependent of the Android-x86 Project’s activity and development.

Clash of Clans (pre-installed) and other popular games
Clash of Clans (a very popular epic strategy game) works very very well. Perfect video quality and audio. If you have a touchscreen you can also (for example) run Wild Hunt, Flight Pilot, CSR Racing 2, Angry Birds, Bowmasters and Shooting King. Watch a screenshot of the desktop when I have installed the just mentioned game apps (in AndEX Nougat).

HOW TO do a manual installation (FRUGAL) of AndEX Oreo to hard drive
The system’s install function doesn’t work. I.e. everything seems alright during the install process, but the system won’t boot from hard drive. The system can therefore only be installed manually to hard drive. To be able to do that you must have at least one Linux system installed on your hard drive. You must also use Grub as bootloader. Follow these steps.
1. Use preferably Rufus to create a bootable USB stick from the ISO file andex-x86_64-oreo-8.1-gapps-aptoide-windows-1280mb-180103.iso.
2. Start up a Linux system (Ubuntu or…) on the computer where you want to have AndEX Oreo installed.
3. Create a special partition for AndEX Oreo or use the partition where you already have one Linux system installed. The one you just booted up or…
4. Create a folder called ANDEX-OREO-180103 (or…) in the root (/) of your new partition (formatted as ext4) or in the root of for example your Ubuntu system.
5. Create also the folders ANDEX-OREO-180103/data and ANDEX-OREO-180103/system.
6. Now insert your USB stick with AndEX Oreo 8.1 and mount it. You will see that there are 16 files on the USB stick – screenshot. Copy three files – kernel, ramdisk.img and initrd.img to the folder ANDEX-OREO-180103. The folder ANDEX-OREO-180103 will now have five files – screenshot. Copy the file system.sfs to (for example) your home folder and open it with the command unsquashfs system.sfs. You will then get a system folder called squashfs-root.
7. Now you must run the very important command (as root): cp -av squashfs-root/* /ANDEX-OREO-180103/system screenshot
As you can see I’ve presumed that you want to do a FRUGAL installation. I.e. have AndEX Oreo on the same partition you are running from. Now you must configure Grub to be able to boot up AndEX Oreo – see the example below.

About Grub and “dual-boot/multi-boot”
If you already have have one or more Linux systems installed on your hard drive (which you must have to be able to install AndEX Oreo Build 180103) you can see below how to use Grub2 (which Ubuntu and most other Linux systems use as boot loader). You should add these lines to /boot/grub/grub.cfg or /etc/grub.d/40_custom – for example:
menuentry ‘AndEX 8.1 Oreo 180103 (sda8-FRUGAL)’ {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
search –no-floppy –fs-uuid –set=root 35527b5d-4652-4bcf-97b5-27ff3b1f267a
else
search –no-floppy –fs-uuid –set=root 35527b5d-4652-4bcf-97b5-27ff3b1f267a
fi
linux /ANDEX-OREO-180103/kernel root=/dev/ram0 nomodeset androidboot.hardware=android_x86_64 androidboot.selinux=permissive DPI=160 UVESA_MODE=1366×768 SRC=/ANDEX-OREO-180103
initrd /ANDEX-OREO-180103/initrd.img
}

NOTE 1: On some computers you may have to add nomodeset to the linux boot line. If so you may also have to remove DPI=140 and UVESA_MODE=1920×1080 from the linux boot line. AndEX won’t start otherwise or you won’t have sound.

NOTE 2: The DPI=140 entry provides a hint about the display’s pixel density in dots per inch. This is an important setting — if the Android display’s icons and text look too small and crowded, increase this number. If things seem too big, make it smaller.

NOTE 3: The UVESA_MODE=1920×1080 entry describes the display size. This is also an important setting. If you know your display’s actual dimensions, enter them here. But not all dimensions work – it sometimes happens that a display specification that’s possible in principle isn’t feasible in practice.

If you use Grub Legacy (which is very unusual today) you should add these lines to /boot/grub/menu.lst
title AndEX Oreo 8.1 – 180103 (sda8)
root (hd0,7)

kernel /ANDEX-OREO-180103/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
androidboot.selinux=permissive nomodeset SRC=/ANDEX-OREO-180103

initrd /ANDEX-OREO-180103/initrd.img

Language settings

You can (of course) run AndEX Nougat in any language. Just go to Settings and change to your preferred language. The changes will take immediate effect.

Wireless connections
Wifi works alright in AndEX Oreo. Just go to Settings and turn Wifi on.

Power off the system

Just press gently on your computer’s power button and you will get two alternatives. Power off or Restart.

Running AndEX Oreo in VirtualBox and/or VMware

You can run AndEX Oreo Build 180103 (from the ISO file) very well live in VirtualBox and VMware. But you cannot install AndEX 8,1 to a virtual hard drive in VirtualBox and VMware. The install function doesn’t work. I.e. everything seems alright during the install process, but the system won’t boot from hard drive. AndEX 7.1.2 Build 170619 and AndEX 7.0 Build 161107 work very well in VMware (and VirtualBox) though. Watch a slideshow, which shows all installation steps in VMware.

What’s the point?
Well, if you like your Android phone and all the apps you have installed on it I’m sure you will also like to run apps from your laptop. Bigger screen and better sound etc. Also: In AndEX Oreo Build 180103 almost all apps and games can be installed NOT via Google Play Store, but via Aptoide App Manager. You can even install very big games (of 1GB or so), but unfortunately almost all such games need a touchscreen. Still not convinced? Then read my article about “How useful an Androx-x86 system can be for the average computer user“.

NOTE1/WARNING1
Google Play Store doesn’t work because you can’t sign in to Google. Aptoide App Manager is a good replacement though, since Google Play Services work. I.e. you can install Google apps via Aptoide.

NOTE2/WARNING2

You must use a fairly new/modern computer. Android-x86_64 Oreo won’t run (even start) on older computers. My other Android remaster KitKat 4.4.4 Build 160214 will run also on older computers.

NOTE3/WARNING3
Before you buy and download this version of AndEX Oreo you must be aware of that not all apps downloaded from Aptoide App Manager can run in an Android-x86_64 system. Some very big (around 1GB) games for example won’t run. You must also be aware of that some (many) games need a touchscreen. Clash of Clans and Angry Birds work very good though.

KNOWN ISSUES
1. You can run AndEX Oreo live on many computers, but the install function doesn’t work. You’ll have to do a manual installation as described on my above.
2. You can’t install AndEX Oreo in VirtualBox and VMware. You can run the system live very well though.
3. Bluetooth doesn’t work. (You can enable Bluetooth and see units though).
4. You can’t use Netflix. (You can install the Netflix app, but it won’t run).
5. You can use the YouTube app, but he sound is better when running YouTube in Firefox or Google Chrome.

And once again please note this
PREREQUISITE
The system can be installed manually to hard drive – see above. That’s sort of a FRUGAL installation used by Puppy Linux. To be able to do a frugal installation you must have at least one Linux system installed on your hard drive. You must also use Grub as bootloader. Running AndEX Oreo live: Use preferably Rufus to create a bootable USB stick from the ISO andex-x86_64-oreo-8.1-gapps-aptoide-windows-1280mb-180103.iso. Or burn the ISO file to a DVD and run the system from it.

Screenshots
Screenshot 1 – AndEX Oreo 8.1 Desktop with Win 10 Launcher
Screenshot 2 – AndEX Oreo 8.1 Desktop with Microsoft Launcher
Screenshot 3 – AndEX Oreo 8.1 – Aptoide App Manager running
Screenshot 4 – AndEX Oreo 8.1 – Boot animation
Screenshot 5 – AndEX Oreo 8.1 – Desktop with Win 10 Launcher
Screenshot 6 – AndEX Oreo 8.1 – AndEX Oreo running Google Maps
Screenshot 7 – AndEX Oreo 8.1 – AndEX Oreo first screen after boot – choose launcher

DOWNLOAD
This build (180103) has been replaced by AndEX Oreo 8.1 Build 180202.

Android is a trademark of Google Inc.

5 Comments AndEXAndroidEXTON Linux systems

AndEX (Android-x86) Marshmallow 6.0.1 – 64bit – with GAPPS and Netflix (!) working very well – Build 170923

NEWS 170923 – AndEX 64bit – Marshmallow 6.0.1 with GAPPS and Netflix (!) working
My build of Android-x86_64 Marshmallow 6.0.1 has GAPPS pre-installed. I.e. Google Play Services 11.5.09, Google Play Store 8.1.29.S-all, Google Chrome 60.0.3112.116, Gmail 7.9.10 and more apps. For example: Netflix 4.16.1, Spotify 8.4.21.495, Firefox 55.0.2, Aptoide App Manager 8.4.1.2, Termux 0.53 and Clash of Clans 9.105.10. The ISO is called android_x86_64-marshmallow-6.0.1-gapps-netflix-970mb-170923.iso. AndEX Marshmallow 64bit Build 170923 is totally error-free (as far as I know). Everything just works! About Google Play Services – read below and see this slideshow.

Google Play Services
When you start up AndEX Marshmallow Build 170923 for the first time you will get an error message saying that “Google Play Services has stopped”. (As in my previous builds of AndEX). This is easily fixed by going to Settings – Apps – Google Play Services. Give Google Play Services ALL permissions. After that you won’t see any more error messages.

Based on the latest stable Android-x86_64 Marshmallow version
Android-x86 project’s Marshmallow stable version was released 160913. AndEX Marshmallow Build 170923 uses (of course) the Android-x86 project’s sources.

About
My compiled Android-x86_64 system (Marshmallow 6.0.1) can run live (from CD) or be installed on almost all laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. The Android system is distributed in the form of an ISO file as the rest of my Linux distributions. I.e. you must (as usual) burn the ISO file to a DVD if you want to run the system live on your computer or install it to hard drive. Read about how to burn ISO files. Or skip that. Just use ImgBurn. Nothing can go wrong.

More about AndEX Marshmallow 64 bit
Marshmallow 6.0.1 is the second latest version of the Android mobile operating system developed by Google. I call my remaster of it AndEX Marshmallow 64bit Live DVD. It uses “my” special kernel 4.4.20-exton-android-x86_64 with some extra features. I.e. extra drivers. My Android-x86 KitKat 4.4.4 build from 2016-02-14 will also cost you 9 $. I has one advantage over the Nougat, Marshmallow and Lollipop AndEX versions: The system can be used also on older laptops. Read more about the KitKat 4.4.4 version 160214 or DOWNLOAD it instantly.

Wireless connections
Wifi works alright in AndEX Marshmallow. Just go to Settings and turn Wifi on. Unfortunately the support for Broadcom Wireless cards is not complete (in the Android-x86 project). I have experience from two different cards – BCM4311 and BCM43142. The first mentioned one works.

VirtualBox installation of AndEX Marshmallow

You can run AndEX Marshmallow live in VirtualBox. I.e. the system will start up properly, and you can even install new apps. While running for example YouTube and Spotify you will, however, notice that the sound is distorted. Once installed to hard drive (virtually) in VirtualBox the system works very well. Note: My Lollipop (160215) and KitKat (160214) versions can also run very well in VirtualBox. The Lollipop and KitKat AndEX systems can also run very well live in VirtualBox.

Running AndEX Marshmallow in VMware
AndEX Marshmallow Build 170923 works very well in VMware Workstation. You can for example run Netflix, YouTube and Spotify with excellent sound. The video performance is also very good. Watch a screenshot when Netflix is running.

About running Netflix
Before you start Netflix you should go to Settings >> Apps compatibility >> Enable native Bridge. Watch this screenshot. (I’m not sure if this is absolutely necessary, but…). When a movie in Netflix starts the audio will be in Spanish. Change it to English, French or German. Watch this screenshot. Note: When running AndEX Marshmallow live (i.e. from a DVD or USB stick or live in VirtualBox or VMware) it can happen that you get an error message when you try to start Netflix. Just try again and/or wait a few minutes. When running AndEX from hard drive Netflix starts immediately when you want. Note also: Whatever you do don’t try to upgrade Netflix. No other version than the one pre-installed will work.

Becoming root
You can su to become root. Watch this screenshot.

Running games
I knew from before that Clash of Clans (pre-installed) works very well. Just for fun I tried to install some very big games in AndEX Marshmallow. Some needed a touchscreen and others wouldn’t run. One very big game (about 300 MB in download size) called Sky Force Reloaded ran very well though.

What’s the point?
Well, if you like your Android phone and all the apps you have installed on it I’m sure you will also like to run apps from your laptop. Bigger screen and better sound etc. Also: In AndEX Marshmallow Build 170923 almost all apps and games can be installed via Google Play Store. Note also that Netflix works very well in this AndEX Build. Still not convinced? Then read my article about “How useful an Androx-x86 system can be for the average computer user“.

Installing new apps in AndEX Marshmallow 64 bit
Use Google Play Store or Aptoide App Manager, which are pre-installed. Just make your choices! See screenshots when I’m installing Spotify, Google Chrome and YouTube while running AndEX Marshmallow from hard drive.

Install the system to hard drive
Say for example that you have a laptop with Windows 10 installed as the only operating system. If you just create one extra partition of about 5 GB you can install Android Marshmallow on this extra partition and then “dual-boot”. I.e. you can turn on your computer (called “booting it up”) and decide whether you want to start Windows or Android Marshmallow. Grub will be installed as boot handler/loader during the installation of Android Marshmallow. Note: The installation will take only about one minute. And the installation to hard drive is so simple that a 10 year old child can do it.

More about Grub and “dual-boot/multi-boot”

If you already have have one or more Linux systems installed on your computer you should skip installing Grub during the installation of AndEX. If you use Grub2 (which Ubuntu and most other Linux systems use as boot loader) you should instead add these lines to /boot/grub/grub.cfg or /etc/grub.d/40_custom – for example:
menuentry ‘Android-x86_64 6.0.1 Marshmallow 170923 (sda8)’ {
insmod gzio
insmod part_msdos
insmod ext2
set root=’hd0,msdos8′
linux /android-2016-09-22/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
acpi_sleep=s3_bios,s3_mode SRC=/android-2016-09-22 DPI=140 \
UVESA_MODE=1920×1080

initrd /android-2016-09-22/initrd.img
}

NOTE 1: On some computers you may have to add nomodeset to the linux boot line. If so you may also have to remove DPI=140 and UVESA_MODE=1920×1080 from the linux boot line. (AndEX won’t start otherwise).

NOTE 2
: The DPI=140 entry provides a hint about the display’s pixel density in dots per inch. This is an important setting – if the Android display’s icons and text look too small and crowded, increase this number. If things seem too big, make it smaller.

NOTE 3: The UVESA_MODE=1920×1080 entry describes the display size. This is also an important setting. If you know your display’s actual dimensions, enter them here. But not all dimensions work – it sometimes happens that a display specification that’s possible in principle isn’t feasible in practice.

If you use Grub Legacy (which is very unusual today even though Android Marshmallow uses it) you should add these lines to /boot/grub/menu.lst
title Android-x86_64 6.0.1 Nougat 170923 (sda8)
root (hd0,7)

kernel /android-2016-09-22/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
SRC=/android-2016-09-22

initrd /android-2016-09-22/initrd.img

USB installation
Read my instruction.

REPLACEMENT
Version 170923 replaces version 160922.

Screenshots
AndEX Marshmallow’s Desktop with some extra apps (Kodi 17.4 and YouTube)
AndEX Marshmallow running Netflix in VMware
AndEX Marshmallow running Google Play Store
AndEX Marshmallow running Aptoide App Manager
AndEX Marshmallow running Kodi
AndEX root session
AndEX Marshmallow running the famous game Clash of Clans (pre-installed)
AndEX Marshmallow running Spotify

DOWNLOAD for 9 $ android_x86_64-marshmallow-6.0.1-gapps-netflix-970mb-170923.iso
md5sum

Android is a trademark of Google Inc.

4 Comments AndEXAndroidextonEXTON Linux systems

Android-x86_64 Nougat 7.1.2 – Build 170619 – with GAPPS and kernel 4.9.31-exton-android-x86_64

News 170621 about AndEX 7.1.2
Yesterday I said that AndEX 7.1.2 couldn’t run in VirtualBox and VMware. Actually it can! It just takes about 10 min for the Desktop to show up when running AndEX live. (I mean directly from the ISO file). Watch this screenshotVirtualBox and this screenshot – VMware. Just give AndEX enough RAM. I gave AndEX 3GB. You can (of course) also install AndEX to a virtual hard drive in VirtualBox and VMware. The system will be very responsive then.

NEWS 170619 about AndEX Nougat 7.1.2
My new build of Android x86_64 – android_x86_64-7.1.2-nougat-gapps-kernel-4.9.31-exton-990mb-170619.iso can be installed to hard drive or on a USB stick. You can also run the system live. I.e. from a DVD or a USB stick. On some computers you’ll have to start up AndEX 7.1.2 in compatibility mode (VESA) though. GAPPS and all other apps mentioned below are installed. NOTE: You can run AndEX Nougat Build 170619 on newer laptops and Desktop computers. Sound won’t work on all though – see below. The video performance is generally very very good.

Screenshot
– AndEX Build 170619 – the Desktop


MORE NEWS 170619: AndEX – Nougat 7.1.2 with kernel 4.9.31-exton-android-x86_64 and GAPPS
My new build of Android-x86_64 Nougat 7.1.2 have GAPPS pre-installed. I.e. Google Play Services 11.0.55, Google Play Store 7.9.52-Q-all, Aptoide App Manager, Google Play Games 3.9.08 (needed for Clash of Clans to run), Gmail 7.6.4 and YouTube 12.14.56. Also many other apps. For example: Spotify 8.4.4.810, Clash of Clans 9.24.16, File Manager 2.0.0.355, HD Camera Ultra 2.3.1 (works very well), Google Maps 9.50.2, SnapTube 4.3.0, Firefox 54.0 (latest version) and Rotation Control Pro 1.1.9.

PREREQUISITE
The system can be installed manually to hard drive. To be able to do that you must have at least one Linux system installed on your hard drive. You must also use Grub as boot loader. You can also (or alternatively) install AndEX 7.1.2 while running the system from a DVD or from a USB stick. Use preferable Rufus to create a bootable USB stick. Or burn the ISO file (android_x86_64-7.1.2-nougat-gapps-kernel-4.9.31-exton-990mb-170619.iso) to a DVD and run the system from it.

ABOUT Andex Nougat 7.1.2
My compiled Android-x86_64 system (Nougat 7.1.2) can run live or from hard drive on certain computers. The system can run and be installed on almost all newer laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. I can also mention that I could run my new Nougat version without problems on a HP Pavilion 500-317no Desktop Computer. The Android-AndEX 7.1.2 system is distributed in the form of a Zip file and a ISO file. You can do a manual installation to hard drive. That can even be done to a drive where you already have another Linux system (for example Ubuntu 17.04) installed. That’s sort of a Frugal Installation (normally used by Puppy Linux). Read more about different installations of AndEX Nougat 7.1.2 at the INFO site.

Android Nougat 7.1.2 was released 170403.

About the Android-x86 project – my sources
All AndEX versions are dependent of the Android-x86 Project’s activity and development.

More about AndEX Nougat
Nougat 7.1.2 is the latest version of the Android mobile operating system developed by Google. I call my remaster of it AndEX Nougat. It uses “my” special kernel 4.9.31-exton-android-x86_64 with some extra features. I.e. extra drivers. My Android-x86 KitKat 4.4.4 build from 2016-02-14 will also cost you 9 $. It has one advantages over the Nougat and Marshmallow versions: The system can be used also on older laptops. Read more about the KitKat 4.4.4 version 160214 or DOWNLOAD it instantly.

Installing new apps in AndEX Nougat
Use Google Play Store or Aptoide App Manager which are pre-installed. Just make your choices.

Install the system to hard drive
Say for example that you have a laptop with Windows 10 and Ubuntu 17.04 installed as the only operating systems. If you just create one extra partition of about 5 GB you can install Android Nougat on this extra partition and then “dual-boot”. I.e. you can turn on your computer (called “booting it up”) and decide whether you want to start Windows, Ubuntu or Android Nougat. Please note that you can do the installation manually – see about that below.

About Grub and “dual-boot/multi-boot”

If you already have have one or more Linux systems installed on your hard drive (which you must have to be able to install/use AndEX Build 170619) you can see below how to use Grub2 (which Ubuntu and most other Linux systems use as boot loader). You should add these lines to /boot/grub/grub.cfg or /etc/grub.d/40_custom – for example:
menuentry ‘Android-x86_64 7.1.2 Nougat 170619 (sda8)’ {
insmod gzio
insmod part_msdos
insmod ext2
set root=’hd0,msdos8′
linux /android-2017-06-19/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
androidboot.selinux=permissive SRC=/android-2017-06-19 DPI=140 \
UVESA_MODE=1920×1080

initrd /android-2017-06-19/initrd.img
}

NOTE 1: On some computers you may have to add nomodeset to the linux boot line. If so you may also have to remove DPI=140 and UVESA_MODE=1920×1080 from the linux boot line. AndEX won’t start otherwise or you won’t have sound.

NOTE 2: The DPI=140 entry provides a hint about the display’s pixel density in dots per inch. This is an important setting — if the Android display’s icons and text look too small and crowded, increase this number. If things seem too big, make it smaller.

NOTE 3: The UVESA_MODE=1920×1080 entry describes the display size. This is also an important setting. If you know your display’s actual dimensions, enter them here. But not all dimensions work – it sometimes happens that a display specification that’s possible in principle isn’t feasible in practice.

If you use Grub Legacy (which is very unusual today even though Android-x86_64 Nougat uses it) you should add these lines to /boot/grub/menu.lst
title Android-x86_64 7.1.2 Nougat 170619 (sda8)
root (hd0,7)

kernel /android-2017-06-19/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
androidboot.selinux=permissive SRC=/android-2017-06-19

initrd /android-2017-06-19/initrd.img

HOW to do the manual installation using ANDEX-NOUGAT-7.1.2-1120mb-170619.zip
When you unzip ANDEX-NOUGAT-7.1.2-1120mb-170619.zip you will have a folder called NOUGAT-170619. It has five files, namely data (folder), system (folder), initrd.img, kernel and ramdisk.img. You can choose to place the folder NOUGAT-170619 on an empty ext4-formatted partition and/or in the root of another installed Linux system on your computer. If you have (for example) Ubuntu 17.04 installed on /dev/sda5 the Grub2 boot lines would look like this.

menuentry ‘Android-x86_64 7.1.2 Nougat 170619 (sda5)’ {
insmod part_msdos
insmod ext2
set root=’hd0,msdos5′
linux /NOUGAT-170619/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
androidboot.selinux=permissive SRC=/NOUGAT-170619

initrd /NOUGAT-170619/initrd.img
}

Bluethooth
Bluetooth is not working. (You can enable Bluetooth and see units nearby though).

Language settings
You can (of course) run AndEX Nougat in any language. Just go to Settings and change to your preferred language. The changes will take immediate effect.

Mounting devices
You can’t mount (reach) your internal hard drive. You can however mount a “normal” USB stick. Just go to Settings >> Storage & USB. It will look like this. (I have mounted a USB stick 3.72 GB with CRUX/CruxEX on it).
andex-6.0-usbstick-mount-20151209

Wireless connections
Wifi works alright in AndEX Nougat. Just go to Settings and turn Wifi on.

Rooted system
AndEX 7.1.2 is rooted. I.e. you can open up a terminal and su to become root. Watch this screenshot.

USB installation
Read my instruction. Learn how you can run AndEX from a USB stick with persistence. Read under A). NOTE: You can’t run AndEX Build 170619 live from a USB stick. You can, however, use the ISO file android_x86_64-7.1.2-nougat-gapps-kernel-4.9.31-exton-990mb-170619.iso and install to a USB stick the way I describe in my instruction.

Power off the system
Just press gently on your computer’s power button and you will get two alternatives. Power off or Restart.

Running AndEX Nougat in VirtualBox and/or VMware
You can run AndEX Nougat 7.1.2 Build 170619 (from the ISO file) live in VirtualBox and VMware. Just give AndEX enough RAM. I gave AndEX 3GB. You can (of course) also install AndEX 7.1.2 to a virtual hard drive in VirtualBox and VMware. I have kept my previous Build AndEX Nougat 7.0 161107 since you can run Build 161107 in VirtualBox and VMware very well. AndEX 7.0 Build 161107 works very well in VMware (and VirtualBox) as I just said. Watch a slideshow, which shows all installation steps in VMware.

What’s the point?
Well, if you like your Android phone and all the apps you have installed on it I’m sure you will also like to run apps from your laptop. Bigger screen and better sound etc. Also: In AndEX Nougat Build 170619 almost all apps and games can be installed via Google Play Store. You can even install very big games (of 1GB or so), but unfortunately almost all such games need a touchscreen. Still not convinced? Then read my article about “How useful an Androx-x86 system can be for the average computer user“.

NOTE1/WARNING1
You must use a fairly new/modern computer. Android-x86_64 Nougat won’t run (even start) on older computers. My other Android remaster KitKat 4.4.4 Build 160214 will run also on older computers.

NOTE2/WARNING2
Before you buy and download this version of AndEX Nougat you must be aware of that not all apps downloaded from Google Play Store or Aptoide App Manager can run in an Android-x86_64 system. Some very big (around 1GB) games for example won’t run. On the other hand I could run Pes Club Manager, which is of 866 MB and Traffic Rider of about the same size. You must also be aware of that some (many) games need a touchscreen. Clash of Clans (pre-installed) works very good though. So does Angry Birds.

KNOWN ISSUES
1. You can run AndEX Nougat 7.1.2 Build 170619 live in VirtualBox. About VMware I don’t know yet. Note that my other two Android Nougat systems from 170201 respectively 161107 can run very well in VirtualBox and VMware.
2. Bluetooth won’t work. (You can enable Bluetooth and see units though).

And once again please note this
PREREQUISITE
The system can be installed manually to hard drive. To be able to do that you must have at least one Linux system installed on your hard drive. You must also use Grub as bootloader. You can also (or alternatively) install AndEX 7.1.2 while running the system from a DVD or from a USB stick. Use preferably Rufus to create a bootable USB stick from the ISO android_x86_64-7.1.2-nougat-gapps-kernel-4.9.31-exton-990mb-170619.iso. Or burn the ISO file to a DVD and run the system from it.

Screenshots
Screenshot 1 – Nougat boot animation (which you must see during the boot. If not, the installation was unsuccessful)

Screenshot 2 – AndEX Nougat 7.1.2 Desktop
Screenshot 3 – AndEX Nougat 7.1.2 – Google Play Store running
Screenshot 4 – AndEX Nougat 7.1.2 – Aptoide App Manager running
Screenshot 5 – AndEX Nougat 7.1.2 – Spotify running
Screenshot 6 – AndEX Nougat 7.1.2 – Showing all installed apps

DOWNLOAD ANDEX-NOUGAT-7.1.2-1120mb-170619.zip and android_x86_64-7.1.2-nougat-gapps-kernel-4.9.31-exton-990mb-170619.iso for 9 $

NOTE3: I have kept my previous builds of AndEX on the servers. AndEX 7.1.1 Build 170201 runs also very well live. I.e. from a DVD or a USB stick. I have also kept my other Android Nougat Build AndEX Nougat 7.0 161107 since you can run Build 161107 in VirtualBox and VMware with sound working.

Note4: Android-x86 KitKat 4.4.4 Exton Build 9 160214 can run on many more laptops/computers than AndEX Nougat 7.1.1 and/or AndEX (Android-x86) Marshmallow 6.0.1.

Note5: The AndEX Lollipop ISO has been out on SourceForge.net and the Swedish Linux Society for free from 150307 until 150402. The ISO file was downloaded about 50000 times during that period. More than any of my other Linux distributions (ever).

Android is a trademark of Google Inc.

3 Comments AndEXAndroidEXTON Linux systems

Android-x86_64 Nougat 7.0 – Build 161107 – with GAPPS and kernel 4.4.27-exton-android-x86_64

andex-nougat-screenshot-20161107-4-smallNEWS 161107: AndEX – Nougat 7.0 with kernel 4.4.27-exton-android-x86_64 and GAPPS
My new build of Android-x86_64 Nougat 7.0 has GAPPS pre-installed. I.e. Google Play Services, Google Play Store 7.1.16.1-all, Gmail and YouTube. Also many other apps. For example: Spotify 6.30.882, Clash of Clans 8.551.24, File Manager 1.01, Google Earth 8.0.4.2346, Google Now Launcher 1.4 and Aptoide App Manager. The ISO is called android_x86_64-nougat-7.0-gapps-exton-build-870mb-161107.iso.

ABOUT Andex Nougat
My compiled Android-x86_64 system (Nougat 7.0) can run live (from CD) on certain computers. It is best installed to a USB stick or to hard drive and running from there. The system can, however, be installed on almost all newer laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. I can also mention that I could run this Nougat version without problems on a HP Pavilion 500-317no Desktop Computer. I could also run it very well live on the HP Desktop computer. The Android system is distributed in the form of an ISO file as the rest of my Linux distributions. I.e. you must (as usual) burn the ISO file to a CD before you can install AndEX Nougat to hard drive. Read about how to burn ISO files. Or skip that. Just use ImgBurn. Nothing can go wrong. You can also download my Android Nougat system in the form of a zip-file (android_x86_64-nougat-7.0-gapps-exton-build-1110mb-161107.zip) and do a manual installation to hard drive. That can even be done to a drive where you already have another Linux system (for example Ubuntu 16.10) installed. That’s sort of a Frugal Installation (normally used by Puppy Linux). Read more about different installations of AndEX Nougat below.

Android Nougat 7.0 was released 160822.

About the Android-x86 project – my sources
All AndEX versions are dependent of the Android-x86 Project’s activity and development.

More about AndEX Nougat
Nougat 7.0 is the second latest version of the Android mobile operating system developed by Google. I call my remaster of it AndEX Nougat. It uses “my” special kernel 4.4.27-exton-android-x86_64 with some extra features. I.e. extra drivers. My Android-x86 KitKat 4.4.4 build from 2016-02-14 will also cost you 9 $. It has one advantages over the Nougat and Marshmallow versions: The system can be used also on older laptops. Read more about the KitKat 4.4.4 version 160214 or DOWNLOAD it instantly.

Installing new apps in AndEX Nougat
Use Google Play Store or Aptoide App Manager, which are pre-installed. Just make your choices. You can install new apps even while running AndEX Nougat live. I.e. from DVD or a USB stick.

Install the system to hard drive
Say for example that you have a laptop with Windows 10 installed as the only operating system. If you just create one extra partition of about 5 GB you can install Android Nougat on this extra partition and then “dual-boot”. I.e. you can turn on your computer (called “booting it up”) and decide whether you want to start Windows or Android Nogat. Grub will be installed as boot handler/loader during the installation of Android Nougat. Note: The installation will take only about one minute. And the installation to hard drive is so simple that a 10 year old child can do it.

More about Grub and “dual-boot/multi-boot”

If you already have have one or more Linux systems installed on your computer you should skip installing Grub during the installation of AndEX. If you use Grub2 (which Ubuntu and most other Linux systems use as boot loader) you should instead add these lines to /boot/grub/grub.cfg or /etc/grub.d/40_custom – for example:
menuentry ‘Android-x86_64 7.0 Nougat 161107 (sda8)’ {
insmod gzio
insmod part_msdos
insmod ext2
set root=’hd0,msdos8′
linux /android-2016-11-07/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
acpi_sleep=s3_bios,s3_mode androidboot.selinux=permissive SRC=/android-2016-11-07 DPI=140 \
UVESA_MODE=1920×1080

initrd /android-2016-11-07/initrd.img
}

NOTE 1: On some computers you may have to add nomodeset to the linux boot line. If so you may also have to remove DPI=140 and UVESA_MODE=1920×1080 from the linux boot line. AndEX won’t start otherwise or you won’t have sound.

NOTE 2: The DPI=140 entry provides a hint about the display’s pixel density in dots per inch. This is an important setting — if the Android display’s icons and text look too small and crowded, increase this number. If things seem too big, make it smaller.

NOTE 3: The UVESA_MODE=1920×1080 entry describes the display size. This is also an important setting. If you know your display’s actual dimensions, enter them here. But not all dimensions work – it sometimes happens that a display specification that’s possible in principle isn’t feasible in practice.

If you use Grub Legacy (which is very unusual today even though Android-x86 Nougat uses it) you should add these lines to /boot/grub/menu.lst
title Android-x86_64 7.0 Nougat 161107 (sda8)
root (hd0,7)

kernel /android-2016-11-07/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
androidboot.selinux=permissive SRC=/android-2016-11-07

initrd /android-2016-11-07/initrd.img

Alternative manual installation using android_x86_64-nougat-7.0-gapps-exton-build-1110mb-161107.zip
When you unzip android_x86_64-nougat-7.0-gapps-exton-build-1110mb-161107.zip you will have a folder called NOUGAT-161107. It has five files, namely data (folder), system (folder), initrd.img, kernel and ramdisk.img. Please note that this Nougat system has more apps pre-installed than what is in the system on the ISO file. If you have installed AndEX Nougat from CD you can simply replace the system folder in the folder android-2016-11-07 with the one in the folder NOUGAT-161107. You can also choose to place the folder NOUGAT-161107 on an empty ext4-formatted partition and/or in the root of another installed Linux system on your computer. If you have (for example) Ubuntu 16.10 installed on /dev/sda5 the Grub2 boot lines would look like this.

menuentry ‘Android-x86_64 7.0 Nougat 161107 (sda5)’ {
insmod part_msdos
insmod ext2
set root=’hd0,msdos5′
linux /NOUGAT-161107/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
androidboot.selinux=permissive SRC=/NOUGAT-161107

initrd /NOUGAT-161107/initrd.img
}

Error message re. Google Play Services
When you start up AndEX Nougat for the first time from hard drive (or from a USB stick) you will see a error message saying that Google Play Services has stopped. You must then go to Settings >> Apps >> Google Play Services and give Google Play Services all permissions. After that you won’t see this error message again. Note: Google Play Services is needed for all GAPPS to work, for example Google Play Store.

Bluethooth
Bluetooth is not working.

Language settings
You can (of course) run AndEX Nougat in any language. Just go to Settings and change to your preferred language. The changes will take immediate effect.

Mounting devices
You can’t mount (reach) your internal hard drive. You can however mount a “normal” USB stick. Just go to Settings >> Storage & USB. It will look like this. (I have mounted a USB stick 3.72 GB with CRUX/CruxEX on it).
andex-6.0-usbstick-mount-20151209

Wireless connections
Wifi works alright in AndEX Nougat. Just go to Settings and turn Wifi on. Unfortunately the support for Broadcom Wireless cards is not complete (in the Android-x86 project). I have experience from two different cards – BCM4311 and BCM43142. The first mentioned one works.

USB installation
Read my instruction. Learn how you can run AndEX from a USB stick with persistence. Read under A).

VirtualBox and AndEX Nougat
You can run AndEX Nougat Build 161107 very well live in VirtualBox. You can even install new apps. You can of course also install the system. Watch this screenshot.

VMware and AndEX Nougat
You can run AndEX Nougat Build 161107 very well live in VMware. You can even install new apps. You can of course also install the system. Watch this screenshot. And/or watch the slideshow below showing all installation steps in VMware.

What’s the point?
Well, if you like your Android phone and all the apps you have installed on it I’m sure you will also like to run apps from your laptop. Bigger screen and better sound etc. Also: In AndEX Nougat Build 161107 almost all apps and games can be installed via Google Play Store. You can even install very big games (of 1GB or so), but unfortunately almost all such games need a touchscreen. Still not convinced? Then read my article about “How useful an Androx-x86 system can be for the average computer user“.

NOTE1/WARNING1
You must use a fairly new/modern computer. Android-x86_64 Nougat won’t run (even start) on older computers. My other Android remaster KitKat 4.4.4 Build 160214 will run also on older computers.

NOTE2/WARNING2
Before you buy and download this version of AndEX Nougat you must be aware of that not all apps downloaded from Google Play Store can run in an Android-x86_64 system. Some very big (around 1GB) games for example won’t run. On the other hand I could run Pes Club Manager, which is of 866 MB and Traffic Rider of about the same size. You must also be aware of that some (many) games need a touchscreen.

Screenshots
Screenshot 1 – AndEX Nougat (ISO) Desktop
Screenshot 1b – AndEX Nougat (ZIP) Desktop
Screenshot 2 – AndEX Nougat – The Desktop at first boot
Screenshot 3 – AndEX Nougat – The beginning of your configuration – Give Google Play Services all permissions and you won’t see any error messages
Screenshot 4 – AndEX Nougat – Google Play Store running
Screenshot 5 – AndEX Nougat – Adding a Gmail account – must be done for Google Play Store to work
Screenshot 6 – AndEX Nougat – Aptoide App Manager running
Screenshot 7 – AndEX Nougat running in VMware
Screenshot 8 – AndEX Nougat running in VirtualBox

DOWNLOAD android_x86_64-nougat-7.0-gapps-exton-build-870mb-161107.iso for 9 $

There is a newer version of AndEX Nougat, namely AndEX Nougat 7.1.1 Build 170201. I have kept Build 161107 though since you can’t run Build 170201 in VirtualBox or VMware with sound working.

Note3: Android-x86 KitKat 4.4.4 Exton Build 9 160214 can run on many more laptops/computers than AndEX Nougat 7.0 and/or AndEX (Android-x86) Marshmallow 6.0.1.

Note4: The AndEX Lollipop ISO has been out on SourceForge.net and the Swedish Linux Society for free from 150307 until 150402. The ISO file was downloaded about 50000 times during that period. More than any of my other Linux distributions (ever).

Android is a trademark of Google Inc.

9 Comments AndEXAndroidEXTON Linux systems

Android-x86_64 Nougat 7.0 with GAPPS and kernel 4.4.19-exton-android-x86_64

andex-nougat-home-desktop-smallestNEWS 160904: AndEX – Nougat 7.0 with kernel 4.4.19-exton-android-x86_64 and GAPPS
My build of Android-x86_64 Nougat 7.0 has GAPPS pre-installed. I.e. Google Play Services, Google Play Store, Gmail, YouTube and more apps. For example: Aptoide App Manager. The ISO is called android-x86_64-7.0-nougat-gapps-exton-build-689mb-160904.iso.

ABOUT Andex Nougat
My compiled Android-x86_64 system (Nougat 7.0) can run live (from CD) on certain computers. It is best installed to a USB stick or to hard drive and running from there. The system can, however, be installed on almost all newer laptops (and some Desktop computers). For example Acer (Aspire), HP, Samsung, Dell, Toshiba, Lenovo, Thinkpad, Fujitsu, Panasonic and Asus laptops. I can also mention that I could run this Nougat version without problems on a HP Pavilion 500-317no Desktop Computer. I could also run it very well live on the HP Desktop computer. The Android system is distributed in the form of an ISO file as the rest of my Linux distributions. I.e. you must (as usual) burn the ISO file to a CD before you can install AndEX Nougat to hard drive. Read about how to burn ISO files. Or skip that. Just use ImgBurn. Nothing can go wrong. You can also download my Android Nougat system in the form of a zip-file (android-x86_64-7.0-nougat-gapps-exton-build-731mb-160904.zip) and do a manual installation to hard drive. That can even be done to a drive where you already have another Linux system (for example Ubuntu 16.04) installed. Read more about different installations below.

Android Nougat 7.0 was released 160822.

About the Android-x86 project – my sources
All AndEX versions are dependent of the Android-x86 Project’s activity and development.

More about AndEX Nougat
Nougat 7.0 is the latest version of the Android mobile operating system developed by Google. I call my remaster of it AndEX Nougat. It uses “my” special kernel 4.4.19-exton-android-x86_64 with some extra features. I.e. extra drivers. My Android-x86 KitKat 4.4.4 build from 2016-02-14 will also cost you 9 $. It has two advantages over the Nougat and Marshmallow versions: The system can be used also on older laptops and it runs very well live in VirtualBox. Read more about the KitKat 4.4.4 version 160214 or DOWNLOAD it instantly.

Installing new apps in AndEX Nougat
Use Google Play Store or Aptoide App Manager, which are pre-installed. Just make your choices…

Install the system to hard drive
Say for example that you have a laptop with Windows 10 installed as the only operating system. If you just create one extra partition of about 5 GB you can install Android Nougat on this extra partition and then “dual-boot”. I.e. you can turn on your computer (called “booting it up”) and decide whether you want to start Windows or Android Nogat. Grub will be installed as boot handler/loader during the installation of Android Nougat. Note: The installation will take only about one minute. And the installation to hard drive is so simple that a 10 year old child can do it.

More about Grub and “dual-boot/multi-boot”

If you already have have one or more Linux systems installed on your computer you should skip installing Grub during the installation of AndEX. If you use Grub2 (which Ubuntu and most other Linux systems use as boot loader) you should instead add these lines to /boot/grub/grub.cfg or /etc/grub.d/40_custom – for example:
menuentry ‘Android-x86_64 7.0 Nougat 160904 (sda8)’ {
insmod gzio
insmod part_msdos
insmod ext2
set root=’hd0,msdos8′
linux /android-2016-09-04/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64  \
acpi_sleep=s3_bios,s3_mode androidboot.selinux=permissive SRC=/android-2016-09-04 DPI=140 \
UVESA_MODE=1920×1080

initrd /android-2016-09-04/initrd.img
}

NOTE 1: On some computers you may have to add nomodeset to the linux boot line. If so you may also have to remove DPI=140 and UVESA_MODE=1920×1080 from the linux boot line. (AndEX won’t start otherwise).

NOTE 2: The DPI=140 entry provides a hint about the display’s pixel density in dots per inch. This is an important setting — if the Android display’s icons and text look too small and crowded, increase this number. If things seem too big, make it smaller.

NOTE 3: The UVESA_MODE=1920×1080 entry describes the display size. This is also an important setting. If you know your display’s actual dimensions, enter them here. But not all dimensions work —
it sometimes happens that a display specification that’s possible in principle isn’t feasible in practice.

If you use Grub Legacy (which is very unusual today even though Android Nougat uses it) you should add these lines to /boot/grub/menu.lst
title Android-x86_64 7.0 Nougat 160904 (sda8)
root (hd0,7)

kernel /android-2016-09-04/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
androidboot.selinux=permissive SRC=/android-2016-09-04

initrd /android-2016-09-04/initrd.img

Alternative manual installation using android-x86_64-7.0-nougat-gapps-exton-build-731mb-160904.zip
When you unzip android-x86_64-7.0-nougat-gapps-exton-build-731mb-160904.zip you will have a folder called NOUGAT-160904. It has five files, namely data (folder), system (folder), initrd.img, kernel and ramdisk.img. Please note that this Nougat system has more apps pre-installed than what is in the system on the ISO file. If you have installed AndEX Nougat from CD you can simply replace the system folder in the folder android-2016-09-04 with the one in the folder NOUGAT-160904. You can also choose to place the folder NOUGAT-160904 on an empty ext4-formatted partition and/or in the root of another installed Linux system on your computer. If you have (for example) Ubuntu 16.04 installed on /dev/sda5 the Grub2 boot lines would look like this.

menuentry ‘Android-x86_64 7.0 Nougat 160904 (sda5)’ {
insmod part_msdos
insmod ext2
set root=’hd0,msdos5′
linux /NOUGAT-160904/kernel quiet root=/dev/ram0 androidboot.hardware=android_x86_64 \
androidboot.selinux=permissive SRC=/NOUGAT-160904

initrd /NOUGAT-160904/initrd.img
}

Error message re. Google Play Services
When you start up AndEX Nougat for the first time from hard drive (or from a USB stick) you will see a error message saying that Google Play Services has stopped. You must then go to Settings >> Apps >> Google Play Services and give Google Play Services all permissions. After that you won’t see this error message again. Note: Google Play Services is needed for all GAPPS to work, for example Google Play Store.

Bluethooth
Bluetooth is not working.

Language settings
You can (of course) run AndEX Nougat in any language. Just go to Settings and change to your preferred language. The changes will take immediate effect.

Mounting devices
You can’t mount (reach) your internal hard drive. You can however mount a “normal” USB stick. Just go to Settings >> Storage & USB. It will look like this. (I have mounted a USB stick 3.72 GB with CRUX/CruxEX on it).
andex-6.0-usbstick-mount-20151209

Wireless connections
Wifi works alright in AndEX Nougat. Just go to Settings and turn Wifi on. Unfortunately the support for Broadcom Wireless cards is not complete (in the Android-x86 project). I have experience from two different cards – BCM4311 and BCM43142. The first mentioned one works.

USB installation
Read my instruction. Learn how you can run AndEX from a USB stick with persistence. Read under A).

VirtualBox installation of AndEX Nougat
You can run AndEX Nougat live in VirtualBox. I.e. the system will start up properly, but you can’t install any new apps. You can, however, test run Web Browsers, YouTube and other apps. Once installed to hard drive (virtually) in VirtualBox the system works very well. Note: My Lollipop (160215) and KitKat (160214) versions can also run very well in VirtualBox. The Lollipop and KitKat systems can also run very well live in VirtualBox.

What’s the point?
Well, if you like your Android phone and all the apps you have installed on it I’m sure you will also like to run apps from your laptop. Bigger screen and better sound etc. Also: In AndEX Nougat Build 160904 almost all apps and games can be installed via Google Play Store. Still not convinced? Then read my article about “How useful an Androx-x86 system can be for the average computer user“.

NOTE1/WARNING1
You must use a fairly new/modern computer. Android-x86_64 Nougat won’t run (even start) on older computers. My other Android remaster KitKat 4.4.4 Build 160214 will run also on older computers.

NOTE2/WARNING2
Before you buy and download this version of AndEX Nougat you must be aware of that not all apps downloaded from Google Play Store can run in an Android-x86_64 system. Some very big (around 1GB) games for example won’t run. On the other hand I could run Pes Club Manager, which is of 866 MB and Traffic Rider of about the same size. You must also be aware of that some (many) games need a touchscreen.

Screenshots
Screenshot 1 – AndEX Nougat Desktop
Screenshot 2 – AndEX Nougat Desktop with some extra apps installed – Firefox, Google Chrome, Spotify and Traffic Rider
Screenshot 3 – AndEX Nougat – The Desktop at first boot
Screenshot 4 – AndEX Nougat – The beginning of your configuration – Give Google Play Services all permissions and you won’t see any error messages
Screenshot 5 – AndEX Nougat – Google Play Store running
Screenshot 6 – AndEX Nougat – Adding a Gmail account – must be done for Google Play Store to work
Screenshot 7 – AndEX Nougat – Aptoide App Manager running

DOWNLOAD for 9 $ android-x86_64-7.0-nougat-gapps-exton-build-689mb-160904.iso and android-x86_64-7.0-nougat-gapps-exton-build-731mb-160904.zip – (Both for 9 $)


Note3: Android-x86 KitKat 4.4.4 Exton Build 9 160214 can run on many more laptops/computers than AndEX Nougat 7.0 and/or AndEX (Android-x86) Marshmallow 6.0.1.

Note4: The AndEX Lollipop ISO has been out on SourceForge.net and the Swedish Linux Society for free from 150307 until 150402. The ISO file was downloaded about 50000 times during that period. More than any of my other Linux distributions (ever).

Android is a trademark of Google Inc.

21 Comments AndEXAndroid

AndEX (Android-x86) 5.1.1 Lollipop with GAPPS and kernel 4.4.0 – Build 160215

WordPress › Error

There has been a critical error on this website.

Learn more about troubleshooting WordPress.