mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-01-24 23:32:18 +08:00
10 lines
247 B
Markdown
10 lines
247 B
Markdown
```bash
|
|
cat > /etc/fstab << "EOF"
|
|
# file system mount-point type options dump fsck
|
|
# order
|
|
|
|
|
|
/dev/sdX / ext4 defaults 1 1
|
|
EOF
|
|
```
|