Skip to content
This repository has been archived by the owner on Mar 6, 2022. It is now read-only.

Commit

Permalink
Create note.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aiminickwong authored Jul 4, 2021
1 parent 54e9673 commit a252be4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions docs/notes/note.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#### [ TIME ] Timed out waiting for device dev-ttyS0.device. [DEPEND] Dependency failed for Serial Getty on ttyS0.

A start job is running for dev-ttyS0.device

```
[ TIME ] Timed out waiting for device dev-ttyS0.device.
[DEPEND] Dependency failed for Serial Getty on ttyS0.
```

/lib/systemd/system/serial-getty@.service

## Steps

#### 1. First copy the template:

```
# cp /usr/lib/systemd/system/serial-getty@.service /etc/systemd/system/serial-getty@ttyS0.service
```

#### 2. Then edit the file and modify the agetty line:

```
[Service]
ExecStart=-/sbin/agetty --keep-baud 115200,38400,9600 %I $TERM <-- Change this parameter
Type=idle
```

#### 3. Create a symlink:

```
# ln -s /etc/systemd/system/serial-getty@ttyS0.service /etc/systemd/system/getty.target.wants/
```

#### 4. Reload the daemon and start the service:

```
# systemctl daemon-reload
# systemctl start serial-getty@ttyS0.service
# systemctl enable serial-getty@ttyS0.service
```

0 comments on commit a252be4

Please sign in to comment.