My swap file was disabled after updrade, solution:
get UUID of the swap partition ex:
sudo vol_id /dev/sda2
output:
D_FS_USAGE=other
ID_FS_TYPE=swap
ID_FS_VERSION=2
ID_FS_UUID=15d63259-800b-4c5d-b459-480013793ec5
ID_FS_UUID_ENC=15d63259-800b-4c5d-b459-480013793ec5
ID_FS_LABEL=
ID_FS_LABEL_ENC=
ID_FS_LABEL_SAFE=
update the line :
UUID=15d63259-800b-4c5d-b459-480013793ec5 none swap sw 0 0
in /etc/fstab
with the correct value for UUID.
Friday, 30 November 2007
Upgrade Ubuntu Feisty to Gutsy, problem SWAP
Posted by zeekox at 07:17 1 comments
Labels: Ubuntu
Thursday, 22 November 2007
speed up Eclipse under linux
1. use official java VM
2. add/modify params in eclipse.ini:
-Xms1024m
-Xmx1024m
-XX:PermSize=256m
-XX:MaxPermSize=256m
NOTE: settings for 2048MB of RAM.
Adapt this to your amount of ram: http://www.eclipsezone.com/eclipse/forums/t61618.html
Or use vim... and ant!
Posted by zeekox at 05:23 0 comments