Hello Fakher,
If you've already removed all files in /tmp that was owned by hostingp, then you might want to see if there are any processes still running for that user on the system:
Code:
ps aux|grep hostingp
Otherwise, run a find for any files and folders still owned by that user, although it would be strange for the user to own anything if they are terminated:
Code:
find / -user hostingp
Please note that a find of this nature is going to take a long time to process.
Please do check the user is actually terminated:
Code:
grep hostingp /etc/passwd
grep hostingp /etc/group