First of all, check if the user is running any jailshell process is running

ps aufx |grep user |grep jailshell

Kill’em

Unmount the mounts created by that user using the below command:

for i in `cat /proc/mounts |grep virtfs |grep user_name_here |awk ‘{print $2}’`; do umount $i; done