Vinci Calamari
Free Software Promoter
Join date: 27 Feb 2006
Posts: 192
|
04-07-2006 15:18
From: Sirex Cookie cant you just roll these up as .deb & .ebuilds etc and have the native package management(s) download the secondlife client ? would be alot neater in the long run.
apt-get install secondlife
Well this would depend on seperating user dir and system dir. This could be nice. The first step would be to do a simple system install to /usr/local. One then could also make some assumptions on existing libraries or copy them to /usr/local/lib instead of /usr/local/SecondLife. MoinMoin does something similar of you use a setup.py I think it would be nice if Linden Labs takes this script to a new level. At start one could say that normal install is "user install" but there is also a "system wide install" that would require root rights.
_____________________
The SecondTux Linux User Wiki: http://stux.wikiinfo.org
|
ninjafoo Ng
Just me :)
Join date: 11 Feb 2006
Posts: 713
|
04-08-2006 01:01
From: Vinci Calamari I am not a coder, but I found something in vmware-config.pl that might help: So did I. # Copyright 1998 VMware, Inc. All rights reserved.
_____________________
FooRoo : clothes,bdsm,cages,houses & scripts
QAvimator (Linux, MacOS X & Windows) : http://qavimator.org/
|
Vinci Calamari
Free Software Promoter
Join date: 27 Feb 2006
Posts: 192
|
04-09-2006 03:53
From: ninjafoo Ng So did I. # Copyright 1998 VMware, Inc. All rights reserved. Yeah, what? This is just a code example out of a public script. So they have a copyright. Yes, indeed. This was just an idea as how to solve. I did not want to suggest to violate their copyrights by citing a sniplet. And i also think that it is rather problematic to see parts of a script that might even not be solved otherwise as taboo. This would be like a software patent: Solved once, never use it again. If you wanted to say something different you should have explained more. Vinci
_____________________
The SecondTux Linux User Wiki: http://stux.wikiinfo.org
|
ninjafoo Ng
Just me :)
Join date: 11 Feb 2006
Posts: 713
|
04-09-2006 05:00
From: Vinci Calamari Yeah, what? This is just a code example out of a public script. So they have a copyright. Which bits of 'ALL RIGHTS RESERVED' are you having difficulty with? From: Vinci Calamari I did not want to suggest to violate their copyrights by citing a sniplet. You violated their copyright by routing through their IP and posting some of it to a public forum. To late, deed done, game over. I don't care what you think your entitled to do, or anything you say to try and justify it. You blatently breached copyright, there is no middle grey area here. If you don't respect the copyright and rights of others, how dare you get on your high horse and wave the open-source flag.
_____________________
FooRoo : clothes,bdsm,cages,houses & scripts
QAvimator (Linux, MacOS X & Windows) : http://qavimator.org/
|
Sebastian Wendt
Registered User
Join date: 3 May 2006
Posts: 1
|
05-03-2006 02:40
The script hangs while checking bzip2.
Tried the follow in a term.
bzip2 --version &> /dev/null
It hanged too. Using bash. Same behavior with:
bzip2 --version &> test.txt
Somethings funny with bzip2 it seems.
|
Zi Ree
Mrrrew!
Join date: 25 Feb 2006
Posts: 723
|
05-03-2006 05:21
The >/dev/null redirect seems to be broken for bzip2. If you want to redirect the bzip2 version message to a file, try
bzip2 --version 2> test.txt
This redirects STDERR rather than STDOUT.
_____________________
Zi! (SuSE Linux 10.2, Kernel 2.6.13-15, AMD64 3200+, 2GB RAM, NVidia GeForce 7800GS 512MB (AGP), KDE 3.5.5, Second Life 1.13.1 (6) alpha soon beta thingie) Blog: http://ziree.wordpress.com/ - QAvimator: http://qavimator.orgSecond Life Linux Users Group IRC Channel: irc.freenode.org #secondlifelug
|