To find your home directory in Linux, you can use the following command:
echo $HOME
Alternatively, you can also use:
cd ~
pwd
The first command prints the path of your home directory, while the second command changes to your home directory and then prints the current working directory.
