Hey, its great that you guys worked on the GUI install package. I'm having problems running it through the extras menu though. The debs seemed to install fine, and the app shows up on the extras menu, but it won't start up. I had previously installed manaos through xterm, and it was working (granted, with much bugs, as I think I installed a very early version). do I need to remove the old files? if so, which files in which directories do I have to remove ? (I would also like to rid of any deadweight on my limited storage space)
#!/bin/sh BASE_DIR=/ DEB=$1 if [ "$1" = "" ] then echo "USAGE: undpkg.sh [package.deb]" exit 1 fi /usr/bin/dpkg -c $1 | sed "s/.*[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\} [0-9]\{2\}:[0-9]\{2\}:[0-9]\{2\} \(.*\)/\1/; s/\(.*\) -> .*/\1/" | sort -r | while read FILE do FILE=$BASE_DIR/$FILE if [ -f "$FILE" ] then rm "$FILE" elif [ -d "$FILE" ] then rmdir "$FILE" 2>/dev/null fi done