Hello Nicholai09,
Is there a reason you need to download the entire /home directory? You could simply enable backups in WHM > Backup > Configure Backup area in WHM, then set them to download to a remote FTP server. This would then make a backup of all accounts, including the /home/username directories.
Otherwise, if you truly need just the /home directory, you could tar it up and move it to an account to download via FTP:
Code:
tar -pczf /home/user/homedirectory.tar.gz /home/
Here replace
user with the cPanel username and this will compress the directory into that user's directory. You may also need to change the ownership to that user to download it:
Code:
chown user:user /home/user/homedirectory.tar.gz
Of note, you will need to have sufficient space to create this archive file. If you do not, it will fail during packaging to create.
Finally, File Manager cannot have /home as an available option as it would be a root level account to do that, which isn't provided for cPanel access (root user only has WHM access rather than a direct cPanel account). Additionally, allowing /home or any other root level partition (one that only root or a sudo user can access) would be a huge security risk for FTP access.
Thanks.