Quote:
Originally Posted by newman
I mean this:
Code:
dd if=/dev/zero of=/mnt/base-us/swapfile bs=1M count=64
chmod +x /mnt/base-us/busybox
/mnt/us/busybox mkswap /mnt/base-us/swapfile
/mnt/us/busybox swapon /mnt/base-us/swapfile
It's the only combination of /mnt/us × /mnt/base-us which worked for me. It does not work for me with /mnt/us/ (not sure which step exactly).
|
Is that with or without the USB cable connected to a PC?
If yes, what PC? What PC O.S.?
======
Also try this one please =
Find next available loop device:
Using the device just found above rather than the /dev/loop0 shown in the following, do:
Code:
dd if=/dev/zero of=/mnt/base-us/swapfile bs=1M count=64
losetup /dev/loop0 swapfile
mkswap /dev/loop0
swapon /dev/loop0
If any of those four commands are not shipped with the firmware, then precede them with the /mnt/base-us/busybox magic, same as you have been doing.