World: r3wp
[Linux] group for linux REBOL users
older newer | first last |
Andreas 30-Nov-2010 [3991x3] | If it is a single partition, loop-mounting it as Izkata already mentioned should suffice. |
If it is a full disk, you'll need to mount the proper partition within the disk. There are various approaches possible, depending on your actual scenario. You could loop-mount with an offset, if you now your disk layout fairly well. Alternatively, use losetup to set up a loop device bound to the disk image. Then use kpartx to have the kernel read the partition table from this new device and map the partitions to their own devices. Finally mount the device corresponding to the partition you want to access. | |
Depends a bit on the details. Feel free to contact me privately. | |
Robert 1-Dec-2010 [3994] | It's just one partition. The problem is that I can't mount it, as the file-structure is damaged. I tried to extract meaningful file parts but no luck. I already spent to much time on it. We throw it away as we have the data locally and now need to find a way how to restore our AltMe content. |
TimW 1-Jan-2011 [3995] | Just curious, what is the status of the rebol 3 vid for linux? I would think the wiki would show the status, but I couldn't find it. |
Ladislav 1-Jan-2011 [3996] | There is no "rebol 3 vid for linux", Rebol 3 VID is not OS-specific |
TimW 1-Jan-2011 [3997] | Well, I more meant the gui system for linux is not implemented so you can't use vid yet. |
BrianH 1-Jan-2011 [3998] | I think he wants a publicly available Linux build of R3 with the GUI parts included :) |
TimW 1-Jan-2011 [3999] | yeah :). I'm tired of testing things using wine and the windows build. |
Andreas 1-Jan-2011 [4000x2] | As far as I know, the "View" parts of the hostkit have not yet been ported to Linux. |
(The R3 Host Kit, that is.) | |
Robert 2-Jan-2011 [4002] | IIRC there exists a command different from FIND that will print all absolut file locations for a given filename. Any idea? |
Andreas 2-Jan-2011 [4003x2] | readlink(1), maybe? |
locate(1), maybe? | |
Robert 2-Jan-2011 [4005] | LOCATE was it... Thanks. |
amacleod 20-Jan-2011 [4006] | Just installed Zorin 4 (ubuntu based) and i'm having trouble getting R3 running. I assume I run it from the terminal but I get "commnad not found" error. Anyone know what I'm not doing? |
Henrik 20-Jan-2011 [4007] | probabily you need to add ./ in front of the command name |
amacleod 20-Jan-2011 [4008] | thanks henrik! |
Robert 25-Feb-2011 [4009x2] | Anyone using Dovecot IMAP mailserver here? I need to know if I can delete files on the filesystem from the mailbox dirs without bombing the mailserver. I have a couple of duplicate files I need to get rid of. |
Ok, Thunderbird and a plug-in is your friend. | |
GrahamC 25-Feb-2011 [4011] | I've setup dovecot twice ... but am not using it now. |
Andreas 26-Feb-2011 [4012x5] | gcc 3.4 first appeared in debian sarge (debian 3.1), afaict. if he's using anything older (woody, potato), he'll be out of luck. |
and if what he really needs is gcc 4.x, that first appeared in debian etch (debian 4.0). | |
http://archive.debian.net/search?suite=all&arch=powerpc&searchon=names&keywords=gcc | |
for your convenience, here's an archive.debian.org apt sources line for etch: deb http://archive.debian.org/debian/etch main non-free contrib | |
(for carl's convenience, rather :) | |
BrianH 2-Mar-2011 [4017x3] | Just redid my netbook with Ubuntu Netbook 10.10, and it works much better than in did with WinXP. Had to partition manually as the tweak to make the installer SSD friendly is still a proposal. R2 and R3 work, though (as someone used to the Windows versions) I am having trouble with the console not opening a terminal when prompted to. I guess the button in the R2 View desktop doesn't work. Time to figure out the application shortcut creation method for this distro. |
Yes, I'm aware of the irony that of all the things I could have trouble with, it would turn out to be the console that works better on Windows :( | |
Going to try AltME next. Are there any known problems with using the 1.2.21 Linux version? I seem to have no font problems in View... | |
Andreas 2-Mar-2011 [4020x2] | 1.2.25 works fine here. |
Regarding the console, fire up REBOL directly from a terminal and you'll be fine. | |
BrianH 2-Mar-2011 [4022x2] | The main problem is that the netbook versions of Linux are more GUI oriented, so the question is how to open REBOL by clicking on it. |
Do we need to get debs in the multiverse repositories? | |
Andreas 2-Mar-2011 [4024] | Creating a "Application in Terminal" type launcher should do the trick. |
BrianH 2-Mar-2011 [4025x2] | Ah, don't know how to do that yet :( |
At least not in the netbook distro. | |
Andreas 2-Mar-2011 [4027x2] | No experience with the netbook edition either, sorry. |
If the Unity launcher (at least I think that's how the launchbar in the netbook thing is called) still uses .desktop files, it's probably only a matter of finding the associated .desktop file and modifying it to use Terminal=true | |
BrianH 2-Mar-2011 [4029] | Or rather making associated desktop files. It turns out that the menu editor included is for the GNOME menu, not the Unity menu. There is no editor for the Unity menu. I'm going to try to figure out what needs to be done. |
MaxV 8-Mar-2011 [4030] | Did you try http://www.maxvessi.net/rebsite/Linux/?? |
ddharing 8-Mar-2011 [4031] | Does anyone do anonymous pipes with REBOL? I've found that when doing an "insert system/ports/output my-data", that it won't actuallly send "my-data" until you halt or quit. Is there a way to force it to send so the script can continue to do other things and send more data later? |
MaxV 8-Mar-2011 [4032] | call function is not eough? call "cp source.txt dest.txt" |
Gregg 8-Mar-2011 [4033] | Have you tried UPDATE? Not sure on anonymous pipes though. |
ddharing 8-Mar-2011 [4034x2] | Gregg, I tried that and it generates an error -- Cannot use updae on this type port |
MaxV, It is possible to use call, but then the scripit would be executing like CGI. I wanted to pipe two REBOL scripts from the command line and have the first script periodically send data to the second. Of course I could use a socket, but that's a little more complex. | |
Maxim 8-Mar-2011 [4036x2] | actually, using sockets is really simple. |
I mean, its probably less hassle and you'd already have it working by now ;-) I mean TCP server/clients can be as little as 5 lines each in rebol. | |
ddharing 8-Mar-2011 [4038x2] | Maxim, you're absolutely right. I am just thinking in terms of being pipe friendly on the Linux command line. |
You know, the Unix way of doing things. | |
Maxim 8-Mar-2011 [4040] | did you try looking at the port states? |
older newer | first last |