0

When I was looking for big files that were using a lot of space on my CentOS VM, I noticed the following:

/home/|MOUNT_POINT|/backup/11-17-14/custom/home/user1.tar.gz
/home/|MOUNT_POINT|/backup/11-17-14/custom/home/user2.tar.gz
/home/|MOUNT_POINT|/backup/11-17-14/custom/home/user3.tar.gz
/home/|MOUNT_POINT|/backup/11-17-14/custom/home/user4.tar.gz
/home/|MOUNT_POINT|/backup/11-17-14/custom/home/user5.tar.gz
/home/|MOUNT_POINT|/backup/11-17-14/custom/home/user6.tar.gz

I would like to delete these backup files, however I see no /home/backup/, nor /backup/ and I can't enter the |MOUNT_POINT| directory itself. What can I do?

HopelessN00b
  • 53,795
  • 33
  • 135
  • 209
user2019515
  • 103
  • 1
  • 6

1 Answers1

3

Some possibilities:

To cd into the directory, use one of the following:

  • cd '/home/|MOUNT_POINT|'
  • cd /home/\|MOUNT_POINT\|

To remove the stuff:

rm /home/\|MOUNT_POINT\|/backup/11-17-14/custom/home/user?.tar.gz
Sven
  • 98,649
  • 14
  • 180
  • 226