Open main menu

Wiki-Orange Pi β

Changes

Orange Pi 5 detail

335 bytes added, 14:06, 23 April 2023
Connect USB storage device test
|-
|
orangepi@orangepi:~$ '''cat /proc/partitions | grep "sd*"'''
|}
3) 使用 Use the mount 命令可以将 command to mount the U 盘挂载到disk to /mnt 中,然后就能查看 , and then you can view the files in the U 盘中的文件了disk<br>
{| class="wikitable" style="width:800px;"
|-
|orangepi@orangepi:~$ '''sudo mount /dev/sda1 /mnt/'''<br>orangepi@orangepi:~$ '''ls /mnt/'''<br>
test.txt
|}
The following command can be used to mount the U disk in exfat format on the Linux system<br>{| class="wikitable" style="width:800px;"|-|orangepi@orangepi:~$ '''sudo apt-get install exfat-utils exfat-fuse'''<br>orangepi@orangepi:~$ '''sudo mount -t exfat /dev/sda1 /mnt/'''|}4) 挂载完后通过 After mounting, you can view the capacity usage and mount point of the U disk through the '''df -h 命令就能查看 U 盘的容量使用情况和挂载点''' command<br>
{| class="wikitable" style="width:800px;"
|-
|
orangepi@orangepi:~$ '''df -h | grep "sd"'''<br>
/dev/sda1 29G 208K 29G 1% /mnt
|}