here's my current ZFS status :
t@tsu:~$ zpool status pool: bpool state: ONLINE scan: none requested config: NAME STATE READ WRITE CKSUM bpool ONLINE 0 0 0 73ea4055-b5ea-894b-a861-907bb222d9ea ONLINE 0 0 0 errors: No known data errors pool: rpool state: ONLINE scan: none requested config: NAME STATE READ WRITE CKSUM rpool ONLINE 0 0 0 7905bb43-ac9f-a843-b1bb-8809744d9025 ONLINE 0 0 0 errors: No known data errors I want to add the following drive to my pool (for space) :
This is the current disk with the OS (ubuntu 20.04) under ZFS :
t@tsu:~$ sudo lshw -class disk [sudo] password for t: *-disk:0 description: ATA Disk product: Samsung SSD 850 physical id: 0 bus info: scsi@2:0.0.0 logical name: /dev/sda version: 2B6Q serial: S2RBNX0J524197X size: 465GiB (500GB) capabilities: gpt-1.00 partitioned partitioned:gpt configuration: ansiversion=5 guid=32f4df93-2b50-4a68-a888-f0570adac413 logicalsectorsize=512 sectorsize=512 *-disk:1 description: ATA Disk product: Crucial_CT525MX3 physical id: 1 bus info: scsi@4:0.0.0 logical name: /dev/sdb version: R040 serial: 172918010661 size: 489GiB (525GB) capabilities: gpt-1.00 partitioned partitioned:gpt configuration: ansiversion=5 guid=d3e2b4ab-2c44-4da8-ac0c-fdb8053d35da logicalsectorsize=512 sectorsize=512 I can't work out the syntax, I'm pretty sure I'm not supposed to do :
zpool create addonpool /dev/sdb zpool add addonpool mirror /dev/sda4 /dev/sdb probably more something like this:
zpool add rpool mirror /dev/sda4 /dev/sdb (because rpool is 4th partition and in the case of the unpartitioned disk, I'm adding the whole disk.)
but yeah I don't know.
Also would logging out and into a tty suffice to perform this or will I have to resort to doing this from a liveUSB?

