World: r3wp
[Linux] group for linux REBOL users
older newer | first last |
Oldes 25-Dec-2007 [1846x2] | no, debian |
apt-get install libx11-6 returns: libx11-6 is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 7 not upgraded. | |
Kaj 25-Dec-2007 [1848] | REBOL is not looking in any particular place. Are you sure X11 is installed on that system? |
Oldes 25-Dec-2007 [1849] | is it possible that I don't have permissions to link these libraries? |
Kaj 25-Dec-2007 [1850x2] | Usually in this case, an older X11 library needs to be installed as well. But you can do: |
ldd rebface | |
Oldes 25-Dec-2007 [1852] | I was trying that.. it returns that cannot find the library |
Kaj 25-Dec-2007 [1853x3] | Unlikely. Loading libraries is just read-only |
libx11-6 may not be the package that includes libX11.so.6. Those numbers don't usually have that relationship | |
What libraries does ldd say are missing? | |
Oldes 25-Dec-2007 [1856x2] | linux-gate.so.1 => (0xffffe000) libX11.so.6 => not found libXext.so.6 => not found libXt.so.6 => not found libXaw.so.7 => not found libXmu.so.6 => not found libstdc++.so.5 => not found libfreetype.so.6 => not found libm.so.6 => /lib32/libm.so.6 (0xf7f3c000) libdl.so.2 => /lib32/libdl.so.2 (0xf7f37000) libgcc_s.so.1 => not found libc.so.6 => /lib32/libc.so.6 (0xf7e0c000) /lib/ld-linux.so.2 (0xf7f69000) |
there is quite a lot of them:) | |
Kaj 25-Dec-2007 [1858x2] | It can't even find the GCC, C++ and FreeType libraries |
They must not be installed somehow. It looks like a bare server system without even C++ | |
Oldes 25-Dec-2007 [1860] | it is just a server |
Kaj 25-Dec-2007 [1861x2] | That means very little |
You have to install those libraries. Standard procedure | |
Oldes 25-Dec-2007 [1863] | I'm not an admin so it looks I have almost no chance |
Kaj 25-Dec-2007 [1864] | It's not your server? |
Oldes 25-Dec-2007 [1865] | hehe... no:) |
Kaj 25-Dec-2007 [1866x3] | You have to take it up with the admin, then |
Otherwise you could have tried as the root user | |
It's weird that even libgcc_s.so is missing | |
Oldes 25-Dec-2007 [1869] | Admins usualy don't talk with ordinary users. Especially if they require something. |
Kaj 25-Dec-2007 [1870] | If it's a standard Debian admin, he'll tell you to sod off... Can you even get a graphical UI from that server? |
Oldes 25-Dec-2007 [1871x2] | there is /lib/libgcc_s.so.1 |
ach, that's different one | |
Kaj 25-Dec-2007 [1873] | Why do you need a graphics system on a server? |
Oldes 25-Dec-2007 [1874] | I wanted to do some image processing.. I will have to write it in core than |
Kaj 25-Dec-2007 [1875] | Does Core run? I would expect it to also require libgcc_s |
Oldes 25-Dec-2007 [1876x2] | yes... core runs without problems |
it requires just: linux-gate.so.1 => (0xffffe000) libm.so.6 => /lib32/libm.so.6 (0xf7f8b000) libc.so.6 => /lib32/libc.so.6 (0xf7e60000) /lib/ld-linux.so.2 (0xf7fb7000) | |
Kaj 25-Dec-2007 [1878] | Anyway, you wouldn't have been able to apt-get install anything. That is a permission issue |
Oldes 25-Dec-2007 [1879x3] | I was already asking the admin to try it |
never mind, I have to stay with Core | |
And don't you know if there is a version of Core with Rebcode for linux? | |
Kaj 25-Dec-2007 [1882] | Doesn't the latest version have it? |
Oldes 25-Dec-2007 [1883x3] | no:) it was always just an alfa version |
it's rebol2650042 | |
it's time to try it again | |
Robert 3-Feb-2008 [1886x2] | I have a problem that my httpd (an old Apache installation) goes into DE-FUNCT state from time to time. But I don't have any clue why. And, it never happend before. The last thing I did, was to disable SSL mode and I now have a SSH server running in port 443. |
My installation is an old RH7.2 Has anyone an idea where I can take a look to find out what the problem is? I checked the /var/log files but no hint in there. | |
AdrianS 3-Feb-2008 [1888] | dlna |
Robert 4-Feb-2008 [1889x4] | dlna? What's that a program? |
I just found a media server reference for this aconym. | |
How can I get back the output of a shell command? I tried: >> procs: "" == "" >> call/output procs "ps -A" == 100 >> ? procs PROCS is a string of value: "" | |
Got it. The call is: call/output "ps -A" procs | |
Gregg 4-Feb-2008 [1893] | If you need more control, Gabriele and Doc have a great async-call module. |
Robert 4-Feb-2008 [1894] | This works as a simple watchdog script. So no big deal. |
Gregg 4-Feb-2008 [1895] | I do the same thing (on WIndows). We have a lot of REBOL processes running, so mine also sorts and filters, showing the top CPU users and the stats for all REBOL processes. |
older newer | first last |