Just an FYI, I don't know if anyone cares... I installed the SIS rpms from the latest OSCAR 4.2.1 beta along with the necessary prerequisits onto a fresh SuSE-10.0 system so I could build an imageserver. The SuSE-10.0 distro comes with things like perl-Tk and other pieces already rolled for the distro.
When I tried to run tksis to build my image I got the following error: linux:~ # tksis Can't locate SystemImager/Server.pm in @INC (@INC contains: ../lib /usr/lib/systeminstaller /usr/lib/systemimager /usr/lib/perl5/5.8.7/i586-linux-thread-multi /usr/lib/perl5/5.8.7 /usr/lib/perl5/site_perl/5.8.7/i586-linux-thread-multi /usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.7/i586-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.7 /usr/lib/perl5/vendor_perl .) at /usr/lib/systeminstaller/SystemInstaller/Tk/Image.pm line 30. BEGIN failed--compilation aborted at /usr/lib/systeminstaller/SystemInstaller/Tk/Image.pm line 30. Compilation failed in require at /usr/lib/systeminstaller/SystemInstaller/Tk/Main.pm line 22. BEGIN failed--compilation aborted at /usr/lib/systeminstaller/SystemInstaller/Tk/Main.pm line 22. Compilation failed in require at /usr/bin/tksis line 10. BEGIN failed--compilation aborted at /usr/bin/tksis line 10. I ended up having to apply the following patch to get it to work: --- ./usr/bin/tksis 2006-02-11 17:12:31.000000000 -0700 +++ /usr/bin/tksis 2006-02-11 17:04:41.000000000 -0700 @@ -5,7 +5,7 @@ use Tk; use Tk::Tree; -use lib '../lib','/usr/lib/systeminstaller'; +use lib '../lib','/usr/lib/systeminstaller','/usr/lib/systemimager/perl'; use strict; use SystemInstaller::Tk::Main; use SystemInstaller::Env; ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ Oscar-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/oscar-devel
