CentOS 6.5 安装完成之后所有USB设备都不管用了,只有笔记本自带都键盘和鼠标管用,大家帮帮忙,需要怎么办啊?
http://www.oschina.net/question/592514_71990
是不是usb设备被禁用了,,
你要在Linux里使用U盘的话,你需要mount才行,不然它不会自动给你加载的!
http://www.tecmint.com/how-do-i-access-or-mount-windows-ntfs-partition-in-linux/
How to Mount Windows NTFS Partition in Linux
First you need to enable EPEL !
http://www.tecmint.com/how-to-enable-epel-repository-for-rhel-centos-6-5/
RHEL/CentOS 6 32-64 Bit
## RHEL/CentOS 6 32-Bit ##
# wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
## RHEL/CentOS 6 64-Bit ##
# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
根据你系统是下载相应版本安装
从EPEL安装ntfs-3g
yum --enablerepo=epel -y install ntfs-3g
安装fuse
yum install fuse
创建一个NTFS挂载点,根据你的需要,用其它的挂载目录也行.
mkdir /mnt/usb
找到你的USB设备,可使用ll /dev来确定哪个是你的USB设备
开始挂载U盘,下面的/dev/**sdb1**是我的U盘,你需要改成你的.下面把U盘挂载到/mnt/usb这个目录
mount -t ntfs-3g /dev/**sdb1** /mnt/usb
卸载弹出U盘
umount /mnt/usb