Skip to main content

File error 30,26 on read text file

  • August 12, 2021
  • 4 replies
  • 1 view

Alberto Rossi

Hello,

while reading a text file from linux OS this error happens  : file error 30,26

the file is located on a windows share visible through the linux 'mount'.

can anyone help me?

Thank you.

4 replies

Thomas Morrison
  • Participating Frequently
  • August 12, 2021

Hello,

while reading a text file from linux OS this error happens  : file error 30,26

the file is located on a windows share visible through the linux 'mount'.

can anyone help me?

Thank you.

The '26' means that the disk cannot be found.  Presumably you are getting this error on the open.

Can you open the file with a text editor (on Linux) using exactly the same pathname?


Alberto Rossi
  • Author
  • Participating Frequently
  • August 12, 2021

The '26' means that the disk cannot be found.  Presumably you are getting this error on the open.

Can you open the file with a text editor (on Linux) using exactly the same pathname?

yes, the error could be on the open, the file with an editor I open it.

it is a process of 'crontab' that runs all day, every now and then goes into error 30.26

it seems that the mount of 'samba' creates the problem ?

mount -t smbfs -o .....


Thomas Morrison
  • Participating Frequently
  • August 12, 2021

Hello,

while reading a text file from linux OS this error happens  : file error 30,26

the file is located on a windows share visible through the linux 'mount'.

can anyone help me?

Thank you.

Have you used a USE procedure to catch the error and do further processing on the error situation?  Since this is an intermittent error, perhaps a USE procedure could call C$DELAY and then retry the open?


Stephen Hjerpe
  • Participating Frequently
  • August 13, 2021

Have you used a USE procedure to catch the error and do further processing on the error situation?  Since this is an intermittent error, perhaps a USE procedure could call C$DELAY and then retry the open?

Excellent suggestion .. Acu has C$SLEEP -