right it started when i tried to create a swap file using
https://help.ubuntu.com/community/SwapFaq
i used of=/mount/mmckilp001/512Mb.swap
or similar
and then the pandora wouldnt run any apps
so i rebooted and got stuck about a cm from the end of the zaxxon screen
rebooted again and i got through to the desktop
still wouldnt load, so i deleted the file, still wouldnt load
so once again i rebooted, got stuck on the zaxxon screen again
rebooted and remove the sd card, got stuck on a blinking cursor after the zaxxon screen
reinserted sd card, and now constantly get stuck on the blinking cursor
ideally, i dont want to reflash, spent a lot of time customizing the desktop
any ideas
thanks
https://help.ubuntu.com/community/SwapFaq
Four-step Process to Add Swap
Creating a file the size you want.
Formatting that file to create a swapping device.
Adding the swap to the running system.
Making the change permanent.
For Adding a 512 MB swap
Creating a file for 512 MB size you want:
We will create a /mnt/512Mb.swap swap file.
sudo dd if=/dev/zero of=/mnt/512Mb.swap bs=1M count=512
Here count=512, means we want our file to contain 512 blocks of bs=1M, which means block size = 1 mebibyte (1 048 576 bytes). Be careful *not* to do this dd of=/mnt/512Mb.swap bs=1M seek=512 count=0 Though the file grows to 512Mb immediately, it will have holes that makes it unusable.
Formatting that file to create a swapping device:
sudo mkswap /mnt/512Mb.swap
Adding the swap to the running system:
sudo swapon /mnt/512Mb.swap
i used of=/mount/mmckilp001/512Mb.swap
or similar
and then the pandora wouldnt run any apps
so i rebooted and got stuck about a cm from the end of the zaxxon screen
rebooted again and i got through to the desktop
still wouldnt load, so i deleted the file, still wouldnt load
so once again i rebooted, got stuck on the zaxxon screen again
rebooted and remove the sd card, got stuck on a blinking cursor after the zaxxon screen
reinserted sd card, and now constantly get stuck on the blinking cursor
ideally, i dont want to reflash, spent a lot of time customizing the desktop
any ideas
thanks