編輯 /etc/hotplug.d/block/10-mount
#!/bin/ash
case "$action" in
add)
for i in $(ls /dev/ | grep 'sd[a-z][1-9]')
domkdir -p /mnt/$i
mount -o iocharset=utf8,rw /dev/$i /mnt/$i
if [ $? -ne 0 ]
then
mount -o rw /dev/$i /mnt/$i
fidone
;;remove)
mount=`mount | grep -o '/mnt/sd[a-z][1-9]'`
for i in $mount
doumount $i
if [ $? -eq 0 ]
then
rm -r $i
fidone
;;esac
openwrt的transmission web頁面在/usr/share/transmission/web,刪除後上傳src資料夾內的美化web到該路徑就行
這是因為配置檔案設定在了臨時檔案上, 重啟後這個檔案就被重置了. 請設定這個引數到實際的儲存上
配置檔案在/etc/config/transmission
option config_dir '/mnt/sda1/transmission/.config' #hdd is mounted on /mnt/sda1
安裝python
由於想要掛點東西,需要python,所以再加上python的安裝
首先掛載usb,然後要準備寫入opkg檔案
在命令列輸入
mkdir /mnt/sda1/opkg/
找到/etc/opkg.conf,編輯
加入一行
dest usb /mnt/sda1/opkg
命令列輸入
opkg update
opkg install -d usb python3
鏈結usb目錄
export path=$path:/mnt/sda1/opkg/usr/bin
echo 'export path=$path:/mnt/sda1/opkg/usr/bin' >> /etc/profile
export ld_library_path=$ld_library_path:/mnt/sda1/opkg/usr/lib
echo 'export ld_library_path=$ld_library_path:/mnt/sda1/opkg/usr/lib' >> /etc/profile
繼續安裝git,screen,pip等
openwrt安裝python的方法
首先配置opkg源。備份初始conf mv etc opkg.conf etc opkg.conf.bak 新建配置 vim etc opkg.conf 新增如下內容 dest root dest ram tmp lists dir ext var opkg lists option overlay...
OpenWRT軟體安裝教程,安裝的幾種方法
這又是乙個方法,該目錄裡面的內容,在路由器重啟後,會丟失。但如果軟體已經安裝,會儲存到flash裡面,安裝後的軟體,是不會丟失的。這裡可以忽略,也可以用這個命令 cd tmp opkg install ipk 是您的軟體名 如果 ipk放置在http伺服器上,還可以使用下面的方法安裝 opkg in...
N1安裝docker版本的openwrt做旁路由
這裡使用恩山大佬flippy的映象 開始之前,假設你已經安裝好n1的armbian系統和docker.如未安裝請參考 ip link set eth0 promisc on docker network create d macvlan subnet 192.168.123.0 24 gateway...