ubuntu 挂载exfat格式USB盘

挂载exfat格式u盘的步骤:
sudo apt-get install subversion
sudo apt-get install scons
sudo apt-get install libfuse-dev
sudo apt-get install gcc
svn co http://exfat.googlecode.com/svn/trunk/ exfat-read-only
cd exfat-read-only
scons
sudo scons install
rm –rf exfat-read-only

mount -t exfat -o iocharset=cp936 /dev/sdb1 /media/usbdisk

注意:
现在电脑一般使用串口硬盘,如果只用一个硬盘,则USB的设备号为sdb1,而不是sda1

mount -t exfat -o iocharset=cp936 /dev/sdb1 /media/usbdisk

你可能感兴趣的:(SVN,ubuntu,gcc,subversion)