official:
nonfree:
grub menu:
menuentry "debian-live-10.10.0-amd64-standard.iso" {
iso_path="/miso/debian/debian-live-10.10.0-amd64-standard.iso"
export iso_path
search --set=root --file $iso_path
loopback loop $iso_path
root=(loop)
configfile /boot/grub/grub.cfg
loopback --delete loop
}
place iso image on the top of the partition
Boot with official iso and nonfree iso:
-live session works
-install with gui fail, break on detect and mount cd-rom
-install non-gui fail, break on detect and mount cd-rom
--------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------
hd media files:
or:
place iso image on the top of the partition
grub menu:
menuentry "debian live standard 10.10.0 gui install" {
insmod ext2
set root='(hd0,3)'
linux /miso/debian/hd-media/gtk/vmlinuz
initrd /miso/debian/hd-media/gtk/initrd.gz
}
menuentry "debian live standard 10.10.0 non gui install" {
insmod ext2
set root='(hd0,3)'
linux /miso/debian/hd-media/vmlinuz
initrd /miso/debian/hd-media/initrd.gz
}
Boot with official iso and nonfree iso:
-install with gui fail, in grub menu after press F10 or Ctrl+x shows up cli interface with:
(EE) 0: some text
.
..
...
(EE) 12: /lib/libc.so.6 ( some text ) [some text]
(EE) 13: Xorg ( some text ) [ some text ]
Fatal server error:
(EE) Caught signal 6 (Aborted) Server aborting
(EE) Server terminated wth error (1)
(debconf: ) GTK-warning ** : cannot open display: :0
-install non-gui work
-----------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------
After that i tested debian-live-testing-xfce and debian-live-testing-standard images with hd-media files:
And got the same result:
install with gui fail
install non-gui work
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
How to fix this error???
Debian-live iso with DE have calamares, so its easy to instal from live-session.
How to install debian from live-session from debian-live-standard iso? Is debian-live-standard in live session have installer like a calamares?