In addition, you can set it up immediately during the installation process. You can install it by referring to the installation screen.
During the initial installation, the home setup will be properly installed using another storage device (/dev/sdb).
run in virtualbox - F29 install progress

I prefer to expand the partition after installation.
In short, create an lvm disk, copy the / home directory in /dev/sda through rsync, and link the lvm information created in /etc/fstab to /home in the /etc/fstab directory.
a. create lvm disk for /dev/sdb
# fdisk /dev/sdb
=> p ; check
=> n ; add new disk
=> t ; change to disk ext4 to lvm
=>wq : overwrite and quit
b. make lvm for /dev/sdb
# pvcreate /dev/sdb1
# vgcreate rau /dev/sdb1
# lvcreate -l 100%FREE -n pasi rua
# mkfs.xfs /dev/rua/pasi ; or mkfs.xfs /dev/mapper/rua-pasi
c. mount lvm
# mount /dev/rua/pasi /mnt
# rsync -avz /home/* /mnt/
# cp -Rf /home /home_backup
d. modify /etc/fstab
# vi /etc/fstab
/dev/mapper/rua-pasi /home xfs defaults 0 0
e. reboot and check
# reboot
# lvscan
[root@cugar simmon]# df
/dev/mapper/rua-pasi 10471424 147900 10323524 2% /home
I took my case as an example, and the lvm configuration was created using /dev/mapper/rua-pasi.
If it works normally, it will delete the backup folder.
See my basic instructions in an answer below and try to search the forum for an answer. As far as I recall, the same questions had been asked and answered before. (https://duckduckgo.com/?q=%2Fhome+sep... or so...)
I think Florian may have what I was doing wrong. "Select LVM, place / and /boot on sda and /home on sdb. " If I added / and then /boot anaconda would complain about no /swap. If I added /swap it seemed that would over write /boot and the disk would not boot.
I have a test system and am getting quit proficient at installing F28 and using gparted and dd to have blank HDs. I will try this again today.
I have found several good detailed and step by step tutorials on adding a second HD and/or moving /home to a second HD. It just seems if I know that a new system will have 2 HD and /home will be on a second HD the simplest thing is take care of this during installation.
Thanks. That worked using the anaconda gui at install time. /home is on sdb. Everything else on sda. Could not add the second LVG. Need to figure out the correct combination of adding items. Thanks again.