Hi
I followed the instructions on windows to get the 5b to boot via nvme and it errors out. I want to run android for games on my tv.
Any thoughts?
Hi
I followed the instructions on windows to get the 5b to boot via nvme and it errors out. I want to run android for games on my tv.
Any thoughts?
What works for me is as follows. I have very little knowledge on hardware and the following steps are only based on experience.
Good luck.
I have the nvme in and it doesn’t appear to be showing as installed. Do I need to do something?
See if it shows up on sudo blkid probably as /dev/nvme0n1p1
You need to create a partition first. I had the problem. But I can’t find a good online tutorial at this time, and I forgot which tool I used…
Yes. You need to create one or more partitions on the nvme drive. Do:
sudo /sbin/fdisk /dev/nvme0n1
Then type n (creates new partition) p (primary partition), 1 or carriage return and continue carriage returns to allocate all of the space to the first partition. Once the prompt returns, enter w to write the partition information.
Then you have to format the drive:
sudo mkfs -t ext4 /dev/nvme0n1p1
assuming you want a Linux file system on it.