Failed to start cobbler.service: Unit not found.
时间: 2023-10-23 17:15:37 浏览: 92
As an AI language model, I don't have access to your system's configuration or logs. However, based on the error message you provided, it seems like the cobbler.service unit is not installed or has been removed from your system. You may try installing the cobbler package and starting the service again using the following commands:
1. Install the cobbler package:
```sudo apt-get install cobbler```
2. Start the cobbler service:
```sudo systemctl start cobbler.service```
If the service starts successfully, you can enable it to start automatically at boot time using the following command:
```sudo systemctl enable cobbler.service```
If the service fails to start, you may check the system logs for more information about the error using:
```sudo journalctl -xe```
阅读全文