Yakkety Yak MATE rc.local não existe [duplicado]

2

Eu sou novo para postar aqui e não estou familiarizado com os protocolos. Eu vi uma referência aqui 16.10 rc.local não existe e tentou usar esse comando

O comando foi

sudo systemctl enable rc-local.service

Esse comando, para mim, em 16.10 O MATE fornece o seguinte (não dá para resolver a formatação aqui, lamenta:

$ sudo systemctl enable rc-local.service
[sudo] password for chris: 
The unit files have no installation config (WantedBy, RequiredBy, Also, Alias
settings in the [Install] section, and DefaultInstance for template units).
This means they are not meant to be enabled using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
   .wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
   a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
   D-Bus, udev, scripted systemctl call, ...).
4) In case of template units, the unit is meant to be enabled with some
   instance name specified.

A reinicialização não tem efeito.

    
por wizardfromoz 18.03.2017 / 07:36

1 resposta

1

Uma solução

Uma solução rápida (não sei se é o jeito canônico):

Em um terminal, faça:

sudo touch /etc/rc.local
sudo chmod +x /etc/rc.local
sudo printf '#!/bin/bash\nexit 0' > /etc/rc.local
sudo reboot

Depois disso, o rc.local será chamado na inicialização do sistema. Insira o que você quer.

Antecedentes

Se você fizer isso em um terminal:

sudo systemctl edit --full rc-local

Você pode ver que o comentário principal contém linhas como:

# This unit gets pulled automatically into multi-user.target by
# systemd-rc-local-generator if /etc/rc.local is executable.

Isso indica que, neste sistema, se houver um arquivo chamado /etc/rc.local , que é executável, ele será puxado para o multi-user.target automaticamente. Então você acabou de criar o arquivo correspondente ( sudo touch... ) e torná-lo executável ( sudo chmod +x ... ).

    
por Jan 27.05.2017 / 10:39