Linux - How to increase Home directory size with out any software

Home

Hello ,
when i deleted some files from home directory, size has to increase but did not increase i tried deleting the files form recycle bin but didnt work
can any one help how can i get the size increase.
i have HOME dir size utilized 99%
any way i can increase the size

home is standard partation

Run the following command to list top 20 files eating disk space in /home/ directory:

sudo du -a /home | sort -n -r | head -n 20

See
https://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/

Be careful with delete operation. You might end up deleting important file. If I were you I will make backup of those file and then delete it with the rm command.

sudo du -a /home | sort -n -r | head -n 20
worked thankyou