Hostname OpenWrt
Model Linksys WRT1900AC (Mamba)
Firmware Version OpenWrt Chaos Calmer r45275 / LuCI (git-15.090.50849-576e235)
Kernel Version 4.0.0-rc6
my external hard drive is not working very fast on 4.0.0-rc6
on the stock firmware i could copy a 16 Gb file in 25 mins - using openwrt it takes 2 hours and 25 minutes. the computer connects to the router via network cable, so not a wifi problem
the hdd is usb3 and is plugged into the usb3 slot (the usb light doesn't light on the router - i don't know if it is supposed to
i have kmod-usb3 installed. this is my automount script that mounts the hdd
blkdev=`dirname $DEVPATH`
if [ `basename $blkdev` != "block" ]; then
device=`basename $DEVPATH`
case "$ACTION" in
add)
mkdir -p /mnt/backups
# vfat & ntfs-3g check
if [ `which fdisk` ]; then
isntfs=`fdisk -l | grep $device | grep NTFS`
isvfat=`fdisk -l | grep $device | grep FAT`
isfuse=`lsmod | grep fuse`
isntfs3g=`which ntfs-3g`
else
isntfs=""
isvfat=""
fi
# mount with ntfs-3g if possible, else with default mount
if [ "$isntfs" -a "$isfuse" -a "$isntfs3g" ]; then
ntfs-3g /dev/$device /mnt/backups
elif [ "$isvfat" ]; then
mount -o iocharset=utf8 /dev/$device /mnt/backups
else
mount /dev/$device /mnt/backups
fi
;;
remove)
umount -l /mnt/backups
;;
esac
fi
can anybody help me - i assume it is getting usb2 instead of usb3 - how can i tell ?
(Last edited by ethereal on 7 Apr 2015, 23:48)