hello my storage full by backup files need help how i can removed backup files via putty Disk /dev/mapper/VolGroup00-LogVol00 (/) 87 % command : cd /backup/cpbackup plez help how removed xxx folder example: rm -rf xxx/ ??? thanks
well if you have write access to these files a simple "rm" or "rmdir" command would suffice. usually it's just "rm" together with the options 'r' and 'f' then the name of the directory. r - to recurse through the subdirectories if you're trying to delete a directory f - force it, no questions asked (no prompts) so it would look something like this, rm -rf NAME_OF_DIR warning this could be dangerous. there is no undo in using this method should you delete something by mistake.