mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-02-03 23:47:16 +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
|
||
|
```
|