Posts: 3
Threads: 1
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Jul 2017
(05-03-2017, 01:45 AM)frankwu Wrote: I found one video on YouTube
"Asus Tinker Board Run Tinker OS From USB Or External Hard Drive"
https://www.youtube.com/watch?v=XLlMWfDfpzw
That installation still requires and boots from an SD card, with the OS running from the HDD. I believe what the OP is wants/is doing is booting fully from a portable drive without the need of an SD card, like the RPi3 and raspbian.
(04-06-2017, 09:04 AM)dazbobaby Wrote: Confirmed. I've installed it a USB memory stick and it's fine, so yes a HDD can't spin up quickly enough to satisfy the boot loader. Now how do I pause the boot loader for 10 seconds while it spins up?
https://the-bionic-cyclist.co.uk/2017/04...ard-drive/
How did you do this? writing the image directly to a USB and just plug and play? have you tried the rootwait option?
•
Posts: 18
Threads: 2
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Apr 2017
(07-11-2017, 01:18 PM)eltanque Wrote: (05-03-2017, 01:45 AM)frankwu Wrote: I found one video on YouTube
"Asus Tinker Board Run Tinker OS From USB Or External Hard Drive"
https://www.youtube.com/watch?v=XLlMWfDfpzw
That installation still requires and boots from an SD card, with the OS running from the HDD. I believe what the OP is wants/is doing is booting fully from a portable drive without the need of an SD card, like the RPi3 and raspbian.
(04-06-2017, 09:04 AM)dazbobaby Wrote: Confirmed. I've installed it a USB memory stick and it's fine, so yes a HDD can't spin up quickly enough to satisfy the boot loader. Now how do I pause the boot loader for 10 seconds while it spins up?
https://the-bionic-cyclist.co.uk/2017/04...ard-drive/
How did you do this? writing the image directly to a USB and just plug and play? have you tried the rootwait option?
Follow these instructions to install a SSD/HDD/USB Stick.
https://the-bionic-cyclist.co.uk/2017/04...ard-drive/
•
Posts: 18
Threads: 2
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Apr 2017
Does anyone know how to setup the extlinux.conf to boot from USB with the updated official image?
Code:
label kernel-4.4
kernel /zImage
fdt /rk3288-miniarm.dtb
append earlyprintk quiet splash plymouth.ignore-serial-consoles console=tty1 rw init=/sbin/init
Again I know little about linux, would it realy be as easy as:
somewhere on the 4th line?
•
Posts: 6
Threads: 1
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Nov 2017
(12-04-2017, 12:21 PM)dazbobaby Wrote: Does anyone know how to setup the extlinux.conf to boot from USB with the updated official image?
Code:
label kernel-4.4
kernel /zImage
fdt /rk3288-miniarm.dtb
append earlyprintk quiet splash plymouth.ignore-serial-consoles console=tty1 rw init=/sbin/init
Again I know little about linux, would it realy be as easy as:
somewhere on the 4th line?
This works for me
append earlyprintk quiet splash plymouth.ignore-serial-consoles root=/dev/sda1 console=tty1 rw init=/sbin/init
•
Posts: 18
Threads: 2
Likes Received: 0 in 0 posts
Likes Given: 0
Joined: Apr 2017
12-09-2017, 09:07 AM
(This post was last modified: 12-09-2017, 09:08 AM by dazbobaby.)
(12-04-2017, 11:02 PM)Patrician Wrote: (12-04-2017, 12:21 PM)dazbobaby Wrote: Does anyone know how to setup the extlinux.conf to boot from USB with the updated official image?
Code:
label kernel-4.4
kernel /zImage
fdt /rk3288-miniarm.dtb
append earlyprintk quiet splash plymouth.ignore-serial-consoles console=tty1 rw init=/sbin/init
Again I know little about linux, would it realy be as easy as:
somewhere on the 4th line?
This works for me
append earlyprintk quiet splash plymouth.ignore-serial-consoles root=/dev/sda1 console=tty1 rw init=/sbin/init
Thank you I'll give it a shot
•