blog/_posts/Linux/wsl/wsl-mount-disk.md
2024-12-12 13:36:53 +08:00

26 lines
753 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 👨🍼wsl下访问移动U盘硬盘
date: 2024-12-14
tags:
- Wsl
- Linux
---
wsl下在/mnt/目录下访问windows硬盘分区比如常见的C盘等但移动U盘或硬盘却不在/mnt/目录下,需要手动挂载。
在windows下看一下移动U盘或硬盘分配的盘符比如是“F”然后将其挂载到/mnt/目录下即可。具体操作如下:
```sh
# 挂载硬盘
sudo mkdir /mnt/f
sudo mount -t drvfs F: /mnt/f
```
注意:
1. -t drvfs-t 参数指定了文件系统的类型,这里使用的是 drvfs。drvfs 是用于WSLWindows Subsystem for Linux环境中的文件系统类型它允许将Windows驱动器挂载到WSL环境中,而不是ntfs。
2. 上述操作是在wsl下。