* "oversized" files
@ 2001-07-16 2:20 Aaron Smith
2001-07-16 2:38 ` volodya
2001-07-16 11:15 ` Alan Cox
0 siblings, 2 replies; 5+ messages in thread
From: Aaron Smith @ 2001-07-16 2:20 UTC (permalink / raw)
To: linux-kernel
I'm really not sure if this is pertinent to Linux Kernel, but I'm asking here anyway, 0 in advance if it's not.
I have a file that is approximately 3.25GB and my system keeps bitching about "Value too large for defined data type." Is there any way to stop this? Since I'm sure you're wondering why I have a file that large, I'm using it via loopback as my MP3 partition, so I can remove it fairly quick if the need should ever arise.
--
-Aaron
Don't hate yourself in the morning, sleep till noon
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "oversized" files
2001-07-16 2:20 "oversized" files Aaron Smith
@ 2001-07-16 2:38 ` volodya
2001-07-16 2:51 ` Ignacio Vazquez-Abrams
2001-07-16 11:15 ` Alan Cox
1 sibling, 1 reply; 5+ messages in thread
From: volodya @ 2001-07-16 2:38 UTC (permalink / raw)
To: Aaron Smith; +Cc: linux-kernel
On Sun, 15 Jul 2001, Aaron Smith wrote:
> I'm really not sure if this is pertinent to Linux Kernel, but I'm asking here anyway, 0 in advance if it's not.
>
> I have a file that is approximately 3.25GB and my system keeps bitching about "Value too large for defined data type." Is there any way to stop this? Since I'm sure you're wondering why I have a file that large, I'm using it via loopback as my MP3 partition, so I can remove it fairly quick if the need should ever arise.
As was explained to me (just today ;) ) this is an issue of 32bit versus
64bit file sizes (and not filesystem returning junk values as I thought),
so to get this working you need a version of fileutils and C library that
supports this.
I still don't know how to upgrade by compiling the source code, but
installation of latest (8.0) Slackware packages for C library and
fileutils fixed things for me. Be careful while upgrading your C library -
things might break.
Vladimir Dergachev
> --
> -Aaron
>
> Don't hate yourself in the morning, sleep till noon
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: "oversized" files
2001-07-16 2:38 ` volodya
@ 2001-07-16 2:51 ` Ignacio Vazquez-Abrams
0 siblings, 0 replies; 5+ messages in thread
From: Ignacio Vazquez-Abrams @ 2001-07-16 2:51 UTC (permalink / raw)
To: volodya; +Cc: Aaron Smith, linux-kernel
On Sun, 15 Jul 2001 volodya@mindspring.com wrote:
> On Sun, 15 Jul 2001, Aaron Smith wrote:
>
> > I'm really not sure if this is pertinent to Linux Kernel, but I'm asking here anyway, 0 in advance if it's not.
> >
> > I have a file that is approximately 3.25GB and my system keeps bitching about "Value too large for defined data type." Is there any way to stop this? Since I'm sure you're wondering why I have a file that large, I'm using it via loopback as my MP3 partition, so I can remove it fairly quick if the need should ever arise.
>
> As was explained to me (just today ;) ) this is an issue of 32bit versus
> 64bit file sizes (and not filesystem returning junk values as I thought),
> so to get this working you need a version of fileutils and C library that
> supports this.
>
> I still don't know how to upgrade by compiling the source code, but
> installation of latest (8.0) Slackware packages for C library and
> fileutils fixed things for me. Be careful while upgrading your C library -
> things might break.
>
> Vladimir Dergachev
> > --
> > -Aaron
Actually, in this case it will probably require losetup to be rebuilt.
And as always, the kernel will require LFS support as well.
--
Ignacio Vazquez-Abrams <ignacio@openservices.net>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "oversized" files
2001-07-16 2:20 "oversized" files Aaron Smith
2001-07-16 2:38 ` volodya
@ 2001-07-16 11:15 ` Alan Cox
2001-07-29 8:17 ` Rogier Wolff
1 sibling, 1 reply; 5+ messages in thread
From: Alan Cox @ 2001-07-16 11:15 UTC (permalink / raw)
To: Aaron Smith; +Cc: linux-kernel
> I have a file that is approximately 3.25GB and my system keeps bitching about "Value too large for defined data type." Is there any way to stop this? Since I'm sure you're wondering why I have a file that large, I'm using it via loopback as my MP3 partition, so I can remove it fairly quick if the need should ever arise.
You need a 2.4 kernel and you need to be using NFSv3 to handle files >2Gb
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "oversized" files
2001-07-16 11:15 ` Alan Cox
@ 2001-07-29 8:17 ` Rogier Wolff
0 siblings, 0 replies; 5+ messages in thread
From: Rogier Wolff @ 2001-07-29 8:17 UTC (permalink / raw)
To: Alan Cox; +Cc: Aaron Smith, linux-kernel
Alan Cox wrote:
> > I have a file that is approximately 3.25GB and my system keeps
> > bitching about "Value too large for defined data type." Is there
> > any way to stop this? Since I'm sure you're wondering why I have a
> > file that large, I'm using it via loopback as my MP3 partition, so I
> > can remove it fairly quick if the need should ever arise.
> You need a 2.4 kernel and you need to be using NFSv3 to handle files >2Gb
But the error message he posted is mostly from local apps. You need
a set of apps compiled with recent GLIBC to be able to handle files
bigger than 2G.
Roger.
--
** R.E.Wolff@BitWizard.nl ** http://www.BitWizard.nl/ ** +31-15-2137555 **
*-- BitWizard writes Linux device drivers for any device you may have! --*
* There are old pilots, and there are bold pilots.
* There are also old, bald pilots.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2001-07-29 8:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-16 2:20 "oversized" files Aaron Smith
2001-07-16 2:38 ` volodya
2001-07-16 2:51 ` Ignacio Vazquez-Abrams
2001-07-16 11:15 ` Alan Cox
2001-07-29 8:17 ` Rogier Wolff
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox