madhuneal / ppss

Automatically exported from code.google.com/p/ppss
0 stars 0 forks source link

ppss.sh does not work in a FAT32 filesystem #16

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi, 

I was trying to run ppss.sh from a FAT32 filesystem, but since it uses
mkfifo on the local directory it does not work. 

ras@desktop:/media/fat32_disk$ mkfifo jsdf
mkfifo: no s’ha pogut crear la cua FIFO «jsdf»: Operation not permitted

That was causing ppss.sh to not work, since it tries to do mkfifo in the
local directory (which was FAT32). 

I made this change to make it work, since /tmp will probably not be in a
FAT32 (although not always)

591c591
<     FIFO=$PPSS_DIR/fifo-$RANDOM-$RANDOM

---
>     FIFO=/tmp/fifo-$RANDOM-$RANDOM

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by Roger.Si...@gmail.com on 14 Nov 2009 at 3:02

GoogleCodeExporter commented 9 years ago
Thank you for your reply. I changed the FIFO path exactly according to your 
suggestion. This will be 
incorporated in the next release of PPSS.

Original comment by Louwrentius on 17 Nov 2009 at 10:39

GoogleCodeExporter commented 9 years ago

Original comment by Louwrentius on 17 Nov 2009 at 10:51

GoogleCodeExporter commented 9 years ago
This is fixed since 2.41

Original comment by Louwrentius on 16 Dec 2009 at 12:36