Hello,
I had to reformat my fat32 partition to ext for downloading zexy sources from svn because of some file linking.
is that normal?
On 09/09/2014 08:28 AM, patrice colet wrote:
Hello,
I had to reformat my fat32 partition to ext for downloading zexy sources from svn because of some file linking.
is that normal?
dunno whether it's "normal" but it's definitely unintended.
could you give more details? (i don't want to format my ext partitions to fat32 just to reproduce the problem :-))
gfmrsa IOhannes
Le 09/09/2014 09:34, IOhannes m zmölnig a écrit :
On 09/09/2014 08:28 AM, patrice colet wrote:
Hello,
I had to reformat my fat32 partition to ext for downloading zexy sources from svn because of some file linking.
is that normal?
dunno whether it's "normal" but it's definitely unintended.
could you give more details? (i don't want to format my ext partitions to fat32 just to reproduce the problem :-))
a little bit...
I was using an sdcard on a pcduino with a fat32 partition in case if I had to read it on windows. My windows box is NTFS formated so I cannot reproduce on this but it should be easy with an usb key. I just have to find one...
This only thing I can say is that the check out has stopped with saying something like "permission denied" when a process tried to build a link with some zexy abstraction.
Before that I tried to compile zexy with those svn sources copied directly to the fat32 partition from another drive and I had same kind of error message like "./autogen.sh: permission denied"
that's all I can say atm
patco
gfmrsa IOhannes
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
On 09/09/2014 06:53 PM, patrice colet wrote:
Le 09/09/2014 09:34, IOhannes m zmölnig a écrit :
On 09/09/2014 08:28 AM, patrice colet wrote:
Hello,
I had to reformat my fat32 partition to ext for downloading zexy sources from svn because of some file linking.
is that normal?
dunno whether it's "normal" but it's definitely unintended.
could you give more details? (i don't want to format my ext partitions to fat32 just to reproduce the problem :-))
a little bit...
ok, i managed to setup a image-file with FAT32, and i think i fixed the problem.
Before that I tried to compile zexy with those svn sources copied directly to the fat32 partition from another drive and I had same kind of error message like "./autogen.sh: permission denied"
when copying, or when running autogen.sh? if the latter, this is most likely a problem with your mount options: for building zexy, you MUST run a few scripts (e.g. ./configure; probably ./autogen.sh), but if you have mounted the partition with "noexec" than you are not allowed to do that.
you can fix this by either:
OR
to run scripts: $ sh ./autogen.sh $ mkdir /tmp/zexy-build $ cd /tmp/zexy-build $ sh ~-/configure $ make
gfadsr IOhannes
Le 10/09/2014 18:17, IOhannes m zmölnig a écrit :
On 09/09/2014 06:53 PM, patrice colet wrote:
Le 09/09/2014 09:34, IOhannes m zmölnig a écrit :
On 09/09/2014 08:28 AM, patrice colet wrote:
Hello,
I had to reformat my fat32 partition to ext for downloading zexy sources from svn because of some file linking.
ok, i managed to setup a image-file with FAT32, and i think i fixed the problem.
and I had same kind of error message like "./autogen.sh: permission denied"
you can fix this by either:
- mount without the "noexec" flag
OR
- call the scripts from an interpreter, resp. on a partition that allows
to run scripts: $ sh ./autogen.sh $ mkdir /tmp/zexy-build $ cd /tmp/zexy-build $ sh ~-/configure $ make
Many thanks for the fix and the trick :) that really makes puredata powerfull anywhere
patco