* Re: Filesize limit on SMBFS
@ 2001-11-22 18:53 Tyler BIRD
2001-11-22 19:23 ` Marcelo Borges Ribeiro
0 siblings, 1 reply; 22+ messages in thread
From: Tyler BIRD @ 2001-11-22 18:53 UTC (permalink / raw)
To: P.Titera, linux-kernel
Ext2 Filesystems I believe have the limit of 2 GB. Ext3 Extends that Limit to something??
Try making the ext3 filesystem partitions and sharing those.
I don't know limits on FAT32 or any other filesystem you can share
Tyler
>>> Petr Tite(ra <P.Titera@century.cz> 11/22/01 02:10AM >>>
Hello,
is maximum file size on SMBFS really 2GB? I cannot create file
bigger than that.
Petr Titera
P.Titera@century.cz
-
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] 22+ messages in thread* Re: Filesize limit on SMBFS
2001-11-22 18:53 Filesize limit on SMBFS Tyler BIRD
@ 2001-11-22 19:23 ` Marcelo Borges Ribeiro
2001-11-22 19:57 ` Andreas Dilger
2001-11-24 9:08 ` Albert D. Cahalan
0 siblings, 2 replies; 22+ messages in thread
From: Marcelo Borges Ribeiro @ 2001-11-22 19:23 UTC (permalink / raw)
To: Tyler BIRD; +Cc: linux-kernel
This limit is a kernel´s limit not a file system´s limit. Even vfat has a
limitation of 2GB under linux. I thought with kernel 2.4.x this will be
over.
----- Original Message -----
From: "Tyler BIRD" <birdty@uvsc.edu>
To: <P.Titera@century.cz>; <linux-kernel@vger.kernel.org>
Sent: Thursday, November 22, 2001 4:53 PM
Subject: Re: Filesize limit on SMBFS
> Ext2 Filesystems I believe have the limit of 2 GB. Ext3 Extends that
Limit to something??
> Try making the ext3 filesystem partitions and sharing those.
> I don't know limits on FAT32 or any other filesystem you can share
>
> Tyler
>
> >>> Petr Tite(ra <P.Titera@century.cz> 11/22/01 02:10AM >>>
> Hello,
>
> is maximum file size on SMBFS really 2GB? I cannot create file
> bigger than that.
>
> Petr Titera
> P.Titera@century.cz
>
>
> -
> 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/
>
> -
> 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] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-22 19:23 ` Marcelo Borges Ribeiro
@ 2001-11-22 19:57 ` Andreas Dilger
2001-11-23 2:35 ` Jeff Chua
2001-11-23 2:49 ` Anton Altaparmakov
2001-11-24 9:08 ` Albert D. Cahalan
1 sibling, 2 replies; 22+ messages in thread
From: Andreas Dilger @ 2001-11-22 19:57 UTC (permalink / raw)
To: Marcelo Borges Ribeiro; +Cc: Tyler BIRD, linux-kernel
On Nov 22, 2001 17:23 -0200, Marcelo Borges Ribeiro wrote:
> This limit is a kernel´s limit not a file system´s limit. Even vfat has a
> limitation of 2GB under linux. I thought with kernel 2.4.x this will be
> over.
Totally incorrect. 2.4 allows files larger than 2GB, and with a patch,
you can do this on 2.2 as well. If you are having problems with a 2GB
limit, then either your shell, libc, or tools is causing the problem.
VFAT does have a 2GB limit, AFAIK, but I could be wrong.
> ----- Original Message -----
> From: "Tyler BIRD" <birdty@uvsc.edu>
> > Ext2 Filesystems I believe have the limit of 2 GB. Ext3 Extends that
> > Limit to something??
No, the ext2 and ext3 limits are exactly the same, about 4TB right
now, but they would be larger with a bit of bug fixing (up to 16TB).
Note that the kernel has a limit of 2TB for a single device.
> > is maximum file size on SMBFS really 2GB? I cannot create file
> > bigger than that.
As for SMBFS, I don't know, but it can obviously not be larger than the
limit on the server.
Cheers, Andreas
--
Andreas Dilger
http://sourceforge.net/projects/ext2resize/
http://www-mddsp.enel.ucalgary.ca/People/adilger/
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-22 19:57 ` Andreas Dilger
@ 2001-11-23 2:35 ` Jeff Chua
2001-11-23 11:10 ` Marcelo Borges Ribeiro
2001-11-23 2:49 ` Anton Altaparmakov
1 sibling, 1 reply; 22+ messages in thread
From: Jeff Chua @ 2001-11-23 2:35 UTC (permalink / raw)
To: Andreas Dilger; +Cc: Marcelo Borges Ribeiro, Tyler BIRD, linux-kernel
On Thu, 22 Nov 2001, Andreas Dilger wrote:
> VFAT does have a 2GB limit, AFAIK, but I could be wrong.
Use "mkdosfs -F32" or use msdos fdisk,format to get >2GB.
I'm using 3GB for VFAT partition.
Jeff.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-23 2:35 ` Jeff Chua
@ 2001-11-23 11:10 ` Marcelo Borges Ribeiro
2001-11-23 12:00 ` Jeff Chua
2001-11-23 23:11 ` Mike Eldridge
0 siblings, 2 replies; 22+ messages in thread
From: Marcelo Borges Ribeiro @ 2001-11-23 11:10 UTC (permalink / raw)
To: Jeff Chua; +Cc: linux-kernel
I have fat32 partition, but the problem isn´t the size of partition it is
8GB. The problem is that if you want to
create a cpio backup of a linux system 3.5GB (I did that to reformat a ext2
to a reiserfs) to an available fat32 space, in my case the backup size is
allways 2GB and when I tried to extract back I saw "unexpected end of file".
So I thought it was that famous kernel limitation of 2GB under any kind of
partition, but i was informed that fat has this limitation too. So the
kernel may suport files bigger than 2GB (I really don´t know, I just know
that in my case with fat32 it did not and I saw this too with some oracle
databases that could not be used when they grow and reach 2GB, may be a
library problem too).
That´s all.
----- Original Message -----
From: "Jeff Chua" <jchua@fedex.com>
To: "Andreas Dilger" <adilger@turbolabs.com>
Cc: "Marcelo Borges Ribeiro" <marcelo@datacom-telematica.com.br>; "Tyler
BIRD" <birdty@uvsc.edu>; <linux-kernel@vger.kernel.org>
Sent: Friday, November 23, 2001 12:35 AM
Subject: Re: Filesize limit on SMBFS
> On Thu, 22 Nov 2001, Andreas Dilger wrote:
>
> > VFAT does have a 2GB limit, AFAIK, but I could be wrong.
>
> Use "mkdosfs -F32" or use msdos fdisk,format to get >2GB.
>
> I'm using 3GB for VFAT partition.
>
> Jeff.
>
>
> -
> 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] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-23 11:10 ` Marcelo Borges Ribeiro
@ 2001-11-23 12:00 ` Jeff Chua
2001-11-23 23:11 ` Mike Eldridge
1 sibling, 0 replies; 22+ messages in thread
From: Jeff Chua @ 2001-11-23 12:00 UTC (permalink / raw)
To: Marcelo Borges Ribeiro; +Cc: Linux Kernel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: TEXT/PLAIN; charset=X-UNKNOWN, Size: 1946 bytes --]
You may want to try using glibc 2.2.x, but then you may fail to compile
many other codes. I tried it once, and managed to get >2GB file, but had
to revert back to 2.1.3 because 2.2.x broke compiling other codes.
That was a few months back.
Thanks,
Jeff
[ jchua@fedex.com ]
On Fri, 23 Nov 2001, Marcelo Borges Ribeiro wrote:
> I have fat32 partition, but the problem isn´t the size of partition it is
> 8GB. The problem is that if you want to
> create a cpio backup of a linux system 3.5GB (I did that to reformat a ext2
> to a reiserfs) to an available fat32 space, in my case the backup size is
> allways 2GB and when I tried to extract back I saw "unexpected end of file".
> So I thought it was that famous kernel limitation of 2GB under any kind of
> partition, but i was informed that fat has this limitation too. So the
> kernel may suport files bigger than 2GB (I really don´t know, I just know
> that in my case with fat32 it did not and I saw this too with some oracle
> databases that could not be used when they grow and reach 2GB, may be a
> library problem too).
>
> That´s all.
> ----- Original Message -----
> From: "Jeff Chua" <jchua@fedex.com>
> To: "Andreas Dilger" <adilger@turbolabs.com>
> Cc: "Marcelo Borges Ribeiro" <marcelo@datacom-telematica.com.br>; "Tyler
> BIRD" <birdty@uvsc.edu>; <linux-kernel@vger.kernel.org>
> Sent: Friday, November 23, 2001 12:35 AM
> Subject: Re: Filesize limit on SMBFS
>
>
> > On Thu, 22 Nov 2001, Andreas Dilger wrote:
> >
> > > VFAT does have a 2GB limit, AFAIK, but I could be wrong.
> >
> > Use "mkdosfs -F32" or use msdos fdisk,format to get >2GB.
> >
> > I'm using 3GB for VFAT partition.
> >
> > Jeff.
> >
> >
> > -
> > 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] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-23 11:10 ` Marcelo Borges Ribeiro
2001-11-23 12:00 ` Jeff Chua
@ 2001-11-23 23:11 ` Mike Eldridge
2001-11-23 23:19 ` war
` (3 more replies)
1 sibling, 4 replies; 22+ messages in thread
From: Mike Eldridge @ 2001-11-23 23:11 UTC (permalink / raw)
To: Marcelo Borges Ribeiro; +Cc: linux-kernel
On Fri, Nov 23, 2001 at 09:10:24AM -0200, Marcelo Borges Ribeiro wrote:
> I have fat32 partition, but the problem isn´t the size of partition it is
> 8GB. The problem is that if you want to
> create a cpio backup of a linux system 3.5GB (I did that to reformat a ext2
> to a reiserfs) to an available fat32 space, in my case the backup size is
> allways 2GB and when I tried to extract back I saw "unexpected end of file".
> So I thought it was that famous kernel limitation of 2GB under any kind of
> partition, but i was informed that fat has this limitation too. So the
> kernel may suport files bigger than 2GB (I really don´t know, I just know
> that in my case with fat32 it did not and I saw this too with some oracle
> databases that could not be used when they grow and reach 2GB, may be a
> library problem too).
ext2 has a 2GB filesize limitation.
-mike
--------------------------------------------------------------------------
/~\ The ASCII all that is gold does not glitter
\ / Ribbon Campaign not all those who wander are lost
X Against HTML -- jrr tolkien
/ \ Email!
radiusd+mysql: http://www.cafes.net/~diz/kiss-radiusd
--------------------------------------------------------------------------
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: Filesize limit on SMBFS
2001-11-23 23:11 ` Mike Eldridge
@ 2001-11-23 23:19 ` war
2001-11-23 23:19 ` Andreas Dilger
` (2 subsequent siblings)
3 siblings, 0 replies; 22+ messages in thread
From: war @ 2001-11-23 23:19 UTC (permalink / raw)
To: Mike Eldridge; +Cc: Marcelo Borges Ribeiro, linux-kernel
To put it simply, ext2 does not have a 2GB filesize limitation anymore, (in newer
distributions).
Mike Eldridge wrote:
> On Fri, Nov 23, 2001 at 09:10:24AM -0200, Marcelo Borges Ribeiro wrote:
> > I have fat32 partition, but the problem isn´t the size of partition it is
> > 8GB. The problem is that if you want to
> > create a cpio backup of a linux system 3.5GB (I did that to reformat a ext2
> > to a reiserfs) to an available fat32 space, in my case the backup size is
> > allways 2GB and when I tried to extract back I saw "unexpected end of file".
> > So I thought it was that famous kernel limitation of 2GB under any kind of
> > partition, but i was informed that fat has this limitation too. So the
> > kernel may suport files bigger than 2GB (I really don´t know, I just know
> > that in my case with fat32 it did not and I saw this too with some oracle
> > databases that could not be used when they grow and reach 2GB, may be a
> > library problem too).
>
> ext2 has a 2GB filesize limitation.
>
> -mike
>
> --------------------------------------------------------------------------
> /~\ The ASCII all that is gold does not glitter
> \ / Ribbon Campaign not all those who wander are lost
> X Against HTML -- jrr tolkien
> / \ Email!
>
> radiusd+mysql: http://www.cafes.net/~diz/kiss-radiusd
> --------------------------------------------------------------------------
> -
> 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] 22+ messages in thread* Re: Filesize limit on SMBFS
2001-11-23 23:11 ` Mike Eldridge
2001-11-23 23:19 ` war
@ 2001-11-23 23:19 ` Andreas Dilger
2001-11-23 23:45 ` Mike Eldridge
2001-11-24 1:16 ` Matti Aarnio
2001-11-26 18:27 ` Alan Cox
3 siblings, 1 reply; 22+ messages in thread
From: Andreas Dilger @ 2001-11-23 23:19 UTC (permalink / raw)
To: Mike Eldridge; +Cc: Marcelo Borges Ribeiro, linux-kernel
On Nov 23, 2001 17:11 -0600, Mike Eldridge wrote:
> ext2 has a 2GB filesize limitation.
Where do you get that idea from. I have created files up to 4TB (sparse
ones, of course) without problems. After that you start hitting bugs in
the VFS and ext2 _code_, but you should be able to have up to 16TB files
on a 4kB block ext2 fs.
Please stop spreading misinformation. Maybe there is a 2GB limitation
in libc, or your tools, or in 2.2 ext2 _implementation_ (which is
fixed if you apply the LFS patch for ext2), but no such limit in the
design of ext2 itself.
Cheers, Andreas
--
Andreas Dilger
http://sourceforge.net/projects/ext2resize/
http://www-mddsp.enel.ucalgary.ca/People/adilger/
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-23 23:19 ` Andreas Dilger
@ 2001-11-23 23:45 ` Mike Eldridge
0 siblings, 0 replies; 22+ messages in thread
From: Mike Eldridge @ 2001-11-23 23:45 UTC (permalink / raw)
To: Andreas Dilger; +Cc: linux-kernel
On Fri, Nov 23, 2001 at 04:19:47PM -0700, Andreas Dilger wrote:
> On Nov 23, 2001 17:11 -0600, Mike Eldridge wrote:
> > ext2 has a 2GB filesize limitation.
>
> Where do you get that idea from. I have created files up to 4TB (sparse
> ones, of course) without problems. After that you start hitting bugs in
> the VFS and ext2 _code_, but you should be able to have up to 16TB files
> on a 4kB block ext2 fs.
>
> Please stop spreading misinformation. Maybe there is a 2GB limitation
> in libc, or your tools, or in 2.2 ext2 _implementation_ (which is
> fixed if you apply the LFS patch for ext2), but no such limit in the
> design of ext2 itself.
oooh. i apologize. i remember reading in several different places that
little tidbit i rattled off.
i stand (majorly) corrected.
-mike
--------------------------------------------------------------------------
/~\ The ASCII all that is gold does not glitter
\ / Ribbon Campaign not all those who wander are lost
X Against HTML -- jrr tolkien
/ \ Email!
radiusd+mysql: http://www.cafes.net/~diz/kiss-radiusd
--------------------------------------------------------------------------
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-23 23:11 ` Mike Eldridge
2001-11-23 23:19 ` war
2001-11-23 23:19 ` Andreas Dilger
@ 2001-11-24 1:16 ` Matti Aarnio
2001-11-24 20:43 ` Eric W. Biederman
2001-11-26 18:27 ` Alan Cox
3 siblings, 1 reply; 22+ messages in thread
From: Matti Aarnio @ 2001-11-24 1:16 UTC (permalink / raw)
To: Mike Eldridge; +Cc: Marcelo Borges Ribeiro, linux-kernel
On Fri, Nov 23, 2001 at 05:11:57PM -0600, Mike Eldridge wrote:
> ext2 has a 2GB filesize limitation.
Mike has already realized this, but still...
I have used ext2 at Linux 1.2 with file sizes exceeding 2GB.
The requirement was 64 bit machine in those days, I had Alpha.
(Yes, that was VERY LONG AGO!)
It is very late (2.3/2.4) development that 32-bit machines can
do 2TB files. Sparse files can indeed be larger up to 4G times
filesystem block size, but ext2 is limited on one physical
partition, and those are still limited on 1 or 2 terabyte range.
(2G * 512 or 4G * 512.) (long story why that limit is still
in there, mainly because nobody has had need to rework it.)
Limitations on EXT2 (indeed of all "indirect block indexing"
schemes of SysV FS style) are a bit complicated to calculate.
B = block size in bytes (512 to 4096 bytes)
addressable_blocks = (B/4)**3 + (B/4)**2 + ...
max_offset = B * addressable_blocks
So, say: max_offset = B**4 / 64 + epsilon
That gives you magnitude. Say with 4k blocks (long story why that
is presently maximum block-size) you can have up to 4 TB file size.
(plus a bit over, see the math.)
The 2.5 series may change the underlying block-device layer so that
it can handle larger block devices than 2TB - the 64 bit machines can
handle them, of course, but 32-bit i386 is a bit limited...
> -mike
> radiusd+mysql: http://www.cafes.net/~diz/kiss-radiusd
/Matti Aarnio
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-24 1:16 ` Matti Aarnio
@ 2001-11-24 20:43 ` Eric W. Biederman
0 siblings, 0 replies; 22+ messages in thread
From: Eric W. Biederman @ 2001-11-24 20:43 UTC (permalink / raw)
To: Matti Aarnio; +Cc: Mike Eldridge, Marcelo Borges Ribeiro, linux-kernel
Matti Aarnio <matti.aarnio@zmailer.org> writes:
> The 2.5 series may change the underlying block-device layer so that
> it can handle larger block devices than 2TB - the 64 bit machines can
> handle them, of course, but 32-bit i386 is a bit limited...
Definitely. Right now the page cache on x86 has a limit (per file) of
2^32 * PAGE_SIZE == 2^32 * 2^12 = 2^44 = 16TB. And I doubt that will
change. x86 will be going 64bit in the next 2-3 years, at which point
I don't see it paying to push 32bit code into the larger data sizes.
Especially when we our limit is still 2 orders of magnitude larger
then the largest disk manufactured today.
Now the file size limit on x86 can be increased a little by increasing
the internal PAGE_SIZE for the page cache but that will only give us a
bit or two which really isn't significant.
Eric
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-23 23:11 ` Mike Eldridge
` (2 preceding siblings ...)
2001-11-24 1:16 ` Matti Aarnio
@ 2001-11-26 18:27 ` Alan Cox
3 siblings, 0 replies; 22+ messages in thread
From: Alan Cox @ 2001-11-26 18:27 UTC (permalink / raw)
To: Mike Eldridge; +Cc: Marcelo Borges Ribeiro, linux-kernel
> ext2 has a 2GB filesize limitation.
No it doesn't.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-22 19:57 ` Andreas Dilger
2001-11-23 2:35 ` Jeff Chua
@ 2001-11-23 2:49 ` Anton Altaparmakov
2001-11-23 3:27 ` Jeff Chua
1 sibling, 1 reply; 22+ messages in thread
From: Anton Altaparmakov @ 2001-11-23 2:49 UTC (permalink / raw)
To: Jeff Chua
Cc: Andreas Dilger, Marcelo Borges Ribeiro, Tyler BIRD, linux-kernel
At 02:35 23/11/01, Jeff Chua wrote:
>On Thu, 22 Nov 2001, Andreas Dilger wrote:
>
> > VFAT does have a 2GB limit, AFAIK, but I could be wrong.
>
>Use "mkdosfs -F32" or use msdos fdisk,format to get >2GB.
>
>I'm using 3GB for VFAT partition.
You mean you have 1) a single file with size 3GiB on a large VFAT partition
or 2) the VFAT partition is 3GiB in itself?
1) is what we are talking about being limited to 2GiB.
2) Should indeed work fine under Linux and I don't think anyone is saying
that this doesn't work.
Anton
--
"I've not lost my mind. It's backed up on tape somewhere." - Unknown
--
Anton Altaparmakov <aia21 at cam.ac.uk> (replace at with @)
Linux NTFS Maintainer / WWW: http://linux-ntfs.sf.net/
ICQ: 8561279 / WWW: http://www-stu.christs.cam.ac.uk/~aia21/
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-23 2:49 ` Anton Altaparmakov
@ 2001-11-23 3:27 ` Jeff Chua
2001-11-23 7:09 ` OGAWA Hirofumi
0 siblings, 1 reply; 22+ messages in thread
From: Jeff Chua @ 2001-11-23 3:27 UTC (permalink / raw)
To: Anton Altaparmakov
Cc: Jeff Chua, Andreas Dilger, Marcelo Borges Ribeiro, Tyler BIRD,
linux-kernel
On Fri, 23 Nov 2001, Anton Altaparmakov wrote:
> You mean you have 1) a single file with size 3GiB on a large VFAT partition
> or 2) the VFAT partition is 3GiB in itself?
Sorry, 3GB partition. But maximum size per file is only 2GB.
Jeff
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-23 3:27 ` Jeff Chua
@ 2001-11-23 7:09 ` OGAWA Hirofumi
0 siblings, 0 replies; 22+ messages in thread
From: OGAWA Hirofumi @ 2001-11-23 7:09 UTC (permalink / raw)
To: Jeff Chua
Cc: Anton Altaparmakov, Andreas Dilger, Marcelo Borges Ribeiro,
Tyler BIRD, linux-kernel
Jeff Chua <jchua@fedex.com> writes:
> On Fri, 23 Nov 2001, Anton Altaparmakov wrote:
>
> > You mean you have 1) a single file with size 3GiB on a large VFAT partition
> > or 2) the VFAT partition is 3GiB in itself?
>
> Sorry, 3GB partition. But maximum size per file is only 2GB.
>
FYI,
In the ordinary way, FAT16 is 2GiB per file, and 2GiB per partition.
FAT32 is 4GiB per file. (if sector size is 512B)
However, currently vfat of linux is 2GiB per file.
--
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-22 19:23 ` Marcelo Borges Ribeiro
2001-11-22 19:57 ` Andreas Dilger
@ 2001-11-24 9:08 ` Albert D. Cahalan
1 sibling, 0 replies; 22+ messages in thread
From: Albert D. Cahalan @ 2001-11-24 9:08 UTC (permalink / raw)
To: Marcelo Borges Ribeiro; +Cc: Tyler BIRD, linux-kernel, matti.aarnio
The ext2 and ext3 limits are the same. The kernel does not have
a 2 GB limit, though I'm sure most users believe it does.
Look at this graph:
http://www.cs.uml.edu/~acahalan/linux/ext2.gif
Pay attention to the note on the lower right.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Filesize limit on SMBFS
@ 2001-11-22 9:10 Petr Tite(ra
2001-11-22 12:10 ` Urban Widmark
0 siblings, 1 reply; 22+ messages in thread
From: Petr Tite(ra @ 2001-11-22 9:10 UTC (permalink / raw)
To: linux-kernel
Hello,
is maximum file size on SMBFS really 2GB? I cannot create file
bigger than that.
Petr Titera
P.Titera@century.cz
^ permalink raw reply [flat|nested] 22+ messages in thread* Re: Filesize limit on SMBFS
2001-11-22 9:10 Petr Tite(ra
@ 2001-11-22 12:10 ` Urban Widmark
2001-11-22 13:01 ` Petr Titera
2001-11-22 13:21 ` Anton Altaparmakov
0 siblings, 2 replies; 22+ messages in thread
From: Urban Widmark @ 2001-11-22 12:10 UTC (permalink / raw)
To: Petr Tite(ra; +Cc: linux-kernel
On Thu, 22 Nov 2001, Petr Tite(ra wrote:
> is maximum file size on SMBFS really 2GB? I cannot create file
> bigger than that.
Yes.
I have patches if you want to be my victim^Wtester.
You must be using an NT/2k/XP machine as server, win9x has a 4G limit
(vfat limit?).
Let me know which 2.4 kernel you are using. And if you don't already run a
kernel you compiled yourself, please do that first as you must recompile
to test the patches anyway (smbfs as a module is recommended, then you
should be able to only rebuild the modules part).
/Urban
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-22 12:10 ` Urban Widmark
@ 2001-11-22 13:01 ` Petr Titera
2001-11-22 20:58 ` Urban Widmark
2001-11-22 13:21 ` Anton Altaparmakov
1 sibling, 1 reply; 22+ messages in thread
From: Petr Titera @ 2001-11-22 13:01 UTC (permalink / raw)
To: Urban Widmark; +Cc: linux-kernel
Urban Widmark wrote:
> On Thu, 22 Nov 2001, Petr Tite(ra wrote:
>
>
>> is maximum file size on SMBFS really 2GB? I cannot create file
>>bigger than that.
>>
>
> Yes.
>
> I have patches if you want to be my victim^Wtester.
I'd like to.
>
> You must be using an NT/2k/XP machine as server, win9x has a 4G limit
> (vfat limit?).
It's NT.
>
> Let me know which 2.4 kernel you are using. And if you don't already run a
> kernel you compiled yourself, please do that first as you must recompile
> to test the patches anyway (smbfs as a module is recommended, then you
> should be able to only rebuild the modules part).
I use 2.4.15-pre7 (compiled myself :)
>
> /Urban
>
Petr
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: Filesize limit on SMBFS
2001-11-22 12:10 ` Urban Widmark
2001-11-22 13:01 ` Petr Titera
@ 2001-11-22 13:21 ` Anton Altaparmakov
1 sibling, 0 replies; 22+ messages in thread
From: Anton Altaparmakov @ 2001-11-22 13:21 UTC (permalink / raw)
To: Urban Widmark; +Cc: linux-kernel
Urban Widmark wrote:
>On Thu, 22 Nov 2001, Petr Tite(ra wrote:
>>is maximum file size on SMBFS really 2GB? I cannot create file bigger
>>than that.
>Yes.
>I have patches if you want to be my victim^Wtester.
I am in a masochistic mood today so can I be your victim, too? (-;
Seriously, I can test with all of w9x/NT/2k/XP as servers and I need the
2GB limit aleviated, too, so please email me the [gb]zipped patch (or a URL).
>>Let me know which 2.4 kernel you are using.
At the moment I am using 2.4.15-pre4 + NTFS TNG but I am happy to use any
2.4.x kernel. make bzImage on my athlon takes only 3 minutes...
Cheers,
Anton
--
"I've not lost my mind. It's backed up on tape somewhere." - Unknown
--
Anton Altaparmakov <aia21 at cam.ac.uk> (replace at with @)
Linux NTFS Maintainer / WWW: http://linux-ntfs.sf.net/
ICQ: 8561279 / WWW: http://www-stu.christs.cam.ac.uk/~aia21/
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2001-11-26 18:22 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-11-22 18:53 Filesize limit on SMBFS Tyler BIRD
2001-11-22 19:23 ` Marcelo Borges Ribeiro
2001-11-22 19:57 ` Andreas Dilger
2001-11-23 2:35 ` Jeff Chua
2001-11-23 11:10 ` Marcelo Borges Ribeiro
2001-11-23 12:00 ` Jeff Chua
2001-11-23 23:11 ` Mike Eldridge
2001-11-23 23:19 ` war
2001-11-23 23:19 ` Andreas Dilger
2001-11-23 23:45 ` Mike Eldridge
2001-11-24 1:16 ` Matti Aarnio
2001-11-24 20:43 ` Eric W. Biederman
2001-11-26 18:27 ` Alan Cox
2001-11-23 2:49 ` Anton Altaparmakov
2001-11-23 3:27 ` Jeff Chua
2001-11-23 7:09 ` OGAWA Hirofumi
2001-11-24 9:08 ` Albert D. Cahalan
-- strict thread matches above, loose matches on Subject: below --
2001-11-22 9:10 Petr Tite(ra
2001-11-22 12:10 ` Urban Widmark
2001-11-22 13:01 ` Petr Titera
2001-11-22 20:58 ` Urban Widmark
2001-11-22 13:21 ` Anton Altaparmakov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox