rpi-clone icon indicating copy to clipboard operation
rpi-clone copied to clipboard

Which command to see what device is booted from?

Open Barabba11 opened this issue 2 years ago • 7 comments

Hi, I've cloned to USB and rebooted, the SD still inserted, now how can I determine from which device has booted? There is any command "sudo rpi-clone -check" that may tell me the situation? Thanks I've opened cmdline.txt but there is nothing interesting there, only "root=PARTUUID=b6b3f6b9-02" but what it is I don't know

Barabba11 avatar Nov 15 '21 08:11 Barabba11

Use mountand blkid

framps avatar Nov 15 '21 08:11 framps

Use mountand bklid

thanks, may you please write me step by step ech command to type? sorry I'm not really expert here

Barabba11 avatar Nov 15 '21 10:11 Barabba11

With mount you detect which partitions are used for /boot and / (rootfs). With blkd you get the UUIDs used by these partitions.

Example I executed on one of my Raspberries:

pi@idefix:~ $ mount | grep -E " (/|/boot) "
/dev/mmcblk0p2 on / type ext4 (rw,noatime)
/dev/mmcblk0p1 on /boot type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro)
pi@idefix:~ $ blkid
/dev/mmcblk0p1: LABEL_FATBOOT="boot" LABEL="boot" UUID="4AD7-B4D5" TYPE="vfat" PARTUUID="e181e42f-01"
/dev/mmcblk0p2: UUID="50a65405-e5a5-40eb-9fbf-254b09eb432c" TYPE="ext4" PARTUUID="e181e42f-02"

Example of a PXE booted Raspberry:

pi@raspberrypi-buster-pxe-1:~ $ mount | grep -E " (/|/boot) "
192.168.0.9:/volume1/pxe_nfs/87f728f5 on / type nfs (rw,relatime,vers=3,rsize=4096,wsize=4096,namlen=255,hard,nolock,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.0.9,mountvers=3,mountproto=tcp,local_lock=all,addr=192.168.0.9)
192.168.0.9:/volume1/pxe_tftp/87f728f5 on /boot type nfs (rw,relatime,vers=3,rsize=131072,wsize=131072,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.0.9,mountvers=3,mountport=892,mountproto=udp,local_lock=none,addr=192.168.0.9)
pi@raspberrypi-buster-pxe-1:~ $ blkid

framps avatar Nov 15 '21 11:11 framps

thank you for your kind answer :) May I also ask, how exacly rpi-clone works? For example: I have cloned with "sudo rpi-clone -f -v sda"

  1. the Pi bios will always boot as SD first priority drive, if nothing is found on SD slot then it tries to boot fromt he first USB device recognized.
  2. if there is an SD, then it checks some files in it, and if there is written to boot from USB it will boot from USB, SD will be mounted then into /media/pi
  3. if in SD it's written to boot from USB but USB is not present, the system will keep boot from SD..

This is helpful to understand how I can quickly manage a failure with a backup. Thank you!

EDIT: reading back instructions I think here is the trick, but sorry I can't understand it well, maybe better rewriting it in a more clear way. -l - leave SD card to USB boot alone when cloning to SD card mmcblk0 from a USB boot. This preserves a SD card to USB boot setup by leaving the SD card cmdline.txt using the USB root. When cloning to USB from SD card this option sets up the SD card cmdline.txt to boot to the USB disk.

so if I?m cloning from SD to USB and I use -l the next reboot will use the boot partition of SD, but the rootfs partition od USB. Will the SD rootfs be mounted too? From USB to SD, it keeps as well the rootfs of USB. Now if I want to change just the boot method, should I do a full clone or there is a quicker way to set only boot flags? And, as before, if for example I set the USB for rootfs but it is not present, they system will not boot?

Barabba11 avatar Nov 22 '21 10:11 Barabba11

how exacly rpi-clone works?

I haven't checked the code in detail. I wrote my own backup tool.

framps avatar Nov 22 '21 18:11 framps

I've checked myself, to be honest the author explained it, but maybe too deep )) I mean, there are too many concepts and words, and it's easy to get in trouble/don't be sure. In this care are better the examples in my opinion, what I understood is:

the parameter -l will always set the boot to USB, to do that, as the Pi always will use SD (if present) as the first boot device, it's needed to change the boot on SD to tell the raspbian to jump suddenly on USB. That means the USB will always work as boot device, even if the SD is extracted, as a second valid priority boot device, but to make the SD boot on itself again it's needed to change back its boot. Luckly the author made it really easy, just rename the original cmdline.txt.boot to cmdline.txt, (backup the existing one to cmdline.txt.usb if you want to boot again from usb in future). As the author used PARTUUID to identify the boot device, and as the PARTUUID changes for every device (it's like a serial number) I suppose the system will be bootable with only that USB, if the SD card will still inserted (remove it then, to use another USB, ot repeat the clone to a new USB again with -l)

Barabba11 avatar Nov 22 '21 21:11 Barabba11

To check which device is used for boot, I typically run lsblk, which if I have a USB drive plugged in but am booting off microSD or eMMC looks like:

$ lsblk
NAME        MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda           8:0    0 232.9G  0 disk 
mmcblk0     179:0    0 119.1G  0 disk 
├─mmcblk0p1 179:1    0   256M  0 part /boot
└─mmcblk0p2 179:2    0 118.8G  0 part /

Typically the MOUNTPOINT is / and /boot for the two partitions the boot device is using (in this case mmcblk0).

After I used rpi-clone to clone to sda, shut down, pulled out the microSD card, and rebooted, I saw:

$ lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0 232.9G  0 disk 
├─sda1   8:1    0   256M  0 part /boot
└─sda2   8:2    0 232.6G  0 part /

geerlingguy avatar Jan 20 '22 23:01 geerlingguy