화일 크기 2G 제한? 2G 이상 생성할 수 있나요?

익명 사용자의 이미지

커널 2.4 이후부터는 화일 크기의 2G 제한이 없어진 걸로 알고있습니다.

그런데 실제로 write() 함수를 사용하여, 2G 이상 크기의 화일을 생성할
수 없더군요.

제가 뭔가 잘못한건지 아니면 다른 특별한 방법이 필요한 건지 알 수 가
없어서 이렇게 문을 두드립니다.

아래는 대강의 소스입니다.

( 컴파일 명령은
# c++ -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 test.cpp
로 했습니다.

물론 glibc의 버전에는 문제가 없습니다.
glibc v2.2 이상부터 2G를 지원한다고 들었습니다.
)

//--------------------------------------
// test.cpp
//--------------------------------------
...
int main(int argc, char* argv[])
{
int fd, nRes;
char cBuf = 'a';
unsigned long long int qwLongOffset = 1024*1024*1024*3; //
3G,typecasting은 지면 관계상 생략...
unsigned long long int qwIndex;

fd = open64("hugefile", O_CREAT | O_LARGEFILE | O_WRONLY);
...
nRes = _llseek(fd, qwLongOffset >> 32, qwLongOffset & 0xffffffff,
&offRes, SEEK_SET);
...
nRes = write(fd, &cBuf, 1);
... // 여기까지 하고 close한 후 ls -l 해보면 수치상으론 3G라고 나오
는 "hugefile"이 생성됩니다. 그러나...

nRes = lseek(fd, 0, SEEK_SET);

for( qwIndex=0; qwIndex < qwLongOffset; qwIndex++)
{
nRes = write(fd, &cBuf, 1);
...
if( qwIndex % 1024*1024*100 == 0)
cout << "+100M" << endl;
}

close(fd);

....
return 0;
}

익명 사용자의 이미지

http//linux.sarang.net/board/?p=read&table=tip&no=4793&page=&o[at]
=s&o[sc]=r&o[no]=4793

WindForceBalli wrote..
커널 2.4 이후부터는 화일 크기의 2G 제한이 없어진 걸로 알고있습니 다.

그런데 실제로 write() 함수를 사용하여, 2G 이상 크기의 화일을 생성 할
수 없더군요.

제가 뭔가 잘못한건지 아니면 다른 특별한 방법이 필요한 건지 알 수 가
없어서 이렇게 문을 두드립니다.


아래는 대강의 소스입니다.

( 컴파일 명령은
# c++ -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 test.cpp
로 했습니다.

물론 glibc의 버전에는 문제가 없습니다.
glibc v2.2 이상부터 2G를 지원한다고 들었습니다.
)

//--------------------------------------
// test.cpp
//--------------------------------------
...
int main(int argc, char* argv[])
{
int fd, nRes;
char cBuf = 'a';
unsigned long long int qwLongOffset = 1024*1024*1024*3; //
3G,typecasting은 지면 관계상 생략...
unsigned long long int qwIndex;

fd = open64("hugefile", O_CREAT | O_LARGEFILE | O_WRONLY);
...
nRes = _llseek(fd, qwLongOffset >> 32, qwLongOffset & 0xffffffff,
&offRes, SEEK_SET);
...
nRes = write(fd, &cBuf, 1);
... // 여기까지 하고 close한 후 ls -l 해보면 수치상으론 3G라고 나오
는 "hugefile"이 생성됩니다. 그러나...

nRes = lseek(fd, 0, SEEK_SET);

for( qwIndex=0; qwIndex < qwLongOffset; qwIndex++)
{
nRes = write(fd, &cBuf, 1);
...
if( qwIndex % 1024*1024*100 == 0)
cout << "+100M" << endl;
}

close(fd);

....
return 0;
}

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.