Create a folder on your desktop named:
FullAccessMode.{ED7BA470-8E54-465E-825C-99712043E01C}
Create a folder on your desktop named:
FullAccessMode.{ED7BA470-8E54-465E-825C-99712043E01C}
I have encountered this when moving my Xbian installation from 8GB card to 32GB one. The solution is to copy everything and force it to resize to 32GB.
1. dd copy old SD card to new bigger SD card (for example:
dd if=/dev/sdd of=/dev/sde bs=4M
where sdd is your old card and sde is your new SD card. Continue reading “Force Xbian resize partition when moving to bigger card”
I have Debian Jessie installed on gk802 Android stick running Freescale i.MX6 quad core CPU. Often I faced issues with kernel panic when allocating pages, which leaves stick unusable.
To mitigate this issue add following to your /etc/sysctl.conf Continue reading “How to prevent kernel panic when allocating page on android sticks running linux”
To keep SSH connection alive you must edit your ~/.ssh/config file (if the file does not exist create it) and enter the following on top of the file:
Host * ServerAliveInterval 60
First line applies this config to all hosts (*), and the second one is interval when to send keepalive packets in seconds (60).
Put this into ~/.bashrc file of your account (if the file does not exist, you create it):
shopt -s histappend PROMPT_COMMAND="history -a;$PROMPT_COMMAND"
In order for this to start working you need to log out and in again.