How to Remove Temporary Files Centos 8

devs3.pro
Devs3
Published on Feb, 01 2024 1 min read 0 comments
image

Login your centos8 using ssh - 

  • Go to superuser mode using sudo su
$ sudo su
  • Change to the /var/tmp directory.
# cd /var/tmp
  • Delete all files and directory in the current directory.
# rm -r *
  • Change to other you want to remove unnessery temporary file or directory
0 Comments