fbelavenuto / arpl

Automated Redpill Loader
GNU General Public License v3.0
7.24k stars 1.57k forks source link

arpl boot the loader in ikuai VM,but it can't find the disk in Synology to install #599

Open SevenPlusJun opened 1 year ago

SevenPlusJun commented 1 year ago

i burned arpl to a ikuai vm disk like this: 2

error out like this: 6 5 4 3 1

SevenPlusJun commented 1 year ago

i found the code in /opt/arpl/init.sh: # Wait kernel enumerate the disks CNT=3 while true; do [ ${CNT} -eq 0 ] && break LOADER_DISK="blkid | grep 'LABEL="ARPL3"' | cut -d3 -f1" [ -n "${LOADER_DISK}" ] && break CNT=$((${CNT}-1)) sleep 1 done if [ -z "${LOADER_DISK}" ]; then die "Loader disk not found!" fi NUM_PARTITIONS=$(blkid | grep "${LOADER_DISK}" | cut -d: -f1 | wc -l) if [ $NUM_PARTITIONS -ne 3 ]; then die "Loader disk not found!" fi

LOADER_DISK is null.

SevenPlusJun commented 1 year ago

above problem is solved by using part para-virtualization

SevenPlusJun commented 1 year ago

now, a new problem appeared like this: 7

i can find the disk in boot, but can't find it in Synology Web Assistant no matter what type by using disk. 8

SevenPlusJun commented 1 year ago

图片 图片 图片 图片

hulang commented 1 year ago

黑群晖老问题找不到硬盘,需要bios开启ahci,百度搜索bios修改硬盘模式,ide和ahci两种模式。我开启ahci就找到硬盘了。之前一直找不到。

SevenPlusJun commented 1 year ago

好像爱快改不了achi,只能IDE。。 只能等爱快的3.7版本更新硬盘直通了。。

hulang commented 1 year ago

好像爱快改不了achi,只能IDE。。 只能等爱快的3.7版本更新硬盘直通了。。

哦。。我是物理机安装的。

jack99699 commented 1 year ago

我跟你一样,也是爱快KVM安装,一模一样的问题。

fbelavenuto commented 1 year ago

Please configure ARPL image as USB stick or SATA disk. Another mode is not supproted

jack99699 commented 1 year ago

Please configure ARPL image as USB stick or SATA disk. Another mode is not supproted

ikuai virtual machine cannot set SATA. Is there any other way? This is ikuai's url: https://www.ikuai8.com/component/download?option=com_download Snipaste_2023-02-28_00-01-15 Snipaste_2023-02-28_00-00-17

SevenPlusJun commented 1 year ago

@jack99699 没有其他办法了,只能等爱快支持bios修改 或者硬盘直通

dintzees commented 1 year ago

above problem is solved by using part para-virtualization

i have same probleme but how i can use "part para-virtualization" to solve ?

ty