Help?!


Recommended Posts

what command would you use to make sure that you cannot easily delete a file called backup (which you own) without affecting other permissions?

This is a question in a lab I'm doing. I've racked my brain, I've racked Google's brain. I've tried a TON of other things, and I can't seem to figure it out... can anyone help?

Link to comment
https://www.neowin.net/forum/topic/1056948-help/
Share on other sites

have a look at chattr command

e.g : chattr +i filename.

with this command the permissions does not change and nor you can edit or delete the file unless >>>> chattr -i filename

Good command, but chattr +u backup is probably better (makes the file only undeleteable).

http://linux.about.com/od/commands/l/blcmdl1_chattr.htm

Link to comment
https://www.neowin.net/forum/topic/1056948-help/#findComment-594643080
Share on other sites

Upon closer inspection of the man page for chattr, +u would appear to be wrong:

When a file with the `u' attribute set is deleted, its contents are saved. This allows the user to ask for its undeletion.

But +i should work:

A file with the `i' attribute cannot be modified: it cannot be deleted or renamed, no link can be created to this file and no data can be written to the file. Only the superuser or a process pessessing the CAP_LINUX_IMMUTABLE capability can set or clear this attribute.
Link to comment
https://www.neowin.net/forum/topic/1056948-help/#findComment-594643230
Share on other sites

rm /bin/rm :D

But then again if you don't want to screw the system, chattr +i is the way to go.

AFAIK you must execute it as root, though, and root still can delete the file. It just prevents plain users from modifying it in any way.

You could also make the file undeletable for every user including root using SELinux, or replace rm with the safe-rm wrapper and add your backup file to the blacklist.

Link to comment
https://www.neowin.net/forum/topic/1056948-help/#findComment-594643438
Share on other sites

Correct answer is

Chmod u-w backup

That removes write permissions, but that doesn't prevent you from deleting the file, even in a regular, non-root account.


[nick@fedora16vm ~]$ touch file.txt
[nick@fedora16vm ~]$ ll file.txt
-rw-rw-r-- 1 nick nick 0 Feb 10 13:06 file.txt
[nick@fedora16vm ~]$ chmod u-w file.txt
[nick@fedora16vm ~]$ ll file.txt
-r--rw-r-- 1 nick nick 0 Feb 10 13:06 file.txt
[nick@fedora16vm ~]$ rm file.txt
rm: remove write-protected regular empty file `file.txt'? y
[nick@fedora16vm ~]$ ll file.txt
ls: cannot access file.txt: No such file or directory
[/CODE]

Edit:

/threadhijack: I'm unfamilar with the chattr, but highly interested... but I can't get it work. Any ideas? (Fedora 16)

[CODE]
[nick@fedora16vm ~]$ chattr +i file.txt
chattr: Operation not permitted while setting flags
[/CODE]

Link to comment
https://www.neowin.net/forum/topic/1056948-help/#findComment-594646092
Share on other sites

That was the answer the Professor gave me, and the program he wrote to check answers said it was correct... thus I have to accept it's wrong, even if it isn't. :s

Link to comment
https://www.neowin.net/forum/topic/1056948-help/#findComment-594646242
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

  • Recent Achievements

    • One Month Later
      Sopa flores earned a badge
      One Month Later
    • First Post
      StaticMatrix earned a badge
      First Post
    • Week One Done
      StaticMatrix earned a badge
      Week One Done
    • Rookie
      lamborghiniv10 went up a rank
      Rookie
    • One Month Later
      pinnclepd earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      506
    2. 2
      PsYcHoKiLLa
      206
    3. 3
      +Edouard
      155
    4. 4
      Steven P.
      91
    5. 5
      ATLien_0
      79
  • Tell a friend

    Love Neowin? Tell a friend!