Custom Query (1138 matches)
Results (193 - 195 of 1138)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#455 | fixed | Geonetwork Launch Fails | ||
Description |
Geonetwork startup scripts rely on relative paths, the launcher on the desktop fails to get the user into the correct starting path. Also requires sudo command which is easy to fix by prepending, the sudo password: echo user | sudo -S ./start_geonetwork.sh |
|||
#456 | fixed | Deegree Launchers Fail | ||
Description |
Similar to Geonetwork degree fails to launch, primarily due to permissions which is solved by: echo user | sudo -S /usr/bin/deegree_start.sh This works great from the command line but does not seem to execute from the launcher. Does not appear to be execute permission on the launchers. NOTE:Firefox threw an error if it was already open and deegree was started. In one case an error message saying I had to wait for the current firefox to close and in the other case it opens a new tab but fails to load with a can't find page. Even though when you go to the location and hit enter it loads fine. |
|||
#460 | fixed | Compressing the vmdk | ||
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. |