With opkg.conf configured with a usb destination I can install packages with:
|
1 |
opkg -dest usb install <<package>> |
But sometimes, because files are not where the system expects the packages will not run once installed. A simple way to fix this is to run the following command after installing something to USB:
|
1 2 3 4 |
ln -s /mnt/usb/usr/lib/* /usr/lib/
ln -s /mnt/usb/etc/* /etc/
ln -s /mnt/usb/usr/sbin/* /usr/sbin/
ln -s /mnt/usb/usr/share/* /usr/share/ |
I made it a quick script so I can just run it to sync everything up.










