Obsidian/Recognition/Programing/Linux/RHEL9/USB 마운트 (FAT32).md

17 lines
164 B
Markdown
Raw Normal View History

2023-08-14 16:19:25 +00:00
```bash
# USB 디렉토리 검색
fdisk -l
# 마운트할 폴더 생성
# 마운트
mount -t vfat /dev/sdc1 /tmp/usb
# 언마운트
umount /tmp/usbTest
```