Como tornar o arquivo: / etc / default / isc-dhcp-server editável (gravável)?

0

Estou em processo para configurar um servidor DHCP no Ubuntu 12.04 Desktop.

Eu preciso editar o arquivo: / etc / default / isc-dhcp-server

Como posso editá-lo e salvá-lo depois de aplicar as alterações necessárias?

    
por Optimight 10.01.2013 / 12:43

1 resposta

0

Tente:

$ SUDO_EDITOR=/path/to/text-editor sudoedit /etc/default/isc-dhcp-server

Na página de manual do sudo (8) :

When invoked as sudoedit, the -e option (described below), is implied.

[…]

The -e (edit) option indicates that, instead of running a command, the user wishes to edit one or more files.

[…]

  1. Temporary copies are made of the files to be edited with the owner set to the invoking user.
  2. The editor specified by the policy is run to edit the temporary files. The sudoers policy uses the SUDO_EDITOR, VISUAL and EDITOR environment variables (in that order). […]
  3. If they have been modified, the temporary files are copied back to their original location and the temporary versions are removed.
    
por 10.01.2013 / 12:58