Post History
I noticed that the error was error : file/android-11.13-r3/kernel not found So, I decided to find kernel location in Solus(A Linux distro). There's a way to copy path of any file in Linux. ...
Answer
#1: Initial revision
![kernel](https://software.codidact.com/uploads/TyAjtxXjxjD64iq5ZFG73Lb5) I noticed that the error was >error : file/android-11.13-r3/kernel not found So, I decided to find kernel location in Solus(A Linux distro). There's a way to copy path of any file in Linux. Click on a file than copy(<kbd>Ctrl</kbd>+<kbd>C</kbd>). Then, I found the following path. >x-special/nautilus-clipboardcopyfile:///run/media/istiak/Android-x86/bliss-x86-11.13/kernel I removed `x-special/nautilus-clipboardcopyfile:///run/media/istiak/Android-x86/` from that path cause, Android-x86 is detected by `/dev/sda2`. So, I don't need complete path. I made some changes to `/etc/grub.d/40_custom` #!/bin/sh exec tail -n +3 $0 # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. menuentry "Android-x86" { set root='(hd0,2)' linux /bliss-x86-11.13/kernel quiet root=/dev/ram0 androidboot.hardware=generic_x86 acpi_sleep=s3_bios,s3_mode SRC=/bliss-x86-11.13 initrd /bliss-x86-11.13/initrd.img} Then, problem solved...! Now, you can use Android.