初恋璀璨如夏花 发表于 2016-4-30 14:37

wndr3800到了,关于使用问题

买的wndr3800到了,弄好了adb去广告,但是接上移动硬盘,开启samba只能看到新建的openwrt文件夹,以前的文件看不见。
之前用的小米路由器就可以全盘共享。




qhdxy 发表于 2016-4-30 14:58

根据你描述的内容来看,最简单的解决办法是把硬盘里的东西再放进新建的openwrt这个目录就行了

sun3797 发表于 2016-7-4 21:20

已经有了挂载的硬件位置,但没有分配挂在路径位置,修改一下让openwrt启动自动挂载到mount下!!
在/etc/hotplug.d/block/目录下找到XXX-mount这个文件,加入以下:

blkdev=`dirname $DEVPATH`
if [ `basename $blkdev` != "block" ]; then

    device=`basename $DEVPATH`
    case "$ACTION" in
      add)
                mkdir -p /mnt/$device
                # 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 -o nls=utf8 /dev/$device /mnt/$device
                elif [ "$isvfat" ]; then
                        mount -t vfat -o iocharset=utf8,rw,sync,umask=0000,dmask=0000,fmask=0000 /dev/$device /mnt/$device
                else
                        mount /dev/$device /mnt/$device
                fi
if [ -f /dev/${device}/swapfile ]; then
   mkswap /dev/${device}/swapfile
   swapon /dev/${device}/swapfile
fi
                ;;
      remove)
if [ -f /dev/${device}/swapfile ]; then
   swapoff /dev/${device}/swapfile
fi
                umount /dev/$device
                ;;
    esac

fi

之后就可以自动挂载了!

sun3797 发表于 2016-7-4 21:25

openwrt的挂载硬盘,与自动挂载的步骤可以参见我的微博:http://blog.sina.com.cn/s/blog_7b9016170102vhr9.html
页: [1]
查看完整版本: wndr3800到了,关于使用问题