Não é possível editar plugins / sudoers / ins _ *. h

3

Estou tentando editar a lista de insultos no Ubuntu que, como descrito: Como adicionar uma lista de insultos? , que está localizado em: plugins/sudoers/ins_*.h .

Eu tentei:

sudo visudo -f /plugins/sudoers/ins_*.h

Qual deve editar esse arquivo de acordo com a página de manual visudo , mas parece que não funciona.

Saída de ls -al / :

$ ls -al /
total 105
drwxr-xr-x  24 root root  4096 Feb 21 15:10 .
drwxr-xr-x  24 root root  4096 Feb 21 15:10 ..
drwxr-xr-x   2 root root  4096 Feb 13 12:03 bin
drwxr-xr-x   4 root root  1024 Feb 21 19:07 boot
drwxr-xr-x   2 root root  4096 Feb 12 16:41 cdrom
drwxr-xr-x  15 root root  4420 Feb 27 23:37 dev
drwxr-xr-x 150 root root 12288 Feb 28 00:37 etc
drwxr-xr-x   5 root root  4096 Apr 19  2012 home
lrwxrwxrwx   1 root root    37 Feb 12 17:14 initrd.img -> /boot/initrd.img-3.2.0-76-generic-pae
lrwxrwxrwx   1 root root    36 Feb 12 16:43 initrd.img.old -> boot/initrd.img-3.2.0-51-generic-pae
drwxr-xr-x  27 root root  4096 Feb 26 15:51 lib
drwx------   2 root root 16384 Feb 12 16:32 lost+found
drwxr-xr-x   2 root root  4096 Jul 23  2013 media
drwxr-xr-x   2 root root  4096 Apr 19  2012 mnt
drwxr-xr-x   3 root root  4096 Feb 12 18:51 opt
dr-xr-xr-x 191 root root     0 Feb 27 23:36 proc
drwx------  10 root root  4096 Feb 20 20:09 root
drwxr-xr-x   2 root root  4096 Feb 21 15:10 .rpmdb
drwxr-xr-x  23 root root   880 Feb 27 23:37 run
drwxr-xr-x   2 root root 12288 Feb 13 12:03 sbin
drwxr-xr-x   2 root root  4096 Mar  5  2012 selinux
drwxr-xr-x   2 root root  4096 Jul 23  2013 srv
drwxr-xr-x  13 root root     0 Feb 27 23:36 sys
drwxrwxrwt  12 root root  4096 Feb 28 01:17 tmp
drwxr-xr-x  11 root root  4096 Feb 12 17:51 usr
drwxr-xr-x  12 root root  4096 Feb 27 19:45 var
lrwxrwxrwx   1 root root    33 Feb 12 17:14 vmlinuz -> boot/vmlinuz-3.2.0-76-generic-pae
lrwxrwxrwx   1 root root    33 Feb 12 16:43 vmlinuz.old -> boot/vmlinuz-3.2.0-51-generic-pae
    
por RootFAIL 28.02.2015 / 05:23

1 resposta

3

Leia novamente:

  

Para editar a lista de insultos, você precisará editar a fonte e recompilar.

Portanto, obtenha a origem e as dependências:

apt-get build-dep sudo
apt-get source sudo
cd sudo*

Edite os arquivos. Observe que não há barra inicial, pois esse é um caminho relativo:

vim plugins/sudoers/ins_*.h

Construir:

dpkg-buildpackage -us -uc -b

Instalar:

sudo dpkg -i ../sudo_*.deb
    
por muru 28.02.2015 / 07:28

Tags