View Single Post
Old 10-28-2015, 07:00 AM   #106
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by newman View Post
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:
Code:
losetup -f
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.
knc1 is offline   Reply With Quote