World: r3wp
[Linux] group for linux REBOL users
older newer | first last |
Ray 2-Jun-2006 [671x5] | it was not full yesterday, but it is now |
we are trying to figure out where all the space went to now | |
we recently had to re-install mandrake and it appears that this is the same thign that happened the last time i installed rebol | |
i had installed it then left on vacation | |
my co-workers apparently had an issue lst time and had to reformat and install | |
Henrik 2-Jun-2006 [676] | there could be a number of things wrong... a likely issue is a logfile that has gone way too big. |
Ray 2-Jun-2006 [677] | wher eis the logfile? |
Henrik 2-Jun-2006 [678] | usually /var/log, but that depends on what is logged, which distribution you use and what program is logging :-) |
Kaj 2-Jun-2006 [679x2] | If REBOL/View doesn't run after installation, you probably have to install version 6 of the Athena Widgets library |
I wouldn't know of anything in /View that would fill up your disk, though. Could indeed be some system logging | |
Tomc 2-Jun-2006 [681x3] | you can use du -s to track down where the space is being used |
[[tomc-:-aught] ~]$ sudo du -s /* 5752 /bin 69262 /boot 8 /cs 436 /dev 20404 /etc 14077532 /home 4 /initrd 333364 /lib 389064 /local 16 /lost+found | |
... | |
Anton 5-Jun-2006 [684x2] | Slackware - connected ethernet cable to internet after fully booting and starting window system. How can I start the network ? |
Don't worry. That's easy to figure out. | |
Robert 19-Jun-2006 [686x5] | I love all those distro an RPM madness to just get an update to one package on RH... mabe someone can help. I'm running a rather old RH 7.2 (but it works good) and now need to update the Perl package. I downloaded the RRM of it and of course it has zillions of dependencies. |
And it needs a new glibc version. But there is a circular dependency. I can't update glibc, as it conflicts with glibc-common of a lower version. Updating glibc-common doesn't work because it's required by the current glibc. | |
How can I do this update? And I need several GLIBCs, as it's a central component, that need to be installed in parallel, right? How to do this? | |
I once asked this in Feb, but I can't upgrade my system at the moment. So, I somehow need to get this installed. | |
Debian is so easy about this: apt-get update, apt-get upgrade and you are done. | |
Gabriele 19-Jun-2006 [691x2] | robert, when you have circular dependencies the only way is to install both pkgs with the same command (i.e. rpm -i pgk1.rpm pkg2.rpm) |
in your case though... updating the glibc is a bit risky, i remember completely trashing a version of RH (or was it Mandrake?) by just a glibc update. it was a long time ago though. | |
Kaj 19-Jun-2006 [693] | Yep, I ran RH around 6.1 - 7.2. It has no automatic updating and updating core components like GLiBC is extremely dangerous. From the sound of it, you're almost guaranteed to destroy your system. There's no supported way to install multiple versions of a package |
Volker 19-Jun-2006 [694] | Can a new redhat be installed chrooted? |
Kaj 19-Jun-2006 [695x3] | Dunno. Wouldn't like to try |
Robert, do you have development packages installed: GCC and such? It's way easier to compile from source in your situation | |
I would actually use my Builder build system for Syllable to compile this PERL on Linux. However, you would have to install Ruby. Don't know if that's easily available for RH 7.2 | |
Volker 19-Jun-2006 [698] | by searching for "ruby redhat 7.2" http://dir.filewatcher.com/d/RedHat/7.2/i386/Development/Languages.0.0.htm |
Pekr 1-Aug-2006 [699x2] | I got following under my Fedora Core 1 Linux, when trying to run cgi, with rebpro (when run only in -c mode, I got only REBOL - Security violation). Am I able to call librarie under CGI? [[root-:-linux] jablunkovsko.cz]# ./index.cgi REBOL - Security Violation ./index.cgi jablunkovsko.cz]# ** User Error: SQLite near "100": syntax error ** Near: make error! reform ["SQLite" error] |
ah, I got syntax error in my sql statement, sorry. Now CGI runs in linux console by pressing enter in midnight commander, but not from the browser :-) | |
BrianH 1-Aug-2006 [701] | The browser can only run CGI scripts through a web server, not directly. |
Graham 1-Aug-2006 [702] | you can't call it CGI if you run it from the console can you? |
BrianH 1-Aug-2006 [703] | Yeah, I was a little surprised that such a script could run at all from the console. |
Pekr 1-Aug-2006 [704x2] | I can, if it has 755 permission ... |
well, I run it from Midnight Commander, maybe it is why I can run it .... I just press enter on script. In fact, that is how I verify, if the script works at all in CGI mode ... | |
BrianH 1-Aug-2006 [706] | I suspect that the environment variables and input are not filled when you run it directly. |
Pekr 1-Aug-2006 [707x3] | ah, yes, of course, I just use it for basic check that permissions are ok, that my path to interpreter is ok, simply that cgi mode works .... |
now I looked at Apache log - premature end of script headers .... hmm, now if I would remember what it means :-) I already met with such an error (permission or hidden chars caused by Win-Lin script traversal ...) | |
hmm, I start to think, that if having Linux server (although it runs for 2 years or more without the assistance), is good for me. I simply have to struggle with getting into it every time I need to config something and maybe it is upon my skills :-( .... for occassional things, maybe I would better go with plain Windows XP profi plus some free Sendmail, FTP server and Apache .... | |
BrianH 1-Aug-2006 [710] | Have you done the line ending conversion? |
Pekr 1-Aug-2006 [711x3] | no ... but I face some strange problems. I put print "Content-type: text/html" print newline at the beginning of the script and now it does not run even under console, it just says "REBOL - security violation" |
ah, it is because I removed -s, sqlite wants to write to log ... | |
can I lower permission just for that one log file? | |
BrianH 1-Aug-2006 [714] | Use -s, and then restrict your security to what you should be able to do first thing. |
Pekr 1-Aug-2006 [715x2] | now I get following in browser: ** Access Error: Cannot open /home/web/jablunkovsko.cz/sqlite.log ** Where: connect ** Near: write/append/lines join log-path %sqlite.log reform |
simply put, sqlite driver wants to write to log, but it does not have enough permission to do so? | |
Volker 1-Aug-2006 [717] | Sounds like that. Or the path is invalid. Does the script run as another user, and/or run as chroot? |
Pekr 1-Aug-2006 [718x3] | dunno, well, Apache is configured so it runs as particular user ... |
when I run script from console, it of course runs, as I am root, and then sqlite.log is of root owner .... | |
maybe I need to configure apache, so it would allow to write files in directory other than cgi-bin, dunno .... | |
older newer | first last |