08-06-2009
Speak to the server administrator. You have run out of disc space in a partition.
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
This seems like it would be a common question, but I didn't find much that helped in a search...
I have a script scheduled in my crontab that outputs to /dev/null
ie: /dir/scripts/script1 > /dev/null
I have recently started getting the error:
cp /dir1/dir2/file.xls: No space left on... (1 Reply)
Discussion started by: kristy
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
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
4. 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
5. Solaris
Hi,
During package install, am getting:
WARNING: unable to write temp contents file </var/sadm/install/t.contents>
(errno 28: No space left on device)
I tried to delete some stuff under "/var" But I cannot locate who is occupying "/var" space. Because:
# df -h /var/
Filesystem ... (5 Replies)
Discussion started by: viki250
5 Replies
6. 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
7. 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
8. Ubuntu
I am running a build on Jenkins and I get:
No space left on device
But when I do df, I get:
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/ROOT 19249724 18267492 4380 100% /
udev 1457152 4 1457148 1% /dev
tmpfs ... (4 Replies)
Discussion started by: sgffgs
4 Replies
9. Linux
Hello people
I have a small fileserver running busybox (very small linux distro with most essential stuff on it) and I am trying to remove some unused directories on it.
When I try this:
rm -R test/I get:
rm: cannot remove 'test': No space left on devicedf shows:
Filesystem ... (8 Replies)
Discussion started by: GTCG
8 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 NETBSD
newfs_udf
NEWFS_UDF(8) BSD System Manager's Manual NEWFS_UDF(8)
NAME
newfs_udf -- construct a new UDF file system
SYNOPSIS
newfs_udf [-cFM] [-L loglabel] [-P discid] [-p percentage] [-S setlabel] [-s size] [-t gmtoff] [-V max_udf] [-v min_udf] special
DESCRIPTION
The newfs_udf utility creates an UDF file system on device special suitable for the media currently inserted.
The options are as follow:
-c Perform a crude surface check first to weed out disc faults on rewritable media.
-F Force file system construction on non-empty recordable media.
-L loglabel
Set the disc logical label to the specified loglabel.
-M Disable metadata partition creation when selected UDF version or media dictates this. For strict conformance and interchange, don't
disable this unless its causing problems.
-P discid
Set the physical disc label to the specified discid. For strict conformance and interchange, don't set this manually.
-p percentage
Percentage of partition to be initially reserved for metadata on the Metadata partition. It defaults to 20 %.
-S setlabel
Set the disc set label to the specified setlabel. For strict conformance and interchange, don't set this manually.
-s size
Ignored for now.
-t gmtoff
Use the specified gmtoff as gmt time offset for recording times on the disc.
-V max_udf
Select max_udf as the maximum UDF version to be supported. For UDF version 2.50, use ``0x250'' or ``2.50''.
-v min_udf
Select min_udf as the minimum UDF version to be supported. For UDF version 2.01, use ``0x201'' or ``2.01''.
NOTES
The UDF file system is defined for the entire optical medium. It can only function on the entire CD/DVD/BD so the raw partition has to be
specified for read/write actions. For newfs_udf this means specifying the raw device with the raw partition, i.e. /dev/rcd0d or /dev/rcd0c.
Some rewritable optical media needs to be formatted first before it can be used by UDF. This can be done using mmcformat(8).
The default UDF version is version 2.01.
EXAMPLES
newfs_udf -S "Encyclopedia" -L "volume 2" -P "copy-nr-1" /dev/rcd0d
Create a file system, using the specified names on the device /dev/rcd0d with the default UDF version.
dd if=/dev/zero of=bigdisk.2048.udf seek=9999999 count=1
vnconfig -c vnd0 bigdisk.2048.udf 2048/1/1/1
newfs_udf -L bigdisk /dev/rvnd0d
Create a 4.8 GiB sparse file and configure it using vnconfig(8) to be a 2048 sector size disc and create a new UDF file system on
/dev/rvnd0d.
newfs_udf -L "My USB stick" /dev/rsd0d
Create a new UDF file system on the inserted USB stick using its ``native'' sectorsize of 512.
SEE ALSO
disktab(5), disklabel(8), mmcformat(8), newfs(8)
HISTORY
The newfs_udf command first appeared in NetBSD 5.0.
AUTHORS
Reinoud Zandijk <reinoud@NetBSD.org>
BSD
December 23, 2009 BSD