openwrt 自動掛載U盤、移動硬盤
opkg update
opkg install kmod-usb-core
opkg install kmod-usb-ohci #安裝usb ohci控制器驅動
#opkg install kmod-usb-uhci #UHCI USB控制器
opkg install kmod-usb2 #安裝usb2.0
opkg install kmod-usb-storage #安裝usb存儲設備驅動
opkg install kmod-fs-ext3 #安裝ext3分區(qū)格式支持組件
opkg install mount-utils #掛載卸載工具
opkg install ntfs-3g #掛載NTFS
opkg install kmod-fs-vfat #掛載FAT
opkg install block-mount
opkg install fdisk
opkg install usbutils #安裝了這個后可以用 lsusb
#U盤,移動硬盤自動掛載腳本
編輯/etc/hotplug.d/block/10-mount (用winscp工具連接路由,編輯文件)
___________________________以下是文件內容_________________________________
#!/bin/sh
# Copyright (C) 2009 OpenWrt.org (C) 2010 OpenWrt.org.cn
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
________________________________文件尾_________________________________
chmod 777 /etc/hotplug.d/block/10-mount #加運行權限
這樣就完成了自動掛載
插入USB硬盤后就會自動掛載
掛載Swap分區(qū)
###在/mnt/sda1/下創(chuàng)建一個64M的交換文件
dd if=/dev/zero of=/mnt/sda1/swapfile bs=1024 count=62142
###將這個交換文件用作Swap分區(qū)
mkswap /mnt/sda1/swapfile
###啟用活動分區(qū)
swapon /mnt/sda1/swapfile
###停止
swapoff /mnt/sda1/swapfile
openwrt 格盤
opkg update
opkg install e2fsprogs #安裝格盤軟件
mkfs.ext4 /dev/sda1 #格etx4
mkfs.ext3 /dev/sda1 #格etx3
mkfs.ext2 /dev/sda1 #格etx2
掛載windows共享文件 cifs
opkg install kmod-nls-utf8
opkg install kmod-fs-cifs
mkdir /mnt/share
mount -t cifs //192.168.1.2/tool /mnt/share -o username=administrator,password=123456,,nounix,noserverino,iocharset=utf8
聯(lián)系客服