World: r3wp
[Linux] group for linux REBOL users
older newer | first last |
Henrik 10-Aug-2005 [163] | OSX supports call, as far as I can see |
BrianW 10-Aug-2005 [164] | I use 'call pretty frequently to shell scripting on my Linux partition |
shadwolf 10-Aug-2005 [165x4] | yes ;) But I allways fool my self betwin call and run functions |
call is mutch fophisticate than run :) | |
sophiticated | |
Any one wants to help me coding the first rebol TTS sofware using MBROLA voice synthiser ? | |
François 10-Aug-2005 [169] | Hi, all: anyone has succeeded to run the beta version of View 1.3 on Fedora Core 4? I have the following error: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory |
Henrik 10-Aug-2005 [170] | there is a stdc++ notice on the builds page. did you read it? |
Volker 10-Aug-2005 [171] | http://kb.bitdefender.com/KB220-en--Installation-errors-on-Fedora-Core-4.html |
François 10-Aug-2005 [172x2] | Nope, i have been directkly to the build... |
solved by doing: ln -s /usr/lib/libstdc++.so.6.0.5 /usr/lib/libstdc++.so.5 | |
shadwolf 10-Aug-2005 [174x3] | why the build use libstdc++ v5 and not libstdc++ v 6 ? |
for TTS project in rebol see RebTTS | |
group | |
François 10-Aug-2005 [177x2] | This is weird... rebol (1.2 and 1.3) can not connect to the internet with Fedora Core 4, but i have no problem with Debian 3.1... I think i will get rid off Fedora Core and keep Debian!! |
Now it works... | |
Volker 10-Aug-2005 [179x2] | why v5 - usually its easier to add an old library which the distro once had than to install a new one which the distro not has yet. |
thats what my link was about. bitdefender had the same problem, and: SOLUTION: Fedora Core 4 has gcc 4.0 that provides libstdc++.so.6 while BitDefender requires another version of this library, libstdc++.so.5. In order to satisfy this dependency, the compat-libstdc++-33-3.2.3-47.fc4.i386 package must be installed. (you can find it on the distribution CDs) | |
Jonathan 10-Aug-2005 [181] | Hi everyone, I have a problem running the new view beta on suse 9.3. I have libstdc++ 5, I can run rebol scripts (that need 1.3), but I can't start the desktop (I double-click the rebol icon, it just flashes -starts and stops immediatky-). I'm new to Linux so this might be a known issue. I tried moving the VM to various places but same result at every try. Maybe someone can help ? |
[unknown: 10] 10-Aug-2005 [182] | No problems with slackware 10.x |
shadwolf 10-Aug-2005 [183] | Francois a very good linux distribution is ubuntu ;) |
François 10-Aug-2005 [184x2] | Jonathan, try to launch rebol from the console rather than by double-clicking on the icon. Also, make sure you launch rebol from a place you have write access. For example, i installed rebol within /opt/rebol-cmd/bin but I do not have write access on this folder. So, from my home folder, i launch rebol like this: /opt/rebol-cmd/bin/rebview |
Shad, Ubuntu is debian based... So why have a copy when you can have the real thing ;-) | |
Jonathan 10-Aug-2005 [186] | François: thanks. One of Rebolinth's posts in the RAMBO group solved my problem (startup issues). |
Volker 12-Aug-2005 [187] | . |
Gabriele 12-Aug-2005 [188] | is there any good reason why this group is private? new users (like Joe) won't be able to find it. |
Pekr 12-Aug-2005 [189] | I think you can make it public, no reason for the group with such generic name to be private, no? :-) |
Volker 12-Aug-2005 [190x2] | Oops, did not notice that when i dotted it up. I see no reason for private too, except someone is hirrified by linux. |
done. | |
shadwolf 12-Aug-2005 [192x3] | Francois not a copy a different package ... |
debian is not packaged the same as ubuntu and ubuntu as some more configuration I intsalled and administrated debian for dec Alpha Workstation for nearbie 4 years ;) | |
so if I say to you that ubuntu is very good then it's vry good For example my mom was tired to get lot of problems with her windows in installed 2 month ago ubuntu I use synapse to get some missing packages and now all works well she is very happy with her pc ... My mom is 62 years old and dislike coputing but ubuntu have her preference ... | |
BrianW 14-Aug-2005 [195x2] | curious distro is targeted by the Rebol/View linux build. I know compatibility is not an issue, just idle curiosity. |
which distro | |
Ashley 15-Aug-2005 [197] | Any chance of a world master moving this group under the "Operating Systems" divider? |
Gregg 22-Aug-2005 [198] | Done. |
Pekr 12-Sep-2005 [199x4] | I need to prepare some installation instructions for our polish partner. I will do some scripts to access mySQL on their server, using rebol, but I will not have access to the site. So I want to be well prepared, so they don't get annoyed after writing them tens of times "try that, try this" etc. :-) |
They use Debian. I have Fedora at home. What would I like to ask is - where to put rebol interpreter on Debian? Where to put things like user.r or mysql-protocol.r or whatever other script I produce to them? The path is almost always trouble for me. I e.g. start console and I have to define set-net once again, as it does not use my user.r settings etc. Any insights? | |
has latest beta core available shell access? I will not probably able to solve mySQL 4.0.1 charset conversions using mySQL commands, so I will use 'iconv utility .... need to convert by using externall tool, so I need shell access for that ... | |
thanks a lot ... | |
Maarten 12-Sep-2005 [203x2] | why not use encap |
Then they/you can put one binary *anywhere* in the path | |
Pekr 12-Sep-2005 [205x2] | encap? that could be way to go ... but I am not sure what SDK I have, not probably /Command sdk - do I have shell enabled? :-) |
... hopefully so ... | |
Maarten 12-Sep-2005 [207] | All SDKs have shell, library and encryption. Command adds ODBC/Oracle and SSL (client side) |
Volker 12-Sep-2005 [208x5] | interpreter can be anywhere, usually /usr/local/bin. the shebang (first line, with that #!) needs to point there, but thats not rebol-specific, its the way with every language. |
about special settings (user.r) i would write a short script dumping system/options and system/script. running from cgi. That should show the pathes. | |
i guess user.r is at users home, not sure where that is with their cgi-settings. on a new rebol >> get-env "HOME" == "/home/volker" works too. | |
where are sub-script? rebol makes a cd to the current script. So you can use relative addresses from there. just make a subdir %lib/ where the script is. | |
call: i have 2.6.0.4.2 and call is there. IIRC thats the real release, not even beta. | |
older newer | first last |