notes/Ubuntu/挂载新硬盘.md

26 lines
449 B
Markdown
Raw Normal View History

2023-09-11 18:18:20 +08:00
# 挂载新硬盘
#### 查看硬盘信息
```
sudo fdisk -l
```
#### 硬盘格式化
```
sudo mkfs -t ext4 /dev/sdb
```
#### 挂载硬盘分区
```
2023-11-11 13:41:44 +08:00
sudo mount -t ext4 /dev/sdb /home/hehaoyang/works/quectel
sudo chown hehaoyang:hehaoyang /home/hehaoyang/works/quectel
2023-09-11 18:18:20 +08:00
```
#### 配置硬盘在系统启动自动挂载
* 在文件 /etc/fstab 中加入如下配置
```
2023-11-11 13:41:44 +08:00
/dev/sdb /home/hehaoyang/works/quectel ext4 defaults 0 0
2023-09-11 18:18:20 +08:00
```