07-29-2018
Quote:
hi all,
while searching solution to an error, i found this forum and i have just joined the forum.
i am using Unix and getting the following error.
kindly help to resolve.
-bash: cannot create temp file for here-document: No space left on device
regards
Hello kkm,
Welcome to forums, error itself is self explanatory, check your current path by doing
pwd command and check it's file system seems it is 100% filled now, you may need to either increase its capacity or clean OLD junk log or un-necessary files(be careful before deleting any files though make sure you are NOT deleting anything important).
Thanks,
R. Singh
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
Hi,
I've tried to find answer to this question in the forums but i haven't found it.
How can i know the space left in my devices (tape, disk, floppy, etc...)?
It is very important to know at least the free space in the TAPE device.
Can someone help?
Thanx in advance.
Jorge (1 Reply)
Discussion started by: jorge.ferreira
1 Replies
2. UNIX for Advanced & Expert Users
I have a SCO UNIX on my Server. When I last tried to shutdown my system, I got an error message
“no space left on device”.
Now when I try to boot the system again, I
just can't and I get the same error message. Please help! (2 Replies)
Discussion started by: anjane
2 Replies
3. Solaris
Ok, don't shoot me! I have looked all over the forum for the issue I'm having and I don't think its a duh delete some files or I deleted them but its still showing 100% type thing.
This morning one of my servers starts crying that it can't write log files and I can't use vi etc.... when I check... (1 Reply)
Discussion started by: kingdbag
1 Replies
4. Solaris
Hi all,
A very strange problem I have this morning with my Solaris 8.
I have a FS full, I deleted some files but the system doesn't seems to reallocate the free space (I'm using Veritas):
df -k :
/dev/vx/dsk/dlds02vg/dlds02oralv 4194304 4194304 0 100% /dlds02/lds/oracle
... (4 Replies)
Discussion started by: unclefab
4 Replies
5. Solaris
We are using this function tmpfile() :
FILE *tmpfp ;
if ((tmpfp = tmpfile()) == NULL)
{
fprintf(stderr, "%s: ERROR: init_operator(): ", ROUTINE);
perror("tmpfile()");
exit(ERR_OPEN);
}
and the above is raising error :
MSMD0603: ERROR:... (3 Replies)
Discussion started by: atiato
3 Replies
6. UNIX for Dummies Questions & Answers
hello all,
i have a proc binary that we run on unix environment, and it is generating this error
'' tstfile(): No space left on device ''
can you please assist on how to narrow down the problem?
thanks (4 Replies)
Discussion started by: mjdbouk
4 Replies
7. Solaris
hi guys, me again ;)
i recently opened a thread about physical to zone migration.
My zone is mounted over a "bigger" LUN (500GB) and step is now to move the old files, from the physical server, to my zone.
We are talking about 22mio of files.
i used rsync to do that and every time at... (8 Replies)
Discussion started by: beta17
8 Replies
8. Shell Programming and Scripting
Hi,
We are trying to sort the 40GB file in unix and getting following error.
Error:
sort: can't write /var/tmp/stmAAAvsaGfJ.00002929: No space left on device
sort -t ',' -k4 $DIR/INF_ff_FULL.dat >>$DIR/Sort_INF_ff_FULL.dat; 2>$DIR/sort_error.log
Can you please advise how to... (2 Replies)
Discussion started by: koti_rama
2 Replies
9. Solaris
Hi All,,
I had installed my solaris 10 over VMware and allocated 100 GB space. yet wehen i am installing weblogic. it says "no space left on device"
when i run df -k :-
------
Filesystem kbytes used avail capacity Mounted on
/dev/dsk/c0d0s0 4864825 4779400 36777 ... (7 Replies)
Discussion started by: jain_sharad143
7 Replies
10. Linux
Hello all
posting here after scanning the net and tried most of the things offered
still no solution that worked
when I do :
$ df -h
Filesystem Size Used Avail Use% Mounted on
footmpfs 7.9G 60K 7.9G 1% /dev
tmpfs 7.9G 0 7.9G 0% /dev/shm
/dev/da1 ... (3 Replies)
Discussion started by: umen
3 Replies
LEARN ABOUT LINUX
jfs_fscklog
jfs_fscklog(8) Extract/Display JFS fsck Log jfs_fscklog(8)
NAME
jfs_fscklog - extract a JFS fsck service log into a file and/or format and display the extracted file
SYNOPSIS
jfs_fscklog [ -d ] [ -e device ] [ -f output.file ] [ -p ] [ -V ]
DESCRIPTION
jfs_fscklog with option -e device extracts the contents of either the most recent or immediately prior (specified with option -p) JFS fsck
service log from the specified device, and writes the output to a file. The file name may be specified with the -f option, or the default
file name is <pwd>fscklog.new. If the -p option is used, the default file name is <pwd>fscklog.old.
jfs_fscklog with option -d formats and displays the contents of the extracted file.
jfs_fscklog with options -d and -e device extracts and displays the JFS fsck service log.
OPTIONS
-d Format and display a previously extracted JFS fsck service log.
-e device
Extract the JFS fsck service log from device and store it in a file. (device is the special file name corresponding to the actual
device from which the fsck log will be extracted (e.g. /dev/hdb1 )).
-f file.name
Specify the file name, overriding the default file name. When used with -e device, file.name specifies the name of the file into
which the JFS fsck log will be extracted. When used with -d, file.name specifies the name of the extracted file whose contents will
be formatted and displayed.
file.name must be 127 characters or less in length.
file.name will be created in the present working directory unless it is fully qualified.
-p Extract the prior log (as opposed to the most recent log).
-V Print version information and exit (regardless of any other chosen options).
EXAMPLES
Extract the most recent JFS fsck log on /dev/hda5 into <pwd>fscklog.new:
jfs_fscklog -e /dev/hda5
Extract the most recent JFS fsck log on /dev/hdb3 into /temp/l9651107.log:
jfs_fscklog -e /dev/hdb3 -f /temp/l9651107.log
Display the JFS fsck log that was extracted into /temp/l9651107.log:
jfs_fscklog -d -f /temp/l9651107.log
Extract and display the previous JFS fsck log from /dev/hda8:
jfs_fscklog -e /dev/hda8 -d -p
REPORTING BUGS
If you find a bug in JFS or jfs_fscklog, please report it via the bug tracking system ("Report Bugs" section) of the JFS project web site:
http://jfs.sourceforge.net/
Please send as much pertinent information as possible, including any jfs_fscklog error messages and the complete output of running jfs_fsck
with the -v option on the JFS device.
SEE ALSO
jfs_fsck(8), jfs_mkfs(8), jfs_tune(8), jfs_logdump(8), jfs_debugfs(8)
AUTHOR
Barry Arndt (barndt@us.ibm.com)
jfs_fscklog is maintained by IBM.
See the JFS project web site for more details:
http://jfs.sourceforge.net/
October 28, 2002 jfs_fscklog(8)