ed strange error message


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting ed strange error message
# 1  
Old 10-26-2004
ed strange error message

When I start ed as regular user, following message is displayed:
Code:
$ed
ERROR: tempnam failed: Permission denied
$

I think, following error produced in vi when search results from previous error:
Code:
No previous regular expression

Setting TMPDIR variable cause no effect.

As root all works fine.

Any help appreciated.

Regards, Frenki
# 2  
Old 10-26-2004
Code:
ls -ld /tmp

post output
# 3  
Old 10-26-2004
Code:
$ls -ld /tmp
drwxrwxrwt    3 root     sys             336 okt 26 15:30 /tmp
$

Any sugestion?

Regards, Frenki
# 4  
Old 10-28-2004
Data

Any other idea what could be wrong?

Regards, Frenki
# 5  
Old 10-28-2004
Hmm.. well no idea.

Double check your $TMPDIR first.

What OS is this?
# 6  
Old 10-29-2004
No matter how $TMPDIR is set, behavior is the same! Currently $TMPDIR is set :
Code:
$env | grep TMPDIR
TMPDIR=/var/tmp
$ls -ld /var/tmp
drwxrwxrwt    2 bin      bin             276 okt 29 03:10 /var/tmp
$

OS is SCO UnixWare 7.1.4 (yes, I know what you think about Smilie Smilie ) upgraded from 7.1.1.

Regards, Frenki
# 7  
Old 10-29-2004
OK, check permissions on /var then.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

I am getting strange message when run borne shell script

I have a code: if then#{ process daily files for file in *_${Today}*.csv *_${Today}*.txt do if || then echo "This file will be processed in separate script" continue fi if ;then ... (2 Replies)
Discussion started by: digioleg54
2 Replies

2. UNIX for Dummies Questions & Answers

Strange Error

I am receiving an error when i type the command dmesg sudo: sysmon : pam_authenticate: Conversation failure ; TTY=unknown ; PWD=/export/home/sysmon ; USER=root ; COMMAND=/opt/scripts/cronmgmt/synch_crontab.ksh Whats it about and how can I remove it ? (1 Reply)
Discussion started by: Junaid Subhani
1 Replies

3. AIX

Really strange unix message

We are getting this message on our AIX box. No one knows where its coming from. Where can I find any information on it? Warning: file system free space is less than 10 file system total size = -2621440 file system available space = 2485160 file system used space = -5106592 file system... (3 Replies)
Discussion started by: t01scra
3 Replies

4. UNIX for Dummies Questions & Answers

a strange message when executing the sort command

Dear all, when I issue the command: gunzip -c file.gz |sort the command is executed normally and correctly but a message keeps appearing everytime I run the command: the message: sort: missing NEWLINE added at end of input file STDIN Does anyone know what is the meaning of this message?... (3 Replies)
Discussion started by: marwan
3 Replies

5. Shell Programming and Scripting

Strange error message with regex test...

Hi all, I have a script where i need to check the format of a string. finally, i'm waiting a "process name" and 2 numbers separated by a "," string like : "this_is_a_string.txt,1,10 should be ok" string ok : "apache.exe,1,10" string ok : "mysqld,50,0" string not ok : "ap ache,1,10"... (4 Replies)
Discussion started by: fgilain
4 Replies

6. UNIX for Dummies Questions & Answers

Strange error

Hi all, i executed a script. cat <filename> | grep <pattern> | awk '{print $1}' | read a i get the answer when i execute it in the shell env (no problem with that) as ./<name>.ksh when i tried the same in cron (as an entry in cron) value is not being read in the variable a through... (1 Reply)
Discussion started by: matrixmadhan
1 Replies

7. Programming

strange error

hi, when i try to compile, i got the following error message, what does it mean? $gcc auto.cpp /usr/tmp/ccmuE12B.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0' collect2: ld returned 1 exit status thanks (1 Reply)
Discussion started by: laila63
1 Replies

8. Shell Programming and Scripting

Strange error.. help

Hi, When I give the following $ ps -ef | grep `echo $var1` | grep -v "grep `echo $var1`" | awk '{print $3}' | grep -v `echo $var1 80892 But when I give the following (made as command substitution) , I get error $var2=`ps -ef | grep `echo $var1` |... (2 Replies)
Discussion started by: preetikate
2 Replies

9. UNIX for Advanced & Expert Users

Strange "Unable to load interpreter" message!

Hi all, I run RedHat. Not a long ago it has started to give me message on the screen "Unable to load an interpreter". Just plain message. I checked log files. I havent found anything strange in there. Any suggestions what it might mean and how to get rid of it? Thank you all. (6 Replies)
Discussion started by: solvman
6 Replies
Login or Register to Ask a Question