guardianproject / lildebi

UNMAINTAINED please adopt! we can no longer maintain this
https://guardianproject.info/code
GNU General Public License v3.0
226 stars 55 forks source link

Add new supported device: Samsung Galaxy Tab 2 7.0 (P3110) with CM-11 #193

Open ghost opened 8 years ago

ghost commented 8 years ago

I have no issues when deploying Debian to my tablet Samsung Galaxy Tab 2 7.0 (P3110) with Cyanogenmod 11. But no swap support.

ghost commented 8 years ago

There are linux commands to create swap space, if it works, you could put it in your startup script.

Try this

#see where you are before you start
free -m

#first time only
dd if=/dev/zero of=/data/swapfile bs=1M count=512
mkswap /data/swapfile

#run on startup
swapon /data/swapfile

#check it's working
cat /proc/swaps
free -m

If it works, let us know, and also it would be nice if you make a pull request with the commands into the default startup script, but leave it commented out, so that other hackers can easily see how to do it and enable it for themselves. Let's all contribute and make lilDebi better.