Sponsored Content
Full Discussion: File Size Limit
Top Forums UNIX for Advanced & Expert Users File Size Limit Post 302081424 by blowtorch on Tuesday 25th of July 2006 07:59:57 AM
Old 07-25-2006
Is the filesystem largefile enabled? Check by running the command:
Code:
mkfs -m <raw-device-name>

This will display the options that were used to create the filesystem. If largefiles is not present, you cannot create files larger than 2GB on that filesystem.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Limit size of the file

How do I limit size of a file to 1 MB or something like that under Linux? (4 Replies)
Discussion started by: _hp_
4 Replies

2. Solaris

File size limit

I want to have a permanent file created - and limit the size that this file can grow.. I want a circular file.. ie max size of file is 10 mb.. and if any new data written to file the oldest data removed.. How can I do this? I am on solaris 9 x86 (3 Replies)
Discussion started by: frustrated1
3 Replies

3. AIX

file size limit

Can anybody help me? How to increase file size limit in aix 5.2? I have already specified in /etc/security/limits file : default: fsize = -1 core = 2097151 cpu = -1 data = -1 rss = -1 stack = -1 nofiles = 2000 (2 Replies)
Discussion started by: vjm
2 Replies

4. Programming

File size limit exceeded

When i run my C program which dynamically creates the output file, the program stops after sometime and gives the error "File size limit exceeded" even though my working directory has space.Can anyone plz help me out. (13 Replies)
Discussion started by: drshah
13 Replies

5. UNIX for Dummies Questions & Answers

Size limit for FTPing file

Is there any size limit for FTPing file from one unix system to another? (6 Replies)
Discussion started by: swarup2008
6 Replies

6. Shell Programming and Scripting

awk file size limit

My code is awk '{ out=split(FILENAME,a,"/") sub(/\./,"_",a) sub(/\-/,"_",a) NEWSTRING="main_"a"_"a"(" # The word we want to insert gsub(/main\(/,NEWSTRING); # the word to be replaced print "Main becomes ",NEWSTRING")","in file ",FILENAME >> "/home/ds2/test/NEW2.txt" ... (4 Replies)
Discussion started by: senior_ahmed
4 Replies

7. UNIX for Advanced & Expert Users

file size limit?

hi, how can I find out what the limit of a file size is on unix? thanks (6 Replies)
Discussion started by: JamesByars
6 Replies

8. Shell Programming and Scripting

sftp file size limit

Hi, Can some one please tell me the file size limit (if any) while using sftp I am trying to transfer a file ( size is almost 350 MB ) but it fails as shown below. sftp> put file1 ./file1 Uploading file1 to /dir1/./file1 file1 25% 100MB 10.2MB/s 00:28 ETA Couldn't write to remote... (6 Replies)
Discussion started by: vikash_k
6 Replies

9. Shell Programming and Scripting

Limit on a File size.

Hi All, I want to store 32KB of file in Oracle DB into CLOB field. I am not able to insert more than 32KB of file into CLOB. So i want to put a limit on the file size. I am using k shell. My file size will dynamically increase its size, i want to check the file size if it is more than 32KB... (1 Reply)
Discussion started by: rajeshorpu
1 Replies

10. HP-UX

2GB file size limit

Greetings, I'm attempting to dump a filesystem from a RHEL5 Linux server to a VXFS filesystem on an HP-UX server. The VXFS filesystem is large file enabled and I've confirmed that I can copy/scp a file >2GB to the filesystem. # fsadm -F vxfs /os_dumps largefiles # mkfs -F vxfs -m... (12 Replies)
Discussion started by: bkimura
12 Replies
HTML::FormFu::Constraint::File::Size(3pm)		User Contributed Perl Documentation		 HTML::FormFu::Constraint::File::Size(3pm)

NAME
HTML::FormFu::Constraint::File::Size - File Size Constraint DESCRIPTION
Ensure that an uploaded file meets minimum or maximum size constraints. METHODS
minimum min Optional. The minimum file size in bytes. "min" is an alias for "minimum". maximum max Optional. The maximum file size in bytes. "max" is an alias for "maximum". minimum_kilobyte min_kilobyte Shortcut for "$constraint->minimum( $value * 1024 )". "min_kilobyte" is an alias for "minimum_kilobyte". maximum_kilobyte max_kilobyte Shortcut for "$constraint->maximum( $value * 1024 )". "max_kilobyte" is an alias for "maximum_kilobyte". minimum_megabyte min_megabyte Shortcut for "$constraint->minimum( $value * 1_048_576 )". "min_megabyte" is an alias for "minimum_megabyte". maximum_megabyte max_megabyte Shortcut for "$constraint->maximum( $value * 1_048_576 )". "max_megabyte" is an alias for "maximum_megabyte". SEE ALSO
Is a sub-class of, and inherits methods from HTML::FormFu::Constraint HTML::FormFu AUTHOR
Carl Franks, "cfranks@cpan.org" LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-23 HTML::FormFu::Constraint::File::Size(3pm)
All times are GMT -4. The time now is 02:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy