sudo fdisk -l
查看磁盘信息,可以得到其路径,如“/dev/sdb 1”,磁盘格式为fat 32。
sudo mount -t vfat /dev/sdb1 /media
注:若U盘为NTFS格式的话,挂载命令为:
sudo mount -t nfs /dev/sdb1 /media
cd /media
进入挂载U盘的主目录,运行:
ls
查看目录下的文件。
sudo umount /media/
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:Ubuntu在无法进入图形界面,只能在TTY界面需要挂载以及查看U盘或移动硬盘内容的方法!