Login

Login
  • Register
  • VectorDesign blog

    Testing Automation and general Tech Geek stuff

    Clean up trash from terminal

    Posted in linux on 7 June 2015 by vectordesign

    find the path of the trash folder by typing

    sudo find / -type d -name *Trash*

    you should have an output

    /media/root/virtual_boxes/.Trash-0
    /home/chester/.local/share/Trash

     

    choose the trash folder you want to delete

     

    sudo rm -rf /media/root/virtual_boxes/.Trash-0

     

    Leave a Reply