Custom query (1088 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (148 - 150 of 1088)

Ticket Resolution Summary Owner Reporter
#460 fixed Compressing the vmdk live-demo@… wildintellect
Description

So when we moved to remastersys for the building the iso we missed the part about ln 62 in setdown.sh

cat /dev/zero > zero.fill ; sync ; sleep 1 ; sync ; rm -f zero.fill

This is run to help compress the vmdk image. However the iso generation is run after this currently. Which means the vmdk will contain the iso and it's tmp files.

2 options, shutdown, shrink and package the vm before iso generation OR run a cleanup after remastersys and the upload of the iso.

Something like

sudo remsatersys clean
cat /dev/zero > zero.fill ; sync ; sleep 1 ; sync ; rm -f zero.fill
#rm tmp, etc

Then shutdown, compress and provide the vm.

#1967 fixed conficts in file overview.rst at the bottom - looks like a merge error live-demo@… astrid_emde
Description
#1168 fixed Configure GeoNode to use postgis and fix permission problems live-demo@… ingenieroariel
Description

Jeff Johnson provided a guide in https://gist.github.com/jj0hns0n/6058788

# set to use sqlite by default, cant create superuser cuz read-only db
# use postgres
sudo su - postgres
createuser geonode
psql -c "alter user geonode with encrypted password 'geonode';"
createdb -O geonode geonode
sudo vi /etc/postgresql/9.1/main/pg_hba.conf 
# change local access to password
sudo /etc/init.d/postgresql restart
 
# setup local_settings.py
cd /usr/lib/python2.7/dist-packages/geonode/
sudo wget https://raw.github.com/GeoNode/geonode/master/geonode/local_settings.py.sample
sudo mv local_settings.py.sample local_settings.py
sudo /etc/init.d/apache2 restart
 
# syncdb
django-admin syncdb --settings=geonode.settings --all
 
# create a superuser (one from fixtures doesnt seem to work)
django-admin createsuperuser --settings=geonode.settings
 
# change to port 8082 in settings.py
 
django-admin updatelayers --settings=geonode.settings
 
# make the uploaded dir
sudo mkdir /usr/lib/python2.7/dist-packages/geonode/uploaded
sudo chown user:user /usr/lib/python2.7/dist-packages/geonode/uploaded
 
# run updatelayers
django-admin updatelayers --settings=geonode.settings
 
# this will have created the dirs under uploaded to be owned by user 
# chown them to apache
sudo chown -R www-data:www-data /usr/lib/python2.7/dist-packages/geonode/uploaded
 
# collectstatic
django-admin collectstatic --settings=geonode.settings
 
# change apache entry to static_root
# line 21 change to static root
sudo vi /etc/apache2/sites-available/geonode
 
 
# bounce apache for good measure
sudo /etc/init.d/apache2 restart
 
#cp some shapefiles to your home dir to test upload
cp /usr/share/pyshared/django/contrib/gis/tests/data/interstates/* .
 
# test upload in browser
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.