It’s a stranger issue on my box fc15.
##xarchiver-0.5.2-13.fc15.i686
Xarchiver to show zip/bz2/tar/rar… files correctly but not function for long time on zip.
when Xarchiver opens zipfile, it showed empty window, but it can correctly extract files.
I tried re-install Xarchiver rpm or re-compile from src. it still not working.
[Root cause]
it’s the problem of zip version
[suse@suse ~]$which zip
/u01/app/oracle/product/11.2.0/db_1/bin/zip
well I installed 11.2 db on this box that’s why zip directs to a wrong path. xarchiver only choose binary from $PATH, not hard coding..
## PATH=$ORACLE_HOME/bin:$PATH; export PATH
to solve, put /usr/bin/zip before the $ORACLE_HOME/bin
it’s not always a good practice to put $ORACLE_HOME/bin in $PATH……