A file which is not deleted by normal user and also root
(using rm), for that type of file how we delete it?

Answers were Sorted based on User's Feedback



A file which is not deleted by normal user and also root (using rm), for that type of file how we d..

Answer / chin

Using chattr command we need to change the attributes.
and then normally remove using rm command.

ex: chattr -iIu example
then rm -rf example

Is This Answer Correct ?    21 Yes 0 No

A file which is not deleted by normal user and also root (using rm), for that type of file how we d..

Answer / vishak

using the chattr command you can remove that file.

eg: if you give chattr +i filename you will get that error.
To overcome type the following command.

chattr -i filename.
after that you use rm -rf filename it will work.

Is This Answer Correct ?    4 Yes 0 No

A file which is not deleted by normal user and also root (using rm), for that type of file how we d..

Answer / bharath

after entering cme which error ur getting.....

Is This Answer Correct ?    0 Yes 1 No

A file which is not deleted by normal user and also root (using rm), for that type of file how we d..

Answer / sanjay

Find the inode of that file then use find command to delete

ls -i

find . -inum <inode no> -exec /usr/bin/rm {} \;

Is This Answer Correct ?    0 Yes 3 No

A file which is not deleted by normal user and also root (using rm), for that type of file how we d..

Answer / ganeshkaliyappan

rm -rf filename

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More Linux Commands Interview Questions

I know ssh, telnet, dns,apache all are worked on TCP/UDP but i want to know any one service which are working on UDP only?

10 Answers   Wipro,


What would be the result of issuing the command cat phonenos?

0 Answers  


What is mkdir p linux?

0 Answers  


How do I check cpu usage?

0 Answers  


Display the Disk Usage of file sizes under each directory in currentDirectory ?

8 Answers  






Find command can search for files by

0 Answers  


The head command writes the how many lines of a file to screen?

0 Answers  


What is parallel ssh?

0 Answers  


Explain about document formatting?

0 Answers  


What are the basic commands for user management?

0 Answers  


What is tty name?

0 Answers  


What is tail command in linux?

0 Answers  


Categories